diff --git a/go/chao-sdk-core/.github/.codecov.yml b/go/chao-sdk-core/.github/.codecov.yml
new file mode 100644
index 0000000..c60527d
--- /dev/null
+++ b/go/chao-sdk-core/.github/.codecov.yml
@@ -0,0 +1,23 @@
+# Copyright Š 2023 OpenIM SDK. All rights reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+coverage:
+ status:
+ project:
+ default: false # disable the default status that measures entire project
+ pkg: # declare a new status context "pkg"
+ paths:
+ - pkg/* # only include coverage in "pkg/" folder
+ informational: true # Always pass check
+ patch: off # disable the commit only checks
\ No newline at end of file
diff --git a/go/chao-sdk-core/.github/labels.yml b/go/chao-sdk-core/.github/labels.yml
new file mode 100644
index 0000000..27e8c38
--- /dev/null
+++ b/go/chao-sdk-core/.github/labels.yml
@@ -0,0 +1,43 @@
+# Copyright Š 2023 OpenIM SDK. All rights reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+# Refer to Kubernetes for size/* Settings
+# https://github.com/Kubernetes/Kubernetes
+XS:
+ name: size/XS
+ lines: 0
+ color: 3CBF00
+S:
+ name: size/S
+ lines: 10
+ color: 5D9801
+M:
+ name: size/M
+ lines: 30
+ color: 7F7203
+L:
+ name: size/L
+ lines: 100
+ color: A14C05
+XL:
+ name: size/XL
+ lines: 500
+ color: C32607
+XXL:
+ name: size/XXL
+ lines: 1000
+ color: E50009
+ comment: |
+ # Whoa! Easy there, Partner!
+ This PR is too big. Please break it up into smaller PRs.
\ No newline at end of file
diff --git a/go/chao-sdk-core/.github/workflows/auto-invite.yml b/go/chao-sdk-core/.github/workflows/auto-invite.yml
new file mode 100644
index 0000000..f37271f
--- /dev/null
+++ b/go/chao-sdk-core/.github/workflows/auto-invite.yml
@@ -0,0 +1,53 @@
+# Copyright Š 2023 OpenIM SDK. All rights reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+name: Invite users to join our group
+on:
+ issue_comment:
+ types:
+ - created
+jobs:
+ issue_comment:
+ name: Invite users to join our group
+ if: ${{ github.event.comment.body == '/invite' || github.event.comment.body == '/close' || github.event.comment.body == '/comment' }}
+ runs-on: ubuntu-latest
+ permissions:
+ issues: write
+ steps:
+
+ - name: Invite user to join our group
+ uses: peter-evans/create-or-update-comment@v1
+ with:
+ token: ${{ secrets.BOT_GITHUB_TOKEN }}
+ issue-number: ${{ github.event.issue.number }}
+ body: |
+ We value close connections with our users, developers, and contributors here at Open-IM-Server. With a large community and maintainer team, we're always here to help and support you. Whether you're looking to join our community or have any questions or suggestions, we welcome you to get in touch with us.
+
+ Our most recommended /root/workspaces/openim/Open-IM-Server/docs copyway to get in touch is through [Slack](https://join.slack.com/t/openimsdk/shared_invite/zt-1tmoj26uf-_FDy3dowVHBiGvLk9e5Xkg). Even if you're in China, Slack is usually not blocked by firewalls, making it an easy way to connect with us. Our Slack community is the ideal place to discuss and share ideas and suggestions with other users and developers of Open-IM-Server. You can ask technical questions, seek help, or share your experiences with other users of Open-IM-Server.
+
+ In addition to Slack, we also offer the following ways to get in touch:
+
+ +
We also have Slack channels for you to communicate and discuss. To join, visit https://slack.com/ and join our [đ Open-IM-Server slack](https://join.slack.com/t/openimsdk/shared_invite/zt-1tmoj26uf-_FDy3dowVHBiGvLk9e5Xkg) team channel.
+ +
Get in touch with us on [Gmail](https://mail.google.com/mail/u/0/?fs=1&tf=cm&to=winxu81@gmail.com). If you have any questions or issues that need resolving, or any suggestions and feedback for our open source projects, please feel free to contact us via email.
+ +
Read our [blog](https://doc.rentsoft.cn/). Our blog is a great place to stay up-to-date with Open-IM-Server projects and trends. On the blog, we share our latest developments, tech trends, and other interesting information.
+ +
Add [Wechat](https://github.com/openimsdk/OpenIM-Docs/blob/main/docs/images/WechatIMG20.jpeg) and indicate that you are a user or developer of Open-IM-Server. We will process your request as soon as possible.
+
+ - name: Close Issue
+ uses: peter-evans/close-issue@v3
+ with:
+ token: ${{ secrets.BOT_GITHUB_TOKEN }}
+ issue-number: ${{ github.event.issue.number }}
+ comment: đ¤ Auto-closing issue, if you still need help please reopen the issue or ask for help in the community above
+ labels: |
+ triage/accepted
\ No newline at end of file
diff --git a/go/chao-sdk-core/.github/workflows/check-coverage.yml b/go/chao-sdk-core/.github/workflows/check-coverage.yml
new file mode 100644
index 0000000..d42469e
--- /dev/null
+++ b/go/chao-sdk-core/.github/workflows/check-coverage.yml
@@ -0,0 +1,60 @@
+# Copyright Š 2023 OpenIM SDK. All rights reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+# name: Check-Coverage
+
+
+# on:
+# workflow_dispatch:
+# push:
+# branches: [ "main" ]
+# paths-ignore:
+# - "docs/**"
+# - "**/*.md"
+# - "**/*.yaml"
+# - "CONTRIBUTORS"
+# - "CHANGELOG/**"
+# pull_request:
+# branches: [ "*" ]
+# paths-ignore:
+# - "docs/**"
+# - "**/*.md"
+# - "**/*.yaml"
+# - "CONTRIBUTORS"
+# - "CHANGELOG/**"
+# env:
+# # Common versions
+# GO_VERSION: "1.20"
+
+# jobs:
+# coverage:
+# runs-on: ubuntu-20.04
+# steps:
+# - name: Checkout
+# uses: actions/checkout@v3
+
+# - name: Setup Golang with cache
+# uses: magnetikonline/action-golang-cache@v3
+# with:
+# go-version: ${{ env.GO_VERSION }}
+# token: ${{ secrets.BOT_GITHUB_TOKEN }}
+
+# - name: Install Dependencies
+# run: sudo apt update && sudo apt install -y libgpgme-dev libbtrfs-dev libdevmapper-dev
+
+# - name: Run Cover
+# run: make cover
+
+# - name: Upload Coverage to Codecov
+# uses: codecov/codecov-action@v3
diff --git a/go/chao-sdk-core/.github/workflows/codeql-analysis.yml b/go/chao-sdk-core/.github/workflows/codeql-analysis.yml
new file mode 100644
index 0000000..6233ffc
--- /dev/null
+++ b/go/chao-sdk-core/.github/workflows/codeql-analysis.yml
@@ -0,0 +1,76 @@
+# Copyright Š 2023 OpenIM open source community. All rights reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+
+name: "Code Scanning - Action"
+
+on:
+ push:
+ branches: [main]
+ pull_request:
+ branches: [main]
+ schedule:
+ # ââââââââââââââ minute (0 - 59)
+ # â ââââââââââââââ hour (0 - 23)
+ # â â ââââââââââââââ day of the month (1 - 31)
+ # â â â ââââââââââââââ month (1 - 12 or JAN-DEC)
+ # â â â â ââââââââââââââ day of the week (0 - 6 or SUN-SAT)
+ # â â â â â
+ # â â â â â
+ # â â â â â
+ # * * * * *
+ - cron: '30 1 * * 0'
+
+jobs:
+ CodeQL-Build:
+ # CodeQL runs on ubuntu-latest, windows-latest, and macos-latest
+ runs-on: ubuntu-latest
+
+ permissions:
+ # required for all workflows
+ security-events: write
+
+ # only required for workflows in private repositories
+ actions: read
+ contents: read
+
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v3
+
+ # Initializes the CodeQL tools for scanning.
+ - name: Initialize CodeQL
+ uses: github/codeql-action/init@v2
+ # Override language selection by uncommenting this and choosing your languages
+ # with:
+ # languages: go, javascript, csharp, python, cpp, java, ruby
+
+ # Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java).
+ # If this step fails, then you should remove it and run the build manually (see below).
+ - name: Autobuild
+ uses: github/codeql-action/autobuild@v2
+
+ # âšī¸ Command-line programs to run using the OS shell.
+ # đ See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
+
+ # âī¸ If the Autobuild fails above, remove it and uncomment the following
+ # three lines and modify them (or add more) to build your code if your
+ # project uses a compiled language
+
+ #- run: |
+ # make bootstrap
+ # make release
+
+ - name: Perform CodeQL Analysis
+ uses: github/codeql-action/analyze@v2
\ No newline at end of file
diff --git a/go/chao-sdk-core/.github/workflows/e2e-test.yml b/go/chao-sdk-core/.github/workflows/e2e-test.yml
new file mode 100644
index 0000000..a5a3275
--- /dev/null
+++ b/go/chao-sdk-core/.github/workflows/e2e-test.yml
@@ -0,0 +1,15 @@
+# Copyright Š 2023 OpenIM SDK. All rights reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+#
\ No newline at end of file
diff --git a/go/chao-sdk-core/.github/workflows/gosec.yml b/go/chao-sdk-core/.github/workflows/gosec.yml
new file mode 100644
index 0000000..e76b6ff
--- /dev/null
+++ b/go/chao-sdk-core/.github/workflows/gosec.yml
@@ -0,0 +1,44 @@
+# Copyright Š 2023 OpenIM SDK. All rights reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+# name: Run gosec
+
+# # gosec is a source code security audit tool for the Go language. It performs a static
+# # analysis of the Go code, looking for potential security problems. The main functions of gosec are:
+# # 1. Find common security vulnerabilities, such as SQL injection, command injection, and cross-site scripting (XSS).
+# # 2. Audit codes according to common security standards and find non-standard codes.
+# # 3. Assist the Go language engineer to write safe and reliable code.
+
+# on:
+# push:
+# branches: "*"
+# pull_request:
+# branches: "*"
+# paths-ignore:
+# - '*.md'
+# - '*.yml'
+# - '.github'
+
+# jobs:
+# golang-security-action:
+# runs-on: ubuntu-latest
+# env:
+# GO111MODULE: on
+# steps:
+# - name: Check out code
+# uses: actions/checkout@v3
+# - name: Run Gosec Security Scanner
+# uses: securego/gosec@master
+# with:
+# args: ./...
\ No newline at end of file
diff --git a/go/chao-sdk-core/.github/workflows/issue-robot.yml b/go/chao-sdk-core/.github/workflows/issue-robot.yml
new file mode 100644
index 0000000..c4b5914
--- /dev/null
+++ b/go/chao-sdk-core/.github/workflows/issue-robot.yml
@@ -0,0 +1,31 @@
+# Copyright Š 2023 OpenIM SDK. All rights reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+name: 'issue translator'
+on:
+ issue_comment:
+ types: [created]
+ issues:
+ types: [opened]
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: usthe/issues-translate-action@v2.7
+ with:
+ # it is not necessary to decide whether you need to modify the issue header content
+ IS_MODIFY_TITLE: true
+ BOT_GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN }}
+ # Required, input your bot github token
\ No newline at end of file
diff --git a/go/chao-sdk-core/.github/workflows/link-pr.yml b/go/chao-sdk-core/.github/workflows/link-pr.yml
new file mode 100644
index 0000000..51eddf1
--- /dev/null
+++ b/go/chao-sdk-core/.github/workflows/link-pr.yml
@@ -0,0 +1,61 @@
+# Copyright Š 2023 OpenIM SDK. All rights reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+# name: Github Rebot for Link check error
+
+# on:
+# pull_request:
+# branches: [ main ]
+# paths:
+# - '**.md'
+# - 'docs/**'
+# - '.lycheeignore'
+# push:
+# branches: [ main ]
+
+# schedule:
+# - cron: '0 11 * * *'
+
+# jobs:
+# linkChecker:
+# runs-on: ubuntu-latest
+# steps:
+# - uses: actions/checkout@v3
+
+# - name: Link Checker
+# id: lychee
+# uses: lycheeverse/lychee-action@v1.7.0
+# with:
+# # For parameter description, see https://github.com/lycheeverse/lychee#commandline-parameters
+# # Actions Link address -> https://github.com/lycheeverse/lychee-action
+# # -E, --exclude-all-private Exclude all private IPs from checking.
+# # -i, --insecure Proceed for server connections considered insecure (invalid TLS)
+# # -n, --no-progress Do not show progress bar.
+# # -t, --timeout Website timeout in seconds from connect to response finished [default:20]
+# # --max-concurrency Maximum number of concurrent network requests [default: 128]
+# # -a --accept Comma-separated list of accepted status codes for valid links
+# # docs/.vitepress/dist the site directory to check
+# # ./*.md all markdown files in the root directory
+# args: --verbose -E -i --no-progress --exclude-path './CHANGELOG' './**/*.md'
+# env:
+# GITHUB_TOKEN: ${{secrets.GH_PAT}}
+
+# - name: Create Issue From File
+# if: env.lychee_exit_code != 0
+# uses: peter-evans/create-issue-from-file@v4
+# with:
+# title: Bug reports for links in OpenIM docs
+# content-filepath: ./lychee/out.md
+# labels: kind/documentation, triage/unresolved, report
+# token: ${{ secrets.BOT_GITHUB_TOKEN }}
diff --git a/go/chao-sdk-core/.github/workflows/opencommit.yml b/go/chao-sdk-core/.github/workflows/opencommit.yml
new file mode 100644
index 0000000..d90143f
--- /dev/null
+++ b/go/chao-sdk-core/.github/workflows/opencommit.yml
@@ -0,0 +1,52 @@
+# Copyright Š 2023 OpenIM open source community. All rights reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+name: 'OpenIM Commit Action'
+
+on:
+ push:
+ branches:
+ - main
+
+jobs:
+ opencommit:
+ timeout-minutes: 10
+ name: OpenCommit
+ runs-on: ubuntu-latest
+ permissions: write-all
+ steps:
+ - name: Setup Node.js Environment
+ uses: actions/setup-node@v2
+ with:
+ node-version: '16'
+ - uses: actions/checkout@v3
+ with:
+ fetch-depth: 0
+ - uses: di-sukharev/opencommit@github-action-v1.0.4
+ with:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+
+ env:
+ # set openAI api key in repo actions secrets,
+ # for openAI keys go to: https://platform.openai.com/account/api-keys
+ # for repo secret go to: https://github.com/kuebcub/settings/secrets/actions
+ OCO_OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
+
+ # customization
+ OCO_OPENAI_MAX_TOKENS: 500
+ OCO_OPENAI_BASE_PATH: ''
+ OCO_DESCRIPTION: false
+ OCO_EMOJI: false
+ OCO_MODEL: gpt-3.5-turbo
+ OCO_LANGUAGE: en
\ No newline at end of file
diff --git a/go/chao-sdk-core/.github/workflows/openimci.yml b/go/chao-sdk-core/.github/workflows/openimci.yml
new file mode 100644
index 0000000..006b1be
--- /dev/null
+++ b/go/chao-sdk-core/.github/workflows/openimci.yml
@@ -0,0 +1,144 @@
+# Copyright Š 2023 OpenIM open source community. All rights reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+name: OpenIM CI Aotu Build and Install
+
+on:
+ push:
+ branches:
+ - main
+ paths-ignore:
+ - "docs/**"
+ - "README.md"
+ - "README_zh-CN.md"
+ - "CONTRIBUTING.md"
+ pull_request:
+ branches:
+ - main
+ paths-ignore:
+ - "README.md"
+ - "README_zh-CN.md"
+ - "CONTRIBUTING.md"
+ - "docs/**"
+
+env:
+ GO_VERSION: "1.19"
+ GOLANGCI_VERSION: "v1.50.1"
+
+jobs:
+ openim:
+ name: Test with go ${{ matrix.go_version }} on ${{ matrix.os }}
+ runs-on: ${{ matrix.os }}
+ permissions:
+ # Give the default GITHUB_TOKEN write permission to commit and push the changed files back to the repository.
+ contents: write
+ environment:
+ name: openim
+
+ strategy:
+ matrix:
+ go_version: ["1.18","1.19","1.20","1.21"]
+ os: [ubuntu-latest]
+
+ steps:
+ - name: Set up Go ${{ matrix.go_version }}
+ uses: actions/setup-go@v2
+ with:
+ go-version: ${{ matrix.go_version }}
+ id: go
+
+ - name: Check out code into the Go module directory
+ uses: actions/checkout@v3
+
+ - name: Install Task
+ uses: arduino/setup-task@v1
+ with:
+ version: 2.x
+
+ - name: Run go format
+ run: |
+ sudo make format
+ echo "Run go format successfully"
+ continue-on-error: true
+
+ - name: Generate all necessary files, such as error code files
+ run: |
+ make generate
+ echo "Generate all necessary files successfully"
+ continue-on-error: true
+
+ - name: Run unit test and get test coverage
+ run: |
+ make cover
+ echo "Run unit test and get test coverage successfully"
+ continue-on-error: true
+
+ - name: Clean all build
+ run: |
+ sudo make clean
+ echo "Clean all build successfully"
+
+ - name: Build source code for host platform
+ run: |
+ sudo make build
+ echo "Build source code for host platform successfully"
+
+ - name: Build wasm source code
+ run: |
+ sudo make build-wasm
+ echo "Build wasm source code successfully"
+
+ - name: OpenIM verify copyright
+ run: |
+ sudo make verify-copyright
+ sudo make add-copyright
+ echo "OpenIM verify successfully"
+ continue-on-error: true
+
+ - name: push OpenIM
+ uses: stefanzweifel/git-auto-commit-action@v4
+ with:
+ commit_message: "cicd: robot automated Change"
+ # commit_options: '--no-verify --signoff'
+ branch: main
+ # create_branch: true
+ # # Optional commit user and author settings
+ # commit_user_name: kubbot # defaults to "github-actions[bot]"
+ # commit_user_email: 3293172751ysy@gmail.com # defaults to "41898282+github-actions[bot]@users.noreply.github.com"
+ # commit_author: Kubbot # defaults to author of the commit that triggered the run
+ continue-on-error: true
+
+ - name: Set Current Directory
+ id: set_directory
+ run: |
+ echo "::set-output name=directory::$(pwd)"
+ continue-on-error: true
+
+ - name: Collect Test Coverage File
+ id: collect_coverage
+ run: |
+ cd ${{ steps.set_directory.outputs.directory }}
+ make cover
+ echo "::set-output name=coverage_file::./_output/tmp/coverage.out"
+ continue-on-error: true
+
+ - name: Display Test Coverage
+ run: |
+ echo "Test Coverage:"
+ cat ${{ steps.collect_coverage.outputs.coverage_file }}
+ continue-on-error: true
+
+ - name: Set up Docker Buildx
+ uses: docker/setup-buildx-action@v1
+ continue-on-error: true
\ No newline at end of file
diff --git a/go/chao-sdk-core/.github/workflows/release.yml b/go/chao-sdk-core/.github/workflows/release.yml
new file mode 100644
index 0000000..0819f47
--- /dev/null
+++ b/go/chao-sdk-core/.github/workflows/release.yml
@@ -0,0 +1,82 @@
+# Copyright Š 2023 OpenIM open source community. All rights reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+name: OpenIM OpenIM Core release
+
+on:
+ push:
+ # run only against tags
+ tags:
+ - '*'
+
+permissions:
+ contents: write
+ packages: write
+ issues: write
+
+
+jobs:
+ goreleaser:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v3
+ with:
+ fetch-depth: 0
+ - run: git fetch --force --tags
+ - uses: actions/setup-go@v4
+ with:
+ go-version: stable
+ # More assembly might be required: Docker logins, GPG, etc. It all depends
+ # on your needs.
+ - uses: goreleaser/goreleaser-action@v4
+ with:
+ # either 'goreleaser' (default) or 'goreleaser-pro':
+ distribution: goreleaser
+ version: latest
+ workdir: .
+ args: release --clean --clean --release-footer-tmpl=scripts/template/footer.md.tmpl --release-header-tmpl=scripts/template/head.md.tmpl
+ env:
+ USERNAME: ${{ github.repository_owner }}
+ GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN }}
+ FURY_TOKEN: ${{ secrets.FURY_TOKEN }}
+ # Your GoReleaser Pro key, if you are using the 'goreleaser-pro'
+ # distribution:
+ # GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}
+
+ goreleaser-check-pkgs:
+ runs-on: ubuntu-latest
+ env:
+ DOCKER_CLI_EXPERIMENTAL: "enabled"
+ needs: [ goreleaser ]
+ if: github.ref == 'refs/heads/main'
+ strategy:
+ matrix:
+ format: [ deb, rpm, apk ]
+ steps:
+ - uses: actions/checkout@v3 # v3
+ with:
+ fetch-depth: 0
+ - uses: arduino/setup-task@e26d8975574116b0097a1161e0fe16ba75d84c1c # v1
+ with:
+ version: 3.x
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
+ - uses: docker/setup-qemu-action@2b82ce82d56a2a04d2637cd93a637ae1b359c0a7 # v2
+ - uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
+ with:
+ path: |
+ ./_output/dist/*.deb
+ ./_output/dist/*.rpm
+ ./_output/dist/*.apk
+ key: ${{ github.ref }}
+ - run: task goreleaser:test:${{ matrix.format }}
\ No newline at end of file
diff --git a/go/chao-sdk-core/.github/workflows/stale.yml b/go/chao-sdk-core/.github/workflows/stale.yml
new file mode 100644
index 0000000..3ece9a7
--- /dev/null
+++ b/go/chao-sdk-core/.github/workflows/stale.yml
@@ -0,0 +1,48 @@
+# Copyright Š 2023 OpenIM SDK. All rights reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time.
+#
+# You can adjust the behavior by modifying this file.
+# For more information, see:
+# https://github.com/actions/stale
+name: Mark stale issues and pull requests
+
+on:
+ schedule:
+ - cron: '0 8 * * *'
+
+jobs:
+ stale:
+
+ runs-on: ubuntu-latest
+ permissions:
+ issues: write
+ pull-requests: write
+
+ steps:
+ - uses: actions/stale@v5
+ with:
+ repo-token: ${{ secrets.BOT_GITHUB_TOKEN }}
+ days-before-stale: 60
+ days-before-close: 7
+ stale-issue-message: 'This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 7 days.'
+ stale-pr-message: 'This issue is stale because it has been open 60 days with no activity.'
+ close-issue-message: 'This issue was closed because it has been stalled for 7 days with no activity.'
+ close-pr-message: 'This PR was closed because it has been stalled for 7 days with no activity. You can reopen it if you want.'
+ stale-pr-label: lifecycle/stale
+ stale-issue-label: lifecycle/stale
+ exempt-issue-labels: 'openim'
+ exempt-pr-labels: 'openim'
+ exempt-draft-pr: true
diff --git a/go/chao-sdk-core/.gitignore b/go/chao-sdk-core/.gitignore
new file mode 100644
index 0000000..e888e1f
--- /dev/null
+++ b/go/chao-sdk-core/.gitignore
@@ -0,0 +1,172 @@
+logs
+.devcontainer
+components
+logs
+out-test
+*.db
+
+### Backup ###
+*.bak
+*.gho
+*.ori
+*.orig
+*.tmp
+
+### deploy dir ###
+deploy/open_im_api
+deploy/open_im_msg_gateway
+deploy/open_im_msg_transfer
+deploy/open_im_push
+deploy/open_im_rpc_user
+deploy/open_im_rpc_friend
+deploy/open_im_rpc_group
+deploy/open_im_rpc_msg
+deploy/open_im_rpc_auth
+deploy/Open-IM-SDK-Core
+
+### Git ###
+# Created by git for backups. To disable backups in Git:
+# $ git config --global mergetool.keepBackup false
+
+# Created by git when using merge tools for conflicts
+*.BACKUP.*
+*.BASE.*
+*.LOCAL.*
+*.REMOTE.*
+*_BACKUP_*.txt
+*_BASE_*.txt
+*_LOCAL_*.txt
+*_REMOTE_*.txt
+
+### Go ###
+# Binaries for programs and plugins
+*.exe
+*.exe~
+*.dll
+*.so
+*.dylib
+
+# Test binary, built with `go test -c`
+*.test
+
+# Output of the go coverage tool, specifically when used with LiteIDE
+*.out
+
+# Dependency directories (remove the comment below to include it)
+vendor/
+bin/
+tools/
+tmp/
+
+
+### vscode ###
+.vscode/*
+!.vscode/settings.json
+!.vscode/tasks.json
+!.vscode/launch.json
+!.vscode/extensions.json
+*.code-workspace
+
+### JetBrains ###
+# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
+# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
+.idea
+
+# User-specific stuff
+.idea/**/workspace.xml
+.idea/**/tasks.xml
+.idea/**/usage.statistics.xml
+.idea/**/dictionaries
+.idea/**/shelf
+
+# Generated files
+.idea/**/contentModel.xml
+
+# Sensitive or high-churn files
+.idea/**/dataSources/
+.idea/**/dataSources.ids
+.idea/**/dataSources.local.xml
+.idea/**/sqlDataSources.xml
+.idea/**/dynamic.xml
+.idea/**/uiDesigner.xml
+.idea/**/dbnavigator.xml
+
+# Gradle
+.idea/**/gradle.xml
+.idea/**/libraries
+
+# Gradle and Maven with auto-import
+# When using Gradle or Maven with auto-import, you should exclude module files,
+# since they will be recreated, and may cause churn. Uncomment if using
+# auto-import.
+# .idea/artifacts
+# .idea/compiler.xml
+# .idea/jarRepositories.xml
+# .idea/modules.xml
+# .idea/*.iml
+# .idea/modules
+# *.iml
+# *.ipr
+
+# CMake
+cmake-build-*/
+
+# Mongo Explorer plugin
+.idea/**/mongoSettings.xml
+
+# File-based project format
+*.iws
+
+# IntelliJ
+out/
+
+# mpeltonen/sbt-idea plugin
+.idea_modules/
+
+# JIRA plugin
+atlassian-ide-plugin.xml
+
+# Cursive Clojure plugin
+.idea/replstate.xml
+
+# Crashlytics plugin (for Android Studio and IntelliJ)
+com_crashlytics_export_strings.xml
+crashlytics.properties
+crashlytics-build.properties
+fabric.properties
+
+# Editor-based Rest Client
+.idea/httpRequests
+
+# Android studio 3.1+ serialized cache file
+.idea/caches/build_file_checksums.ser
+
+### JetBrains Patch ###
+# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
+
+# *.iml
+# modules.xml
+# .idea/misc.xml
+# *.ipr
+
+# Sonarlint plugin
+# https://plugins.jetbrains.com/plugin/7973-sonarlint
+.idea/**/sonarlint/
+
+# SonarQube Plugin
+# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
+.idea/**/sonarIssues.xml
+
+# Markdown Navigator plugin
+# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
+.idea/**/markdown-navigator.xml
+.idea/**/markdown-navigator-enh.xml
+.idea/**/markdown-navigator/
+
+# Cache file creation bug
+# See https://youtrack.jetbrains.com/issue/JBR-2257
+.idea/$CACHE_FILE$
+
+# CodeStream plugin
+# https://plugins.jetbrains.com/plugin/12206-codestream
+.idea/codestream.xml
\ No newline at end of file
diff --git a/go/chao-sdk-core/.golangci.yml b/go/chao-sdk-core/.golangci.yml
new file mode 100644
index 0000000..774fe29
--- /dev/null
+++ b/go/chao-sdk-core/.golangci.yml
@@ -0,0 +1,934 @@
+# Copyright Š 2023 OpenIMSDK open source community. All rights reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+# This file contains all available configuration options
+# with their default values.
+
+# options for analysis running
+run:
+ # default concurrency is a available CPU number
+ concurrency: 4
+
+ # timeout for analysis, e.g. 30s, 5m, default is 1m
+ timeout: 5m
+
+ # exit code when at least one issue was found, default is 1
+ issues-exit-code: 1
+
+ # include test files or not, default is true
+ tests: true
+
+ # list of build tags, all linters use it. Default is empty list.
+ build-tags:
+ - mytag
+
+ # which dirs to skip: issues from them won't be reported;
+ # can use regexp here: generated.*, regexp is applied on full path;
+ # default value is empty list, but default dirs are skipped independently
+ # from this option's value (see skip-dirs-use-default).
+ # "/" will be replaced by current OS file path separator to properly work
+ # on Windows.
+ skip-dirs:
+ - util
+ - .*~
+ - api/swagger/docs
+ - server/docs
+
+ # default is true. Enables skipping of directories:
+ # vendor$, third_party$, testdata$, examples$, Godeps$, builtin$
+ skip-dirs-use-default: true
+
+ # which files to skip: they will be analyzed, but issues from them
+ # won't be reported. Default value is empty list, but there is
+ # no need to include all autogenerated files, we confidently recognize
+ # autogenerated files. If it's not please let us know.
+ # "/" will be replaced by current OS file path separator to properly work
+ # on Windows.
+ skip-files:
+ - ".*\\.my\\.go$"
+ - _test.go
+
+ # by default isn't set. If set we pass it to "go list -mod={option}". From "go help modules":
+ # If invoked with -mod=readonly, the go command is disallowed from the implicit
+ # automatic updating of go.mod described above. Instead, it fails when any changes
+ # to go.mod are needed. This setting is most useful to check that go.mod does
+ # not need updates, such as in a continuous integration and testing system.
+ # If invoked with -mod=vendor, the go command assumes that the vendor
+ # directory holds the correct copies of dependencies and ignores
+ # the dependency descriptions in go.mod.
+ #modules-download-mode: release|readonly|vendor
+
+ # Allow multiple parallel golangci-lint instances running.
+ # If false (default) - golangci-lint acquires file lock on start.
+ allow-parallel-runners: true
+
+
+# output configuration options
+output:
+ # colored-line-number|line-number|json|tab|checkstyle|code-climate, default is "colored-line-number"
+ format: colored-line-number
+
+ # print lines of code with issue, default is true
+ print-issued-lines: true
+
+ # print linter name in the end of issue text, default is true
+ print-linter-name: true
+
+ # make issues output unique by line, default is true
+ uniq-by-line: true
+
+ # add a prefix to the output file references; default is no prefix
+ path-prefix: ""
+
+ # sorts results by: filepath, line and column
+ sort-results: true
+
+# all available settings of specific linters
+linters-settings:
+ bidichk:
+ # The following configurations check for all mentioned invisible unicode
+ # runes. It can be omitted because all runes are enabled by default.
+ left-to-right-embedding: true
+ right-to-left-embedding: true
+ pop-directional-formatting: true
+ left-to-right-override: true
+ right-to-left-override: true
+ left-to-right-isolate: true
+ right-to-left-isolate: true
+ first-strong-isolate: true
+ pop-directional-isolate: true
+ dogsled:
+ # checks assignments with too many blank identifiers; default is 2
+ max-blank-identifiers: 2
+ dupl:
+ # tokens count to trigger issue, 150 by default
+ threshold: 100
+ errcheck:
+ # report about not checking of errors in type assertions: `a := b.(MyStruct)`;
+ # default is false: such cases aren't reported by default.
+ check-type-assertions: false
+
+ # report about assignment of errors to blank identifier: `num, _ := strconv.Atoi(numStr)`;
+ # default is false: such cases aren't reported by default.
+ check-blank: false
+
+ # [deprecated] comma-separated list of pairs of the form pkg:regex
+ # the regex is used to ignore names within pkg. (default "fmt:.*").
+ # see https://github.com/kisielk/errcheck#the-deprecated-method for details
+ #ignore: GenMarkdownTree,os:.*,BindPFlags,WriteTo,Help
+ #ignore: (os\.)?std(out|err)\..*|.*Close|.*Flush|os\.Remove(All)?|.*print(f|ln)?|os\.(Un)?Setenv
+
+ # path to a file containing a list of functions to exclude from checking
+ # see https://github.com/kisielk/errcheck#excluding-functions for details
+ #exclude: errcheck.txt
+
+ errorlint:
+ # Check whether fmt.Errorf uses the %w verb for formatting errors. See the readme for caveats
+ errorf: true
+ # Check for plain type assertions and type switches
+ asserts: true
+ # Check for plain error comparisons
+ comparison: true
+
+ exhaustive:
+ # check switch statements in generated files also
+ check-generated: false
+ # indicates that switch statements are to be considered exhaustive if a
+ # 'default' case is present, even if all enum members aren't listed in the
+ # switch
+ default-signifies-exhaustive: false
+ # enum members matching the supplied regex do not have to be listed in
+ # switch statements to satisfy exhaustiveness
+ ignore-enum-members: ""
+ # consider enums only in package scopes, not in inner scopes
+ package-scope-only: false
+ exhaustivestruct:
+ struct-patterns:
+ - '*.Test'
+ - '*.Test2'
+ - '*.Embedded'
+ - '*.External'
+
+ # forbidigo:
+ # # Forbid the following identifiers (identifiers are written using regexp):
+ # forbid:
+ # - ^print.*$
+ # - 'fmt\.Print.*'
+ # - fmt.Println.* # too much log noise
+ # - ginkgo\\.F.* # these are used just for local development
+ # # Exclude godoc examples from forbidigo checks. Default is true.
+ # exclude_godoc_examples: false
+ funlen:
+ lines: 150
+ statements: 50
+ gci:
+ # put imports beginning with prefix after 3rd-party packages;
+ # only support one prefix
+ # if not set, use goimports.local-prefixes
+ prefix: github.com/openimsdk/openim-sdk-core
+ gocognit:
+ # minimal code complexity to report, 30 by default (but we recommend 10-20)
+ min-complexity: 30
+ goconst:
+ # minimal length of string constant, 3 by default
+ min-len: 3
+ # minimal occurrences count to trigger, 3 by default
+ min-occurrences: 3
+ # ignore test files, false by default
+ ignore-tests: false
+ # look for existing constants matching the values, true by default
+ match-constant: true
+ # search also for duplicated numbers, false by default
+ numbers: false
+ # minimum value, only works with goconst.numbers, 3 by default
+ min: 3
+ # maximum value, only works with goconst.numbers, 3 by default
+ max: 3
+ # ignore when constant is not used as function argument, true by default
+ ignore-calls: true
+
+ gocritic:
+ # Which checks should be enabled; can't be combined with 'disabled-checks';
+ # See https://go-critic.github.io/overview#checks-overview
+ # To check which checks are enabled run `GL_DEBUG=gocritic golangci-lint run`
+ # By default list of stable checks is used.
+ enabled-checks:
+ #- rangeValCopy
+ - nestingreduce
+ - truncatecmp
+ - unnamedresult
+ - ruleguard
+
+ # Which checks should be disabled; can't be combined with 'enabled-checks'; default is empty
+ disabled-checks:
+ - regexpMust
+ - ifElseChain
+ #- exitAfterDefer
+
+ # Enable multiple checks by tags, run `GL_DEBUG=gocritic golangci-lint run` to see all tags and checks.
+ # Empty list by default. See https://github.com/go-critic/go-critic#usage -> section "Tags".
+ enabled-tags:
+ - performance
+ disabled-tags:
+ - experimental
+
+ # Settings passed to gocritic.
+ # The settings key is the name of a supported gocritic checker.
+ # The list of supported checkers can be find in https://go-critic.github.io/overview.
+ settings:
+ captLocal: # must be valid enabled check name
+ # whether to restrict checker to params only (default true)
+ paramsOnly: true
+ elseif:
+ # whether to skip balanced if-else pairs (default true)
+ skipBalanced: true
+ hugeParam:
+ # size in bytes that makes the warning trigger (default 80)
+ sizeThreshold: 80
+ nestingReduce:
+ # min number of statements inside a branch to trigger a warning (default 5)
+ bodyWidth: 5
+ rangeExprCopy:
+ # size in bytes that makes the warning trigger (default 512)
+ sizeThreshold: 512
+ # whether to check test functions (default true)
+ skipTestFuncs: true
+ rangeValCopy:
+ # size in bytes that makes the warning trigger (default 128)
+ sizeThreshold: 32
+ # whether to check test functions (default true)
+ skipTestFuncs: true
+ ruleguard:
+ # path to a gorules file for the ruleguard checker
+ rules: ''
+ truncateCmp:
+ # whether to skip int/uint/uintptr types (default true)
+ skipArchDependent: true
+ underef:
+ # whether to skip (*x).method() calls where x is a pointer receiver (default true)
+ skipRecvDeref: true
+ unnamedResult:
+ # whether to check exported functions
+ checkExported: true
+ gocyclo:
+ # minimal code complexity to report, 30 by default (but we recommend 10-20)
+ min-complexity: 30
+ cyclop:
+ # the maximal code complexity to report
+ max-complexity: 50
+ # the maximal average package complexity. If it's higher than 0.0 (float) the check is enabled (default 0.0)
+ package-average: 0.0
+ # should ignore tests (default false)
+ skip-tests: false
+ godot:
+ # comments to be checked: `declarations`, `toplevel`, or `all`
+ scope: declarations
+ # list of regexps for excluding particular comment lines from check
+ exclude:
+ # example: exclude comments which contain numbers
+ # - '[0-9]+'
+ # check that each sentence starts with a capital letter
+ capital: false
+ godox:
+ # report any comments starting with keywords, this is useful for TODO or FIXME comments that
+ # might be left in the code accidentally and should be resolved before merging
+ keywords: # default keywords are TODO, BUG, and FIXME, these can be overwritten by this setting
+ #- TODO
+ - BUG
+ - FIXME
+ #- NOTE
+ - OPTIMIZE # marks code that should be optimized before merging
+ - HACK # marks hack-arounds that should be removed before merging
+ gofmt:
+ # simplify code: gofmt with `-s` option, true by default
+ simplify: true
+
+ gofumpt:
+ # Select the Go version to target. The default is `1.18`.
+ lang-version: "1.20"
+
+ # Choose whether or not to use the extra rules that are disabled
+ # by default
+ extra-rules: false
+
+ goheader:
+ values:
+ const:
+ # define here const type values in format k:v, for example:
+ # COMPANY: MY COMPANY
+ regexp:
+ # define here regexp type values, for example
+ # AUTHOR: .*@mycompany\.com
+ template: # |-
+ # put here copyright header template for source code files, for example:
+ # Note: {{ YEAR }} is a builtin value that returns the year relative to the current machine time.
+ #
+ # {{ AUTHOR }} {{ COMPANY }} {{ YEAR }}
+ # SPDX-License-Identifier: Apache-2.0
+
+ # Licensed under the Apache License, Version 2.0 (the "License");
+ # you may not use this file except in compliance with the License.
+ # You may obtain a copy of the License at:
+
+ # http://www.apache.org/licenses/LICENSE-2.0
+
+ # Unless required by applicable law or agreed to in writing, software
+ # distributed under the License is distributed on an "AS IS" BASIS,
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ # See the License for the specific language governing permissions and
+ # limitations under the License.
+ template-path:
+ # also as alternative of directive 'template' you may put the path to file with the template source
+ goimports:
+ # put imports beginning with prefix after 3rd-party packages;
+ # it's a comma-separated list of prefixes
+ local-prefixes: github.com/openimsdk/openim-sdk-core
+ golint:
+ # minimal confidence for issues, default is 0.8
+ min-confidence: 0.9
+ gomnd:
+ settings:
+ mnd:
+ # the list of enabled checks, see https://github.com/tommy-muehle/go-mnd/#checks for description.
+ checks: argument,case,condition,operation,return,assign
+ # ignored-numbers: 1000
+ # ignored-files: magic_.*.go
+ # ignored-functions: math.*
+ gomoddirectives:
+ # Allow local `replace` directives. Default is false.
+ replace-local: true
+ # List of allowed `replace` directives. Default is empty.
+ replace-allow-list:
+ - google.golang.org/grpc
+
+ # Allow to not explain why the version has been retracted in the `retract` directives. Default is false.
+ retract-allow-no-explanation: false
+ # Forbid the use of the `exclude` directives. Default is false.
+ exclude-forbidden: false
+ gomodguard:
+ allowed:
+ modules:
+ - gorm.io/gen # List of allowed modules
+ - gorm.io/gorm
+ - gorm.io/driver/mysql
+ - k8s.io/klog
+ # - gopkg.in/yaml.v2
+ domains: # List of allowed module domains
+ - google.golang.org
+ - gopkg.in
+ - golang.org
+ - github.com
+ - go.uber.org
+ - go.etcd.io
+ blocked:
+ versions:
+ - github.com/MakeNowJust/heredoc:
+ version: "> 2.0.9"
+ reason: "use the latest version"
+ local_replace_directives: false # Set to true to raise lint issues for packages that are loaded from a local path via replace directive
+
+ gosec:
+ # To select a subset of rules to run.
+ # Available rules: https://github.com/securego/gosec#available-rules
+ includes:
+ - G401
+ - G306
+ - G101
+ # To specify a set of rules to explicitly exclude.
+ # Available rules: https://github.com/securego/gosec#available-rules
+ excludes:
+ - G204
+ # Exclude generated files
+ exclude-generated: true
+ # Filter out the issues with a lower severity than the given value. Valid options are: low, medium, high.
+ severity: "low"
+ # Filter out the issues with a lower confidence than the given value. Valid options are: low, medium, high.
+ confidence: "low"
+ # To specify the configuration of rules.
+ # The configuration of rules is not fully documented by gosec:
+ # https://github.com/securego/gosec#configuration
+ # https://github.com/securego/gosec/blob/569328eade2ccbad4ce2d0f21ee158ab5356a5cf/rules/rulelist.go#L60-L102
+ config:
+ G306: "0600"
+ G101:
+ pattern: "(?i)example"
+ ignore_entropy: false
+ entropy_threshold: "80.0"
+ per_char_threshold: "3.0"
+ truncate: "32"
+
+ gosimple:
+ # Select the Go version to target. The default is '1.13'.
+ go: "1.20"
+ # https://staticcheck.io/docs/options#checks
+ checks: [ "all" ]
+
+ govet:
+ # report about shadowed variables
+ check-shadowing: true
+
+ # settings per analyzer
+ settings:
+ printf: # analyzer name, run `go tool vet help` to see all analyzers
+ funcs: # run `go tool vet help printf` to see available settings for `printf` analyzer
+ - (github.com/golangci/golangci-lint/pkg/logutils.Log).Infof
+ - (github.com/golangci/golangci-lint/pkg/logutils.Log).Warnf
+ - (github.com/golangci/golangci-lint/pkg/logutils.Log).Errorf
+ - (github.com/golangci/golangci-lint/pkg/logutils.Log).Fatalf
+
+ # enable or disable analyzers by name
+ enable:
+ - atomicalign
+ enable-all: false
+ disable:
+ - shadow
+ disable-all: false
+ # depguard:
+ # list-type: blacklist
+ # include-go-root: false
+ # packages:
+ # - github.com/Sirupsen/logrus
+ # packages-with-error-message:
+ # # specify an error message to output when a blacklisted package is used
+ # - github.com/Sirupsen/logrus: "logging is allowed only by logutils.Log"
+ ifshort:
+ # Maximum length of variable declaration measured in number of lines, after which linter won't suggest using short syntax.
+ # Has higher priority than max-decl-chars.
+ max-decl-lines: 1
+ # Maximum length of variable declaration measured in number of characters, after which linter won't suggest using short syntax.
+ max-decl-chars: 30
+
+ importas:
+ # if set to `true`, force to use alias.
+ no-unaliased: true
+ # List of aliases
+ alias:
+ # using `servingv1` alias for `knative.dev/serving/pkg/apis/serving/v1` package
+ - pkg: knative.dev/serving/pkg/apis/serving/v1
+ alias: servingv1
+ # using `autoscalingv1alpha1` alias for `knative.dev/serving/pkg/apis/autoscaling/v1alpha1` package
+ - pkg: knative.dev/serving/pkg/apis/autoscaling/v1alpha1
+ alias: autoscalingv1alpha1
+ # You can specify the package path by regular expression,
+ # and alias by regular expression expansion syntax like below.
+ # see https://github.com/julz/importas#use-regular-expression for details
+ - pkg: knative.dev/serving/pkg/apis/(\w+)/(v[\w\d]+)
+ alias: $1$2
+ # using `jwt` alias for `github.com/appleboy/gin-jwt/v2` package
+ jwt: github.com/appleboy/gin-jwt/v2
+
+ ireturn:
+ # ireturn allows using `allow` and `reject` settings at the same time.
+ # Both settings are lists of the keywords and regular expressions matched to interface or package names.
+ # keywords:
+ # - `empty` for `interface{}`
+ # - `error` for errors
+ # - `stdlib` for standard library
+ # - `anon` for anonymous interfaces
+
+ # By default, it allows using errors, empty interfaces, anonymous interfaces,
+ # and interfaces provided by the standard library.
+ allow:
+ - anon
+ - error
+ - empty
+ - stdlib
+ # You can specify idiomatic endings for interface
+ - (or|er)$
+
+ # Reject patterns
+ reject:
+ - github.com\/user\/package\/v4\.Type
+
+ lll:
+ # max line length, lines longer will be reported. Default is 120.
+ # '\t' is counted as 1 character by default, and can be changed with the tab-width option
+ line-length: 240
+ # tab width in spaces. Default to 1.
+ tab-width: 4
+ maligned:
+ # print struct with more effective memory layout or not, false by default
+ suggest-new: true
+ misspell:
+ # Correct spellings using locale preferences for US or UK.
+ # Default is to use a neutral variety of English.
+ # Setting locale to US will correct the British spelling of 'colour' to 'color'.
+ locale: US
+ ignore-words:
+ - someword
+ nakedret:
+ # make an issue if func has more lines of code than this setting and it has naked returns; default is 30
+ max-func-lines: 30
+
+ nestif:
+ # minimal complexity of if statements to report, 5 by default
+ min-complexity: 4
+
+ nilnil:
+ # By default, nilnil checks all returned types below.
+ checked-types:
+ - ptr
+ - func
+ - iface
+ - map
+ - chan
+
+ nlreturn:
+ # size of the block (including return statement that is still "OK")
+ # so no return split required.
+ block-size: 1
+
+ nolintlint:
+ # Disable to ensure that all nolint directives actually have an effect. Default is true.
+ allow-unused: false
+ # Disable to ensure that nolint directives don't have a leading space. Default is true.
+ allow-leading-space: true
+ # Exclude following linters from requiring an explanation. Default is [].
+ allow-no-explanation: [ ]
+ # Enable to require an explanation of nonzero length after each nolint directive. Default is false.
+ require-explanation: false
+ # Enable to require nolint directives to mention the specific linter being suppressed. Default is false.
+ require-specific: true
+
+ prealloc:
+ # XXX: we don't recommend using this linter before doing performance profiling.
+ # For most programs usage of prealloc will be a premature optimization.
+
+ # Report preallocation suggestions only on simple loops that have no returns/breaks/continues/gotos in them.
+ # True by default.
+ simple: true
+ range-loops: true # Report preallocation suggestions on range loops, true by default
+ for-loops: false # Report preallocation suggestions on for loops, false by default
+
+ promlinter:
+ # Promlinter cannot infer all metrics name in static analysis.
+ # Enable strict mode will also include the errors caused by failing to parse the args.
+ strict: false
+ # Please refer to https://github.com/yeya24/promlinter#usage for detailed usage.
+ disabled-linters:
+ # - "Help"
+ # - "MetricUnits"
+ # - "Counter"
+ # - "HistogramSummaryReserved"
+ # - "MetricTypeInName"
+ # - "ReservedChars"
+ # - "CamelCase"
+ # - "lintUnitAbbreviations"
+
+ predeclared:
+ # comma-separated list of predeclared identifiers to not report on
+ ignore: ""
+ # include method names and field names (i.e., qualified names) in checks
+ q: false
+ rowserrcheck:
+ packages:
+ - github.com/jmoiron/sqlx
+ revive:
+ # see https://github.com/mgechev/revive#available-rules for details.
+ ignore-generated-header: true
+ severity: warning
+ rules:
+ - name: indent-error-flow
+ severity: warning
+ staticcheck:
+ # Select the Go version to target. The default is '1.13'.
+ go: "1.16"
+ # https://staticcheck.io/docs/options#checks
+ checks: [ "all" ]
+
+ stylecheck:
+ # Select the Go version to target. The default is '1.13'.
+ go: "1.16"
+
+ # https://staticcheck.io/docs/options#checks
+ checks: [ "all", "-ST1000", "-ST1003", "-ST1016", "-ST1020", "-ST1021", "-ST1022" ]
+ # https://staticcheck.io/docs/options#dot_import_whitelist
+ dot-import-whitelist:
+ - fmt
+ # https://staticcheck.io/docs/options#initialisms
+ initialisms: [ "ACL", "API", "ASCII", "CPU", "CSS", "DNS", "EOF", "GUID", "HTML", "HTTP", "HTTPS", "ID", "IP", "JSON", "QPS", "RAM", "RPC", "SLA", "SMTP", "SQL", "SSH", "TCP", "TLS", "TTL", "UDP", "UI", "GID", "UID", "UUID", "URI", "URL", "UTF8", "VM", "XML", "XMPP", "XSRF", "XSS" ]
+ # https://staticcheck.io/docs/options#http_status_code_whitelist
+ http-status-code-whitelist: [ "200", "400", "404", "500" ]
+
+
+ tagliatelle:
+ # check the struck tag name case
+ case:
+ # use the struct field name to check the name of the struct tag
+ use-field-name: true
+ rules:
+ # any struct tag type can be used.
+ # support string case: `camel`, `pascal`, `kebab`, `snake`, `goCamel`, `goPascal`, `goKebab`, `goSnake`, `upper`, `lower`
+ json: camel
+ yaml: camel
+ xml: camel
+ bson: camel
+ avro: snake
+ mapstructure: kebab
+
+ testpackage:
+ # regexp pattern to skip files
+ skip-regexp: (id|export|internal)_test\.go
+ thelper:
+ # The following configurations enable all checks. It can be omitted because all checks are enabled by default.
+ # You can enable only required checks deleting unnecessary checks.
+ test:
+ first: true
+ name: true
+ begin: true
+ benchmark:
+ first: true
+ name: true
+ begin: true
+ tb:
+ first: true
+ name: true
+ begin: true
+
+ tenv:
+ # The option `all` will run against whole test files (`_test.go`) regardless of method/function signatures.
+ # By default, only methods that take `*testing.T`, `*testing.B`, and `testing.TB` as arguments are checked.
+ all: false
+
+ unparam:
+ # Inspect exported functions, default is false. Set to true if no external program/library imports your code.
+ # XXX: if you enable this setting, unparam will report a lot of false-positives in text editors:
+ # if it's called for subdir of a project it can't find external interfaces. All text editor integrations
+ # with golangci-lint call it on a directory with the changed file.
+ check-exported: false
+ unused:
+ # treat code as a program (not a library) and report unused exported identifiers; default is false.
+ # XXX: if you enable this setting, unused will report a lot of false-positives in text editors:
+ # if it's called for subdir of a project it can't find funcs usages. All text editor integrations
+ # with golangci-lint call it on a directory with the changed file.
+ check-exported: false
+ whitespace:
+ multi-if: false # Enforces newlines (or comments) after every multi-line if statement
+ multi-func: false # Enforces newlines (or comments) after every multi-line function signature
+
+ wrapcheck:
+ # An array of strings that specify substrings of signatures to ignore.
+ # If this set, it will override the default set of ignored signatures.
+ # See https://github.com/tomarrell/wrapcheck#configuration for more information.
+ ignoreSigs:
+ - .Errorf(
+ - errors.New(
+ - errors.Unwrap(
+ - .Wrap(
+ - .Wrapf(
+ - .WithMessage(
+ - .WithMessagef(
+ - .WithStack(
+ ignorePackageGlobs:
+ - encoding/*
+ - github.com/pkg/*
+
+ wsl:
+ # If true append is only allowed to be cuddled if appending value is
+ # matching variables, fields or types on line above. Default is true.
+ strict-append: true
+ # Allow calls and assignments to be cuddled as long as the lines have any
+ # matching variables, fields or types. Default is true.
+ allow-assign-and-call: true
+ # Allow assignments to be cuddled with anything. Default is false.
+ allow-assign-and-anything: false
+ # Allow multiline assignments to be cuddled. Default is true.
+ allow-multiline-assign: true
+ # Allow declarations (var) to be cuddled.
+ allow-cuddle-declarations: false
+ # Allow trailing comments in ending of blocks
+ allow-trailing-comment: false
+ # Force newlines in end of case at this limit (0 = never).
+ force-case-trailing-whitespace: 0
+ # Force cuddling of err checks with err var assignment
+ force-err-cuddling: false
+ # Allow leading comments to be separated with empty liens
+ allow-separated-leading-comment: false
+ makezero:
+ # Allow only slices initialized with a length of zero. Default is false.
+ always: false
+
+
+ # The custom section can be used to define linter plugins to be loaded at runtime. See README doc
+ # for more info.
+ #custom:
+ # Each custom linter should have a unique name.
+ #example:
+ # The path to the plugin *.so. Can be absolute or local. Required for each custom linter
+ #path: /path/to/example.so
+ # The description of the linter. Optional, just for documentation purposes.
+ #description: This is an example usage of a plugin linter.
+ # Intended to point to the repo location of the linter. Optional, just for documentation purposes.
+ #original-url: github.com/golangci/example-linter
+
+linters:
+ # please, do not use `enable-all`: it's deprecated and will be removed soon.
+ # inverted configuration with `enable-all` and `disable` is not scalable during updates of golangci-lint
+ # enable-all: true
+ disable-all: true
+ enable:
+ - typecheck
+ - asciicheck
+ - bodyclose
+ - cyclop
+ - deadcode
+ # - depguard
+ - dogsled
+ - dupl
+ - durationcheck
+ - errcheck
+ - errorlint
+ - exhaustive
+ - exportloopref
+ # - forbidigo
+ - funlen
+ # - gci
+ # - gochecknoinits
+ - gocognit
+ - goconst
+ - gocyclo
+ - godot
+ - godox
+ - gofmt
+ - gofumpt
+ - goheader
+ - goimports
+ - gomoddirectives
+ - gomodguard
+ - goprintffuncname
+ - gosec
+ - gosimple
+ - govet
+ - ifshort
+ - importas
+ - ineffassign
+ - lll
+ - makezero
+ - misspell
+ - nakedret
+ - nestif
+ - nilerr
+ - nlreturn
+ - noctx
+ - nolintlint
+ - paralleltest
+ - prealloc
+ - predeclared
+ - promlinter
+ - revive
+ - rowserrcheck
+ - sqlclosecheck
+ - staticcheck
+ - structcheck
+ - stylecheck
+ - thelper
+ - tparallel
+ - unconvert
+ - unparam
+ - unused
+ - varcheck
+ - wastedassign
+ - whitespace
+ - bidichk
+ - wastedassign
+ - golint
+ - execinquery
+ - nosprintfhostport
+ - grouper
+ - decorder
+ - errchkjson
+ - maintidx
+ #- containedctx
+ #- tagliatelle
+ #- nonamedreturns
+ #- nilnil
+ #- tenv
+ #- varnamelen
+ #- contextcheck
+ #- errname
+ #- ForceTypeAssert
+ #- nilassign
+ fast: false
+
+issues:
+ # List of regexps of issue texts to exclude, empty list by default.
+ # But independently from this option we use default exclude patterns,
+ # it can be disabled by `exclude-use-default: false`. To list all
+ # excluded by default patterns execute `golangci-lint run --help`
+ exclude:
+ - tools/.*
+ - test/.*
+ - third_party/.*
+
+ # Excluding configuration per-path, per-linter, per-text and per-source
+ exclude-rules:
+ - linters:
+ - golint
+ path: (internal/api/.*)\.go # exclude golint for internal/api/... files
+
+ - linters:
+ - revive
+ path: (log/.*)\.go
+
+ - linters:
+ - wrapcheck
+ path: (cmd/.*|pkg/.*)\.go
+
+ - linters:
+ - typecheck
+ #path: (pkg/storage/.*)\.go
+ path: (internal/.*|pkg/.*)\.go
+
+ - path: (cmd/.*|test/.*|tools/.*|internal/pump/pumps/.*)\.go
+ linters:
+ - forbidigo
+
+ - path: (cmd/[a-z]*/.*|store/.*)\.go
+ linters:
+ - dupl
+
+ - linters:
+ - gocritic
+ text: (hugeParam:|rangeValCopy:)
+
+ - path: (cmd/[a-z]*/.*)\.go
+ linters:
+ - lll
+
+ - path: (validator/.*|code/.*|validator/.*|watcher/watcher/.*)
+ linters:
+ - gochecknoinits
+
+ - path: (internal/.*/options|internal/pump|pkg/log/options.go|internal/authzserver|tools/)
+ linters:
+ - tagliatelle
+
+ - path: (pkg/app/.*)\.go
+ linters:
+ - deadcode
+ - unused
+ - varcheck
+ - forbidigo
+
+ # Exclude some staticcheck messages
+ - linters:
+ - staticcheck
+ text: "SA9003:"
+
+ # Exclude lll issues for long lines with go:generate
+ - linters:
+ - lll
+ source: "^//go:generate "
+
+ # Independently from option `exclude` we use default exclude patterns,
+ # it can be disabled by this option. To list all
+ # excluded by default patterns execute `golangci-lint run --help`.
+ # Default value for this option is true.
+ exclude-use-default: true
+
+ # The default value is false. If set to true exclude and exclude-rules
+ # regular expressions become case sensitive.
+ exclude-case-sensitive: false
+
+ # The list of ids of default excludes to include or disable. By default it's empty.
+ include:
+ - EXC0002 # disable excluding of issues about comments from golint
+
+ # Maximum issues count per one linter. Set to 0 to disable. Default is 50.
+ max-issues-per-linter: 0
+
+ # Maximum count of issues with the same text. Set to 0 to disable. Default is 3.
+ max-same-issues: 0
+
+ # Show only new issues: if there are unstaged changes or untracked files,
+ # only those changes are analyzed, else only changes in HEAD~ are analyzed.
+ # It's a super-useful option for integration of golangci-lint into existing
+ # large codebase. It's not practical to fix all existing issues at the moment
+ # of integration: much better don't allow issues in new code.
+ # Default is false.
+ new: false
+
+ # Show only new issues created after git revision `REV`
+ # new-from-rev: REV
+
+ # Show only new issues created in git patch with set file path.
+ #new-from-patch: path/to/patch/file
+
+ # Fix found issues (if it's supported by the linter)
+ fix: true
+
+severity:
+ # Default value is empty string.
+ # Set the default severity for issues. If severity rules are defined and the issues
+ # do not match or no severity is provided to the rule this will be the default
+ # severity applied. Severities should match the supported severity names of the
+ # selected out format.
+ # - Code climate: https://docs.codeclimate.com/docs/issues#issue-severity
+ # - Checkstyle: https://checkstyle.sourceforge.io/property_types.html#severity
+ # - Github: https://help.github.com/en/actions/reference/workflow-commands-for-github-actions#setting-an-error-message
+ default-severity: error
+
+ # The default value is false.
+ # If set to true severity-rules regular expressions become case sensitive.
+ case-sensitive: false
+
+ # Default value is empty list.
+ # When a list of severity rules are provided, severity information will be added to lint
+ # issues. Severity rules have the same filtering capability as exclude rules except you
+ # are allowed to specify one matcher per severity rule.
+ # Only affects out formats that support setting severity information.
+ rules:
+ - linters:
+ - dupl
+ severity: info
\ No newline at end of file
diff --git a/go/chao-sdk-core/.goreleaser.yaml b/go/chao-sdk-core/.goreleaser.yaml
new file mode 100644
index 0000000..9fa65ae
--- /dev/null
+++ b/go/chao-sdk-core/.goreleaser.yaml
@@ -0,0 +1,223 @@
+# Copyright Š 2023 OpenIM open source community. All rights reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+# This is an example .goreleaser.yml file with some sensible defaults.
+# Make sure to check the documentation at https://goreleaser.com
+before:
+ hooks:
+ # You may remove this if you don't use go modules.
+ - go mod tidy
+ # you may remove this if you don't need go generate
+ - go generate ./...
+
+
+
+git:
+ # What should be used to sort tags when gathering the current and previous
+ # tags if there are more than one tag in the same commit.
+ #
+ # Default: '-version:refname'
+ tag_sort: -version:creatordate
+
+ # What should be used to specify prerelease suffix while sorting tags when gathering
+ # the current and previous tags if there are more than one tag in the same commit.
+ #
+ # Since: v1.17
+ prerelease_suffix: "-"
+
+ # Tags to be ignored by GoReleaser.
+ # This means that GoReleaser will not pick up tags that match any of the
+ # provided values as either previous or current tags.
+ #
+ # Templates: allowed.
+ # Since: v1.21.
+ ignore_tags:
+ - nightly
+ # - "{{.Env.IGNORE_TAG}}"
+
+report_sizes: true
+
+builds:
+ - binary: openim-sdk-core
+ id: openim-sdk-core
+ main: ./cmd/main.go
+ goos:
+ - linux
+ goarch:
+ - amd64
+ - arm64
+ goarm:
+ - "6"
+ - "7"
+ - id: openIM.wasm
+ main: wasm/cmd/main.go # æåŽ wasm ä¸ģæäģļ莝åž
+ binary: openIM.wasm
+ ldflags: "-s -w"
+ goos:
+ - js
+ goarch:
+ - wasm
+
+archives:
+ - format: tar.gz
+ # this name template makes the OS and Arch compatible with the results of uname.
+ name_template: >-
+ {{ .ProjectName }}_
+ {{- title .Os }}_
+ {{- if eq .Arch "amd64" }}x86_64
+ {{- else if eq .Arch "386" }}i386
+ {{- else }}{{ .Arch }}{{ end }}
+ {{- if .Arm }}v{{ .Arm }}{{ end }}
+ # use zip for windows archives
+ files:
+ - LICENSE
+ - README.md
+ # a more complete example, check the globbing deep dive below
+ - src: "*.md"
+ dst: docs
+
+ # Strip parent folders when adding files to the archive.
+ strip_parent: true
+
+ # File info.
+ # Not all fields are supported by all formats available formats.
+ #
+ # Default: copied from the source file
+ info:
+ # Templates: allowed (since v1.14)
+ owner: root
+
+ # Templates: allowed (since v1.14)
+ group: root
+
+ # Must be in time.RFC3339Nano format.
+ #
+ # Templates: allowed (since v1.14)
+ mtime: "{{ .CommitDate }}"
+
+ # File mode.
+ mode: 0644
+
+ format_overrides:
+ - goos: windows
+ format: zip
+
+changelog:
+ sort: asc
+ use: github
+ filters:
+ exclude:
+ - "^test:"
+ - "^chore"
+ - "merge conflict"
+ - Merge pull request
+ - Merge remote-tracking branch
+ - Merge branch
+ - go mod tidy
+ groups:
+ - title: Dependency updates
+ regexp: '^.*?(feat|fix)\(deps\)!?:.+$'
+ order: 300
+ - title: "New Features"
+ regexp: '^.*?feat(\([[:word:]]+\))??!?:.+$'
+ order: 100
+ - title: "Security updates"
+ regexp: '^.*?sec(\([[:word:]]+\))??!?:.+$'
+ order: 150
+ - title: "Bug fixes"
+ regexp: '^.*?fix(\([[:word:]]+\))??!?:.+$'
+ order: 200
+ - title: "Documentation updates"
+ regexp: ^.*?doc(\([[:word:]]+\))??!?:.+$
+ order: 400
+ - title: "Build process updates"
+ regexp: ^.*?build(\([[:word:]]+\))??!?:.+$
+ order: 400
+ - title: Other work
+ order: 9999
+
+
+nfpms:
+ - id: packages
+ builds:
+ - openim-sdk-core
+ - openIM.wasm
+ # Your app's vendor.
+ vendor: OpenIMSDK
+ homepage: https://github.com/openimsdk/openim-sdk-core
+ maintainer: kubbot
+ description: |-
+ Auto sync github labels
+ kubbot && openimbot
+ license: Apache-2.0
+ formats:
+ - apk
+ - deb
+ - rpm
+ - termux.deb # Since: v1.11
+ - archlinux # Since: v1.13
+ dependencies:
+ - git
+ recommends:
+ - golang
+
+
+# The lines beneath this are called `modelines`. See `:help modeline`
+# Feel free to remove those if you don't want/use them.
+# yaml-language-server: $schema=https://goreleaser.com/static/schema.json
+# vim: set ts=2 sw=2 tw=0 fo=cnqoj
+
+# Default: './dist'
+dist: ./_output/dist
+
+# .goreleaser.yaml
+milestones:
+ # You can have multiple milestone configs
+ -
+ # Repository for the milestone
+ # Default is extracted from the origin remote URL
+ repo:
+ owner: user
+ name: repo
+
+ # Whether to close the milestone
+ close: true
+
+ # Fail release on errors, such as missing milestone.
+ fail_on_error: false
+
+ # Name of the milestone
+ #
+ # Default: '{{ .Tag }}'
+ name_template: "Current Release"
+
+# publishers:
+# - name: "fury.io"
+# ids:
+# - packages
+# dir: "{{ dir .ArtifactPath }}"
+# cmd: |
+# bash -c '
+# if [[ "{{ .Tag }}" =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
+# curl -F package=@{{ .ArtifactName }} https://{{ .Env.FURY_TOKEN }}@push.fury.io/{{ .Env.USERNAME }}/
+# else
+# echo "Skipping deployment: Non-production release detected"
+# fi'
+
+checksum:
+ name_template: "{{ .ProjectName }}_checksums.txt"
+ algorithm: sha256
+
+release:
+ prerelease: auto
diff --git a/go/chao-sdk-core/CHANGELOG/.chglog/CHANGELOG.tpl.md b/go/chao-sdk-core/CHANGELOG/.chglog/CHANGELOG.tpl.md
new file mode 100644
index 0000000..100a29e
--- /dev/null
+++ b/go/chao-sdk-core/CHANGELOG/.chglog/CHANGELOG.tpl.md
@@ -0,0 +1,62 @@
+# Version logging for OpenIM
+
+
+
+
+
+{{ if .Versions -}}
+
+## [Unreleased]
+
+{{ if .Unreleased.CommitGroups -}}
+{{ range .Unreleased.CommitGroups -}}
+### {{ .Title }}
+{{ range .Commits -}}
+- {{ if .Scope }}**{{ .Scope }}:** {{ end }}{{ .Subject }}
+{{ end }}
+{{ end -}}
+{{ end -}}
+{{ end -}}
+
+{{ range .Versions }}
+
+## {{ if .Tag.Previous }}[{{ .Tag.Name }}]{{ else }}{{ .Tag.Name }}{{ end }} - {{ datetime "2006-01-02" .Tag.Date }}
+{{ range .CommitGroups -}}
+### {{ .Title }}
+{{ range .Commits -}}
+- {{ if .Scope }}**{{ .Scope }}:** {{ end }}{{ .Subject }}
+{{ end }}
+{{ end -}}
+
+{{- if .RevertCommits -}}
+### Reverts
+{{ range .RevertCommits -}}
+- {{ .Revert.Header }}
+{{ end }}
+{{ end -}}
+
+{{- if .MergeCommits -}}
+### Pull Requests
+{{ range .MergeCommits -}}
+- {{ .Header }}
+{{ end }}
+{{ end -}}
+
+{{- if .NoteGroups -}}
+{{ range .NoteGroups -}}
+### {{ .Title }}
+{{ range .Notes }}
+{{ .Body }}
+{{ end }}
+{{ end -}}
+{{ end -}}
+{{ end -}}
+
+{{- if .Versions }}
+[Unreleased]: {{ .Info.RepositoryURL }}/compare/{{ $latest := index .Versions 0 }}{{ $latest.Tag.Name }}...HEAD
+{{ range .Versions -}}
+{{ if .Tag.Previous -}}
+[{{ .Tag.Name }}]: {{ $.Info.RepositoryURL }}/compare/{{ .Tag.Previous.Name }}...{{ .Tag.Name }}
+{{ end -}}
+{{ end -}}
+{{ end -}}
\ No newline at end of file
diff --git a/go/chao-sdk-core/CHANGELOG/.chglog/config.yml b/go/chao-sdk-core/CHANGELOG/.chglog/config.yml
new file mode 100644
index 0000000..2901930
--- /dev/null
+++ b/go/chao-sdk-core/CHANGELOG/.chglog/config.yml
@@ -0,0 +1,81 @@
+# Copyright Š 2023 OpenIM SDK. All rights reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+bin: git
+style: github
+template: CHANGELOG.tpl.md
+info:
+ title: CHANGELOG
+ repository_url: https://github.com/openimsdk/openim-sdk-core
+options:
+ tag_filter_pattern: '^v'
+ sort: "date"
+
+ commits:
+ filters:
+ Type:
+ - feat
+ - fix
+ - perf
+ - refactor
+ - docs
+ - test
+ - chore
+ - ci
+ - build
+ sort_by: Scope
+
+ commit_groups:
+ group_by: Type
+ sort_by: Title
+ title_order:
+ - feat
+ - fix
+ - perf
+ - refactor
+ - docs
+ - test
+ - chore
+ - ci
+ - build
+ title_maps:
+ feat: Features
+
+ header:
+ pattern: ""
+ pattern_maps:
+ - PropName
+
+ issues:
+ prefix:
+ - #
+
+ refs:
+ actions:
+ - Closes
+ - Fixes
+
+ merges:
+ pattern: "^Merge branch '(\\w+)'$"
+ pattern_maps:
+ - Source
+
+ reverts:
+ pattern: "^Revert \"([\\s\\S]*)\"$"
+ pattern_maps:
+ - Header
+
+ notes:
+ keywords:
+ - BREAKING CHANGE
\ No newline at end of file
diff --git a/go/chao-sdk-core/CHANGELOG/CHANGELOG-1.0.md b/go/chao-sdk-core/CHANGELOG/CHANGELOG-1.0.md
new file mode 100644
index 0000000..52983b3
--- /dev/null
+++ b/go/chao-sdk-core/CHANGELOG/CHANGELOG-1.0.md
@@ -0,0 +1,42 @@
+# Version logging for OpenIM
+
+
+
+
+
+
+## [Unreleased]
+
+
+
+## [v1.0.7] - 2021-12-10
+
+
+## [v1.0.6] - 2021-12-03
+
+
+## [v1.0.5] - 2021-11-25
+
+
+## [v1.0.4] - 2021-11-12
+
+
+## [v1.0.3] - 2021-11-05
+
+
+## [v1.0.2] - 2021-11-04
+
+
+## [v1.0.1] - 2021-11-03
+
+
+## v1.0.0 - 2021-10-28
+
+[Unreleased]: https://github.com/openimsdk/openim-sdk-core/compare/v1.0.7...HEAD
+[v1.0.7]: https://github.com/openimsdk/openim-sdk-core/compare/v1.0.6...v1.0.7
+[v1.0.6]: https://github.com/openimsdk/openim-sdk-core/compare/v1.0.5...v1.0.6
+[v1.0.5]: https://github.com/openimsdk/openim-sdk-core/compare/v1.0.4...v1.0.5
+[v1.0.4]: https://github.com/openimsdk/openim-sdk-core/compare/v1.0.3...v1.0.4
+[v1.0.3]: https://github.com/openimsdk/openim-sdk-core/compare/v1.0.2...v1.0.3
+[v1.0.2]: https://github.com/openimsdk/openim-sdk-core/compare/v1.0.1...v1.0.2
+[v1.0.1]: https://github.com/openimsdk/openim-sdk-core/compare/v1.0.0...v1.0.1
diff --git a/go/chao-sdk-core/CHANGELOG/CHANGELOG-1.1.md b/go/chao-sdk-core/CHANGELOG/CHANGELOG-1.1.md
new file mode 100644
index 0000000..e69de29
diff --git a/go/chao-sdk-core/CHANGELOG/CHANGELOG-2.0.md b/go/chao-sdk-core/CHANGELOG/CHANGELOG-2.0.md
new file mode 100644
index 0000000..76bef90
--- /dev/null
+++ b/go/chao-sdk-core/CHANGELOG/CHANGELOG-2.0.md
@@ -0,0 +1,92 @@
+# Version logging for OpenIM
+
+
+
+
+
+
+## [Unreleased]
+
+
+
+## [v2.3.3] - 2022-09-16
+
+
+## [v2.3.2] - 2022-09-09
+
+
+## [v2.3.0-rc0] - 2022-07-15
+
+
+## [v2.2.0] - 2022-07-01
+### Pull Requests
+- Merge branch 'tuoyun'
+
+
+
+## [v2.1.0] - 2022-06-17
+
+
+## [v2.0.9] - 2022-05-11
+
+
+## [v2.0.8] - 2022-04-29
+### Pull Requests
+- Merge branch 'tuoyun'
+
+
+
+## [v2.0.7] - 2022-04-22
+
+
+## [v2.0.6] - 2022-04-08
+
+
+## [v2.0.5] - 2022-04-01
+### Pull Requests
+- Merge branch 'tuoyun'
+
+
+
+## [v2.0.4] - 2022-03-25
+
+
+## [v2.0.3] - 2022-03-18
+### Pull Requests
+- Merge branch 'tuoyun'
+- Merge branch 'tuoyun'
+- Merge branch 'tuoyun'
+- Merge branch 'tuoyun'
+- Merge branch 'tuoyun'
+
+
+
+## [v2.0.2] - 2022-02-24
+
+
+## [v2.0.1] - 2022-02-24
+### Pull Requests
+- Merge branch 'tuoyun'
+- Merge branch 'tuoyun'
+- Merge branch 'tuoyun'
+- Merge branch 'tuoyun'
+
+
+
+## v2.0.0 - 2022-02-23
+
+[Unreleased]: https://github.com/openimsdk/openim-sdk-core/compare/v2.3.3...HEAD
+[v2.3.3]: https://github.com/openimsdk/openim-sdk-core/compare/v2.3.2...v2.3.3
+[v2.3.2]: https://github.com/openimsdk/openim-sdk-core/compare/v2.3.0-rc0...v2.3.2
+[v2.3.0-rc0]: https://github.com/openimsdk/openim-sdk-core/compare/v2.2.0...v2.3.0-rc0
+[v2.2.0]: https://github.com/openimsdk/openim-sdk-core/compare/v2.1.0...v2.2.0
+[v2.1.0]: https://github.com/openimsdk/openim-sdk-core/compare/v2.0.9...v2.1.0
+[v2.0.9]: https://github.com/openimsdk/openim-sdk-core/compare/v2.0.8...v2.0.9
+[v2.0.8]: https://github.com/openimsdk/openim-sdk-core/compare/v2.0.7...v2.0.8
+[v2.0.7]: https://github.com/openimsdk/openim-sdk-core/compare/v2.0.6...v2.0.7
+[v2.0.6]: https://github.com/openimsdk/openim-sdk-core/compare/v2.0.5...v2.0.6
+[v2.0.5]: https://github.com/openimsdk/openim-sdk-core/compare/v2.0.4...v2.0.5
+[v2.0.4]: https://github.com/openimsdk/openim-sdk-core/compare/v2.0.3...v2.0.4
+[v2.0.3]: https://github.com/openimsdk/openim-sdk-core/compare/v2.0.2...v2.0.3
+[v2.0.2]: https://github.com/openimsdk/openim-sdk-core/compare/v2.0.1...v2.0.2
+[v2.0.1]: https://github.com/openimsdk/openim-sdk-core/compare/v2.0.0...v2.0.1
diff --git a/go/chao-sdk-core/CHANGELOG/CHANGELOG-2.1.md b/go/chao-sdk-core/CHANGELOG/CHANGELOG-2.1.md
new file mode 100644
index 0000000..83a4cda
--- /dev/null
+++ b/go/chao-sdk-core/CHANGELOG/CHANGELOG-2.1.md
@@ -0,0 +1,23 @@
+# Version logging for OpenIM
+
+
+
+
+
+
+## [Unreleased]
+
+
+
+## v2.1.0 - 2022-06-17
+### Pull Requests
+- Merge branch 'tuoyun'
+- Merge branch 'tuoyun'
+- Merge branch 'tuoyun'
+- Merge branch 'tuoyun'
+- Merge branch 'tuoyun'
+- Merge branch 'tuoyun'
+- Merge branch 'tuoyun'
+
+
+[Unreleased]: https://github.com/openimsdk/openim-sdk-core/compare/v2.1.0...HEAD
diff --git a/go/chao-sdk-core/CHANGELOG/CHANGELOG-2.2.md b/go/chao-sdk-core/CHANGELOG/CHANGELOG-2.2.md
new file mode 100644
index 0000000..7cd31b1
--- /dev/null
+++ b/go/chao-sdk-core/CHANGELOG/CHANGELOG-2.2.md
@@ -0,0 +1,24 @@
+# Version logging for OpenIM
+
+
+
+
+
+
+## [Unreleased]
+
+
+
+## v2.2.0 - 2022-07-01
+### Pull Requests
+- Merge branch 'tuoyun'
+- Merge branch 'tuoyun'
+- Merge branch 'tuoyun'
+- Merge branch 'tuoyun'
+- Merge branch 'tuoyun'
+- Merge branch 'tuoyun'
+- Merge branch 'tuoyun'
+- Merge branch 'tuoyun'
+
+
+[Unreleased]: https://github.com/openimsdk/openim-sdk-core/compare/v2.2.0...HEAD
diff --git a/go/chao-sdk-core/CHANGELOG/CHANGELOG-2.3.md b/go/chao-sdk-core/CHANGELOG/CHANGELOG-2.3.md
new file mode 100644
index 0000000..77833bf
--- /dev/null
+++ b/go/chao-sdk-core/CHANGELOG/CHANGELOG-2.3.md
@@ -0,0 +1,32 @@
+# Version logging for OpenIM
+
+
+
+
+
+
+## [Unreleased]
+
+
+
+## [v2.3.3] - 2022-09-16
+
+
+## [v2.3.2] - 2022-09-09
+
+
+## v2.3.0-rc0 - 2022-07-15
+### Pull Requests
+- Merge branch 'tuoyun'
+- Merge branch 'tuoyun'
+- Merge branch 'tuoyun'
+- Merge branch 'tuoyun'
+- Merge branch 'tuoyun'
+- Merge branch 'tuoyun'
+- Merge branch 'tuoyun'
+- Merge branch 'tuoyun'
+
+
+[Unreleased]: https://github.com/openimsdk/openim-sdk-core/compare/v2.3.3...HEAD
+[v2.3.3]: https://github.com/openimsdk/openim-sdk-core/compare/v2.3.2...v2.3.3
+[v2.3.2]: https://github.com/openimsdk/openim-sdk-core/compare/v2.3.0-rc0...v2.3.2
diff --git a/go/chao-sdk-core/CHANGELOG/CHANGELOG-2.9.md b/go/chao-sdk-core/CHANGELOG/CHANGELOG-2.9.md
new file mode 100644
index 0000000..1463f52
--- /dev/null
+++ b/go/chao-sdk-core/CHANGELOG/CHANGELOG-2.9.md
@@ -0,0 +1,52 @@
+# Version logging for OpenIM
+
+
+
+- [Version logging for OpenIM](#version-logging-for-openim)
+ - [Unreleased](#unreleased)
+ - [v2.9.0+1.839643f - 2023-07-07](#v2901839643f---2023-07-07)
+ - [v2.9.0+2.35f07fe - 2023-07-06](#v290235f07fe---2023-07-06)
+ - [v2.9.0+1.b5072b1 - 2023-07-05](#v2901b5072b1---2023-07-05)
+ - [v2.9.0+3.2667a3a - 2023-07-05](#v29032667a3a---2023-07-05)
+ - [v2.9.0+7.04818ca - 2023-07-05](#v290704818ca---2023-07-05)
+ - [v2.9.0 - 2023-07-04](#v290---2023-07-04)
+ - [Reverts](#reverts)
+ - [Pull Requests](#pull-requests)
+
+
+
+
+
+## [Unreleased]
+
+
+
+## [v2.9.0+1.839643f] - 2023-07-07
+
+
+## [v2.9.0+2.35f07fe] - 2023-07-06
+
+
+## [v2.9.0+1.b5072b1] - 2023-07-05
+
+
+## [v2.9.0+3.2667a3a] - 2023-07-05
+
+
+## [v2.9.0+7.04818ca] - 2023-07-05
+
+
+## v2.9.0 - 2023-07-04
+### Reverts
+- update etcd to v3.5.2 ([#206](https://github.com/openimsdk/Open-IM-Server/issues/206))
+
+### Pull Requests
+- Merge branch 'tuoyun'
+
+
+[Unreleased]: https://github.com/openimsdk/Open-IM-Server/compare/v2.9.0+1.839643f...HEAD
+[v2.9.0+1.839643f]: https://github.com/openimsdk/Open-IM-Server/compare/v2.9.0+2.35f07fe...v2.9.0+1.839643f
+[v2.9.0+2.35f07fe]: https://github.com/openimsdk/Open-IM-Server/compare/v2.9.0+1.b5072b1...v2.9.0+2.35f07fe
+[v2.9.0+1.b5072b1]: https://github.com/openimsdk/Open-IM-Server/compare/v2.9.0+3.2667a3a...v2.9.0+1.b5072b1
+[v2.9.0+3.2667a3a]: https://github.com/openimsdk/Open-IM-Server/compare/v2.9.0+7.04818ca...v2.9.0+3.2667a3a
+[v2.9.0+7.04818ca]: https://github.com/openimsdk/Open-IM-Server/compare/v2.9.0...v2.9.0+7.04818ca
diff --git a/go/chao-sdk-core/CHANGELOG/CHANGELOG-3.0.md b/go/chao-sdk-core/CHANGELOG/CHANGELOG-3.0.md
new file mode 100644
index 0000000..4b12793
--- /dev/null
+++ b/go/chao-sdk-core/CHANGELOG/CHANGELOG-3.0.md
@@ -0,0 +1,128 @@
+# Version logging for OpenIM
+
+
+
+
+
+
+## [Unreleased]
+
+
+
+## [v3.0.0-rc.1] - 2023-07-13
+
+
+## [v2.3.3] - 2022-09-16
+
+
+## [v2.3.2] - 2022-09-09
+
+
+## [v2.3.0-rc0] - 2022-07-15
+
+
+## [v2.2.0] - 2022-07-01
+### Pull Requests
+- Merge branch 'tuoyun'
+
+
+
+## [v2.1.0] - 2022-06-17
+
+
+## [v2.0.9] - 2022-05-11
+
+
+## [v2.0.8] - 2022-04-29
+### Pull Requests
+- Merge branch 'tuoyun'
+
+
+
+## [v2.0.7] - 2022-04-22
+
+
+## [v2.0.6] - 2022-04-08
+
+
+## [v2.0.5] - 2022-04-01
+### Pull Requests
+- Merge branch 'tuoyun'
+
+
+
+## [v2.0.4] - 2022-03-25
+
+
+## [v2.0.3] - 2022-03-18
+### Pull Requests
+- Merge branch 'tuoyun'
+- Merge branch 'tuoyun'
+- Merge branch 'tuoyun'
+- Merge branch 'tuoyun'
+- Merge branch 'tuoyun'
+
+
+
+## [v2.0.2] - 2022-02-24
+
+
+## [v2.0.1] - 2022-02-24
+### Pull Requests
+- Merge branch 'tuoyun'
+- Merge branch 'tuoyun'
+- Merge branch 'tuoyun'
+- Merge branch 'tuoyun'
+
+
+
+## [v2.0.0] - 2022-02-23
+
+
+## [v1.0.7] - 2021-12-10
+
+
+## [v1.0.6] - 2021-12-03
+
+
+## [v1.0.5] - 2021-11-25
+
+
+## [v1.0.4] - 2021-11-12
+
+
+## [v1.0.3] - 2021-11-05
+
+
+## [v1.0.2] - 2021-11-04
+
+
+## [v1.0.1] - 2021-11-03
+
+
+## v1.0.0 - 2021-10-28
+
+[Unreleased]: https://github.com/openimsdk/openim-sdk-core/compare/v3.0.0-rc.1...HEAD
+[v3.0.0-rc.1]: https://github.com/openimsdk/openim-sdk-core/compare/v2.3.3...v3.0.0-rc.1
+[v2.3.3]: https://github.com/openimsdk/openim-sdk-core/compare/v2.3.2...v2.3.3
+[v2.3.2]: https://github.com/openimsdk/openim-sdk-core/compare/v2.3.0-rc0...v2.3.2
+[v2.3.0-rc0]: https://github.com/openimsdk/openim-sdk-core/compare/v2.2.0...v2.3.0-rc0
+[v2.2.0]: https://github.com/openimsdk/openim-sdk-core/compare/v2.1.0...v2.2.0
+[v2.1.0]: https://github.com/openimsdk/openim-sdk-core/compare/v2.0.9...v2.1.0
+[v2.0.9]: https://github.com/openimsdk/openim-sdk-core/compare/v2.0.8...v2.0.9
+[v2.0.8]: https://github.com/openimsdk/openim-sdk-core/compare/v2.0.7...v2.0.8
+[v2.0.7]: https://github.com/openimsdk/openim-sdk-core/compare/v2.0.6...v2.0.7
+[v2.0.6]: https://github.com/openimsdk/openim-sdk-core/compare/v2.0.5...v2.0.6
+[v2.0.5]: https://github.com/openimsdk/openim-sdk-core/compare/v2.0.4...v2.0.5
+[v2.0.4]: https://github.com/openimsdk/openim-sdk-core/compare/v2.0.3...v2.0.4
+[v2.0.3]: https://github.com/openimsdk/openim-sdk-core/compare/v2.0.2...v2.0.3
+[v2.0.2]: https://github.com/openimsdk/openim-sdk-core/compare/v2.0.1...v2.0.2
+[v2.0.1]: https://github.com/openimsdk/openim-sdk-core/compare/v2.0.0...v2.0.1
+[v2.0.0]: https://github.com/openimsdk/openim-sdk-core/compare/v1.0.7...v2.0.0
+[v1.0.7]: https://github.com/openimsdk/openim-sdk-core/compare/v1.0.6...v1.0.7
+[v1.0.6]: https://github.com/openimsdk/openim-sdk-core/compare/v1.0.5...v1.0.6
+[v1.0.5]: https://github.com/openimsdk/openim-sdk-core/compare/v1.0.4...v1.0.5
+[v1.0.4]: https://github.com/openimsdk/openim-sdk-core/compare/v1.0.3...v1.0.4
+[v1.0.3]: https://github.com/openimsdk/openim-sdk-core/compare/v1.0.2...v1.0.3
+[v1.0.2]: https://github.com/openimsdk/openim-sdk-core/compare/v1.0.1...v1.0.2
+[v1.0.1]: https://github.com/openimsdk/openim-sdk-core/compare/v1.0.0...v1.0.1
diff --git a/go/chao-sdk-core/CHANGELOG/CHANGELOG.md b/go/chao-sdk-core/CHANGELOG/CHANGELOG.md
new file mode 100644
index 0000000..b9bafd1
--- /dev/null
+++ b/go/chao-sdk-core/CHANGELOG/CHANGELOG.md
@@ -0,0 +1,104 @@
+# Changelog
+
+- [Changelog](#changelog)
+ - [command](#command)
+ - [create next tag](#create-next-tag)
+ - [Release version logs](#release-version-logs)
+ - [Introduction](#introduction)
+ - [Naming Format](#naming-format)
+ - [Examples](#examples)
+ - [Version Modifiers](#version-modifiers)
+ - [Versioning Strategy](#versioning-strategy)
+
+
+All notable changes to this project will be documented in this file.
+
++ [https://github.com/openimsdk/Open-IM-Server/releases](https://github.com/openimsdk/Open-IM-Server/releases)
+
+## command
+
+```bash
+git-chglog --tag-filter-pattern 'v2.0.*' -o CHANGELOG-2.0.md
+```
+
+## create next tag
+
+```bash
+git-chglog --next-tag 2.0.0 -o CHANGELOG.md
+git commit -am "release 2.0.0"
+git tag 2.0.0
+```
+
+| Query | Description | Example |
+| -------------- | ---------------------------------------------- | --------------------------- |
+| `..` | Commit contained in `` tags from ``. | `$ git-chglog 1.0.0..2.0.0` |
+| `..` | Commit from the `` to the latest tag. | `$ git-chglog 1.0.0..` |
+| `..` | Commit from the oldest tag to ``. | `$ git-chglog ..2.0.0` |
+| `` | Commit contained in ``. | `$ git-chglog 1.0.0` |
+
+
+## Release version logs
+
++ [OpenIM CHANGELOG-V1.0](CHANGELOG-1.0.md)
++ [OpenIM CHANGELOG-V2.0](CHANGELOG-2.0.md)
++ [OpenIM CHANGELOG-V2.1](CHANGELOG-2.1.md)
++ [OpenIM CHANGELOG-V2.2](CHANGELOG-2.2.md)
++ [OpenIM CHANGELOG-V2.3](CHANGELOG-2.3.md)
++ [OpenIM CHANGELOG-V2.9](CHANGELOG-2.9.md)
++ [OpenIM CHANGELOG-V3.0](CHANGELOG-3.0.md)
+
+## Introduction
+
+In both the open-source and closed-source software development communities, it is important to follow a consistent and understandable versioning scheme for software projects. This ensures clear communication of changes, compatibility, and stability across different releases. One widely adopted naming convention is the Semantic Versioning 2.0.0.
+
+## Naming Format
+
+The most common format for version numbers is as follows:
+
+```
+major.minor[.patch[.build]]
+```
+
+Let's take a closer look at each component:
+
+1. **Major Version**: This is the first number in the versioning scheme and indicates significant changes that may not be backward compatible (specific to each project).
+2. **Minor Version**: The second number signifies the addition of new features while maintaining backward compatibility.
+3. **Patch Version**: The third number represents bug fixes or code optimizations without introducing new features. It is generally backward compatible.
+4. **Build Version**: Typically an automatically generated number that increments with each code commit.
+
+## Examples
+
+Here are a few examples to illustrate the versioning scheme:
+
+1. `1.0`
+2. `2.14.0.1478`
+3. `3.2.1 build-354`
+
+## Version Modifiers
+
+Apart from the version numbers, there are also version modifiers used to indicate specific stages or statuses of a release. Some commonly used version modifiers include:
+
+- **alpha**: An internal testing version with numerous known bugs. It is primarily used for communication among developers.
+- **beta**: A testing version released to enthusiastic users for feedback and bug detection.
+- **rc (release candidate)**: The final testing version before the official release.
+- **ga (general availability)**: The initial stable release for public distribution.
+- **r/release** (or no modifier at all): The final released version intended for general users.
+- **lts (long-term support)**: Designates a version that will receive extended maintenance and bug fixes for a specified number of years.
+
+## Versioning Strategy
+
+To effectively manage version numbers, the following strategies are commonly employed:
+
+- The initial version of a project can be either `0.1` or `1.0`.
+- When fixing bugs, the patch version is incremented by 1.
+- When adding new features, the minor version is incremented by 1, and the patch version is reset to 0.
+- In the case of significant modifications, the major version is incremented by 1.
+- The build version is usually automatically generated by the compilation process and follows a defined format. It does not require manual control.
+
+By adhering to these strategies and guidelines, developers can maintain consistency and clarity in versioning their software projects. This enables users and collaborators to understand the nature of changes between different releases and ensure compatibility with their systems.
+
+(Note: Markdown formatting has been used to structure this article. Markdown is a lightweight markup language used to format text on platforms like GitHub.)
+
+------
+
+**Note**: The above article is based on the given content and aims to provide a Markdown-formatted English article explaining the naming conventions for software project versions, specifically focusing on the Semantic Versioning 2.0.0.
\ No newline at end of file
diff --git a/go/chao-sdk-core/CONTRIBUTING.md b/go/chao-sdk-core/CONTRIBUTING.md
new file mode 100644
index 0000000..b42bdba
--- /dev/null
+++ b/go/chao-sdk-core/CONTRIBUTING.md
@@ -0,0 +1,435 @@
+# Contributing to OpenIM
+
+So, you want to hack on OpenIM? Yay!
+
+First of all, thank you for considering contributing to our project! We appreciate your time and effort, and we value any contribution, whether it's reporting a bug, suggesting a new feature, or submitting a pull request.
+
+This document provides guidelines and best practices to help you contribute effectively.
+
+## đTopics
+
+- [What we expect of you](#What-we-expect-of-you)
+- [Code of Conduct](#Code-of-Conduct)
+- [Getting Started](#Getting-Started)
+- [Style and Specification](#Style-and-Specification)
+- [Engage to help anything](#Engage-to-help-anything)
+- [Release version](#Release-version)
+- [Contact Us](#Contact-Us)
+
+
+## What we expect of you
+
+We hope that anyone can join OpenIM , even if you are a student, writer, translator
+
+Please meet the minimum version of the Go language published in [go.mod](./go.mod). If you want to manage the Go language version, we provide tools to install [gvm](https://github.com/moovweb/gvm) in our [Makefile](./Makefile)
+
+You'd better use Linux as the development environment, Linux with [Makefile](./Makefile) can help you quickly build and test OpenIM project.
+
+If you are familiar with [Makefile](./Makefile) , you can easily see the clever design of the OpenIM Makefile. Storing the necessary tools such as golangci in the `/tools` directory can avoid some tool version issues.
+
+The [Makefile](./Makefile) is for every developer, even if you don't know how to use the Makefile tool, don't worry, we provide two great commands to get you up to speed with the Makefile architecture, `make help` and `make help-all`, it can reduce problems of the developing environment.
+
+
+## Code of Conduct
+
+#### Code and doc contribution
+
+Every action to make project OpenIM better is encouraged. On GitHub, every improvement for OpenIM could be via a [PR](https://github.com/openimsdk/openim-sdk-core/pulls) (short for pull request).
+
++ If you find a typo, try to fix it!
++ If you find a bug, try to fix it!
++ If you find some redundant codes, try to remove them!
++ If you find some test cases missing, try to add them!
++ If you could enhance a feature, please **DO NOT** hesitate!
++ If you find code implicit, try to add comments to make it clear!
++ If you find code ugly, try to refactor that!
++ If you can help to improve documents, it could not be better!
++ If you find document incorrect, just do it and fix that!
++ ...
+
+#### Where should I start?
+
+Getting good at GitHub is the first step, we have a [list of labes](https://github.com/openimsdk/openim-sdk-core/labels) and reading some of the [common tags](https://github.com/openimsdk/openim-sdk-core/labels?sort=count-desc) helps us get involved in the community quickly.GitHub allows you to filter out types of issues and pull requests, which helps you discover items in need of triaging. This table includes some predetermined searches for convenience:
+
+| Search | What it sorts |
+| ------------------------------------------------------------ | ------------------------------------------------------- |
+| [created-asc](https://github.com/openimsdk/openim-sdk-core/issues?q=is%3Aissue+is%3Aopen+sort%3Acreated-asc) | Untriaged issues by age |
+| [needs-triage](https://github.com/openimsdk/openim-sdk-core/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc+no%3Alabel) | Issues that need to be assigned to a Labels |
+| [`is:open is:issue`](https://github.com/openimsdk/openim-sdk-core/issues?q=is%3Aopen+is%3Aissue+sort%3Aupdated-desc) | Newest incoming issues |
+| [comments-desc](https://github.com/openimsdk/openim-sdk-core/issues?q=is%3Aissue+is%3Aopen+sort%3Acomments-desc) | Busiest untriaged issues, sorted by # of comments |
+| [comments-asc](https://github.com/openimsdk/openim-sdk-core/issues?q=is%3Aissue+is%3Aopen+sort%3Acomments-asc) | Issues that need more attention, based on # of comments |
+
+We suggest preparing your triage by filtering out the oldest, unlabelled issues and pull requests first.
+
+1. If you are new to the project, don't know how to contribute OpenIM, please check out the [good first issue](https://github.com/openimsdk/openim-sdk-core/issues?q=is%3Aopen+label%3A"good+first+issue"+sort%3Aupdated-desc) label and [help wanted](https://github.com/openimsdk/openim-sdk-core/issues?q=is%3Aopen+is%3Aissue+label%3A"help+wanted"+sort%3Aupdated-desc).
+2. You should be good at filtering the OpenIM issue tags and finding the ones you like, such as [RFC](https://github.com/openimsdk/openim-sdk-core/issues?q=is%3Aissue+is%3Aopen+RFC+label%3ARFC) for big initiatives, features for [feature](https://github.com/openimsdk/openim-sdk-core/issues?q=is%3Aissue+label%3Akind%2Ffeature+sort%3Aupdated-desc+) proposals, and [bug](https://github.com/openimsdk/openim-sdk-core/issues?q=is%3Aissue+label%3Akind%2Fbug+sort%3Aupdated-desc+) fixes.
+3. If you are looking for something to work on, check out our [open issues](https://github.com/openimsdk/openim-sdk-core/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc).
+4. If you have an idea for a new feature, please [open an issue](https://github.com/openimsdk/openim-sdk-core/issues/new/choose), and we can discuss it.
+
+> **Note**
+> Reply to `/assign` or `/assign @yourself` with a question you wish to resolve, and we'll assign the question to you and your name will be listed under `Assignees`
+
+
+
+#### Design documents
+
+For any substantial design, there should be a well-crafted design document. This document is not just a simple record, but also a detailed description and manifestation, which can help team members better understand the design thinking and grasp the design direction. In the process of writing the design document, we can choose to use tools such as `Google Docs` or `Notion`, and even mark **RFC** in [issues](https://github.com/openimsdk/openim-sdk-core/issues?q=is%3Aissue+is%3Aopen+RFC+label%3ARFC) or [discussions](https://github.com/openimsdk/openim-sdk-core/discussions) for better collaboration. Of course, after completing the design document, we should also add it to our [Shared Drive](https://drive.google.com/drive/) and notify the appropriate working group to let everyone know of its existence. Only by doing so can we maximize the effectiveness of the design document and provide strong support for the smooth progress of the project.
+
+Anybody can access the shared Drive for reading. To get access to comment. Once you've done that, head to the [shared Drive](https://drive.google.com/) and behold all the docs.
+
+In addition to that, we'd love to invite you to [Join Our Slack](https://join.slack.com/t/openimsdk/shared_invite/zt-1tmoj26uf-_FDy3dowVHBiGvLk9e5Xkg) where you can play with your imagination, tell us what you're working on, and get a quick response.
+
+When documenting a new design, we recommend a 2-step approach:
+
+1. Use the short-form **RFC** template to outline your ideas and get early feedback.
+2. Once you have received sufficient feedback and consensus, you may use the **longer-form design doc template** to specify and discuss your design in more details.
+
+**In order to contribute a feature to OpenIM you'll need to go through the following steps:**
+
++ Discuss your idea with the appropriate [working groups](https://join.slack.com/t/openimsdk/shared_invite/zt-1tmoj26uf-_FDy3dowVHBiGvLk9e5Xkg) on the working group's Slack channel.
++ Once there is general agreement that the feature is useful, create a GitHub issue to track the discussion. The issue should include information about the requirements and use cases that it is trying to address.
++ Include a discussion of the proposed design and technical details of the implementation in the issue.
+
+But keep in mind that there is no guarantee of it being accepted and so it is usually best to get agreement on the **idea/design** before time is spent coding it. However, sometimes seeing the exact code change can help focus discussions, so the choice is up to you.
+
+
+
+## Getting Started
+> **Note**
+>
+> A simple example allows you to quickly contribute your first **PR** to OpenIM.
+To propose PR for the OpenIM item, we assume you have registered a GitHub ID. Then you could finish the preparation in the following steps:
+
+1. **Fork** the repository(OpenIM)
+
+2. **CLONE** your own repository to master locally. Use `git clone https://github.com//OpenIM.git` to clone repository to your local machine. Then you can create new branches to finish the change you wish to make.
+
+3. **Set Remote** upstream to be `https://github.com/openimsdk/openim-sdk-core.git` using the following two commands:
+
+ ```bash
+ ⯠git remote add upstream https://github.com/openimsdk/openim-sdk-core.git
+ ⯠git remote set-url --push upstream no-pushing
+ ```
+
+ With this remote setting, you can check your **git remote configuration** like this:
+
+ ```go
+ ⯠git remote -v
+ origin https://github.com//OpenIM.git (fetch)
+ origin https://github.com//OpenIM.git (push)
+ upstream https://github.com/openimsdk/openim-sdk-core.git (fetch)
+ upstream no-pushing (push)
+ ```
+
+ Adding this, we can easily synchronize local branches with upstream branches.
+
+4. Create a new branch for your changes (use a descriptive name, such as `fix-bug-123` or `add-new-feature`).
+
+ ```bash
+ ⯠cd OpenIM
+ ⯠git fetch upstream
+ ⯠git checkout upstream/main
+ ```
+
+ > **Note**
+ >
+ > Please don't use `git pull` instead of the above `fetch` and `rebase`. Since `git pull` executes a merge, it creates merge commits. These make the commit history messy and violate the principle that commits ought to be individually understandable and useful.
+ >
+ > You might also consider changing your `.git/config` file via `git config branch.autoSetupRebase always` to change the behavior of `git pull`, or another non-merge option such as `git pull --rebase`.
+
+ Create a new branch:
+
+ ```bash
+ ⯠git checkout -b
+ ```
+
+ Make any change on the `new-branch` then use [Makefile](./Makefile) **build** and **test** your codes.
+
+5. **Commit your changes** to your local branch, lint before committing and commit with sign-off
+
+ ```bash
+ ⯠git rebase upstream/main
+ ⯠make lint # golangci-lint run -c .golangci.yml
+ ⯠git add -A # add changes to staging
+ ⯠git commit -a -s -m "fix: message for your changes" # -s adds a Signed-off-by trailer
+ ```
+
+6. **Push your branch** to your forked repository, it is recommended to have only one commit for a **PR**.
+
+ ```bash
+ # sync up with upstream
+ ⯠git fetch upstream
+ ⯠git rebase upstream/main
+ ⯠git rebase -i # rebase with interactive mode to `squash` your commits into a single one
+ ⯠git push # push to the remote repository, if it's a first time push, run git push --set-upstream origin
+ ```
+
+ You can also use `git commit -s --amend && git push -f` to update modifications on the previous commit.
+
+ If you have developed multiple features in the same branch, you should create PR separately by rebasing to the main branch between each push:
+
+ ```bash
+ # create new branch, for example git checkout -b feature/infra
+ ⯠git checkout -b
+ # update some code, feature1
+ ⯠git add -A
+ ⯠git commit -m -s "feat: feature one"
+ ⯠git push # if it's first time push, run git push --set-upstream origin
+ # then create pull request, and merge
+ # update some new feature, feature2, rebase main branch first.
+ ⯠git rebase upstream/main # rebase the current branch to upstream/main branch
+ ⯠git add -A
+ ⯠git commit -m -s "feat: feature two"
+ # then create pull request, and merge
+ ```
+
+7. **Open a pull request** to `OpenIMSDK/openim-sdk-core:main`
+
+ It is recommended to review your changes before filing a pull request. Check if your code doesn't conflict with the main branch and no redundant code is included.
+
+
+
+## Style and Specification
+
+We divide the problem into security and general problems:
+
+#### Reporting security issues
+
+Security issues are always treated seriously. As our usual principle, we discourage anyone to spread security issues. If you find a security issue of OpenIM, please do not discuss it in public and even do not open a public issue.
+
+Instead we encourage you to send us a private email to đŽ[winxu81@gmail.com](https://mail.google.com/mail/u/0/?fs=1&tf=cm&to=winxu81@gmail.com) to report this.
+
+#### Reporting general issues
+
+To be honest, we regard every user of OpenIMas a very kind contributor. After experiencing OpenIM, you may have some feedback for the project. Then feel free to open an issue via [NEW ISSUE](https://github.com/openimsdk/openim-sdk-core/issues/new/choose).
+
+Since we collaborate project OpenIM in a distributed way, we appreciate **WELL-WRITTEN**, **DETAILED**, **EXPLICIT** issue reports. To make the communication more efficient, we wish everyone could search if your issue is an existing one in the searching list. If you find it existing, please add your details in comments under the existing issue instead of opening a brand new one.
+
+To make the issue details as standard as possible, we setup an [ISSUE TEMPLATE](https://github.com/openimsdk/.github/tree/main/.github/ISSUE_TEMPLATE) for issue reporters. You can find three kinds of issue templates there: question, bug report and feature request. Please **BE SURE** to follow the instructions to fill fields in template.
+
+**There are a lot of cases when you could open an issue:**
+
++ bug report
++ feature request
++ OpenIM performance issues
++ feature proposal
++ feature design
++ help wanted
++ doc incomplete
++ test improvement
++ any questions on OpenIM project
++ and so on
+
+Also, we must be reminded when submitting a new question about OpenIM, please remember to remove the sensitive data from your post. Sensitive data could be password, secret key, network locations, private business data and so on.
+
+> **Note**
+> We have requirements for **Commits**, **PR**, **Docs**, and good standards help us collaborate better and understand what you're doing.
+
+#### Commit Rules
+
+Actually in OpenIM, we take two rules serious when committing:
+
+**đĨ Commit Message:**
+
+Commit message could help reviewers better understand what the purpose of submitted PR is. It could help accelerate the code review procedure as well. We encourage contributors to use **EXPLICIT** commit message rather than ambiguous message. In general, we advocate the following commit message type:
+
+We use [Semantic Commits](https://www.conventionalcommits.org/en/v1.0.0/) to make it easier to understand what a commit does and to build pretty changelogs. Please use the following prefixes for your commits:
+
++ `docs: xxxx`. For example, "docs: add docs about storage installation".
++ `feature: xxxx`.For example, "feature: make result show in sorted order".
++ `bugfix: xxxx`. For example, "bugfix: fix panic when input nil parameter".
++ `style: xxxx`. For example, "style: format the code style of Constants.java".
++ `refactor: xxxx.` For example, "refactor: simplify to make codes more readable".
++ `test: xxx`. For example, "test: add unit test case for func InsertIntoArray".
++ `chore: xxx.` For example, "chore: integrate travis-ci". It's the type of mantainance change.
++ other readable and explicit expression ways.
+
+On the other side, we discourage contributors from committing message like the following ways:
+
++ ~~fix bug~~
++ ~~update~~
++ ~~add doc~~
+
+**đĨ Commit Content:**
+
+Commit content represents all content changes included in one commit. We had better include things in one single commit which could support reviewer's complete review without any other commits' help.
+
+In another word, contents in one single commit can pass the CI to avoid code mess. In brief, there are two minor rules for us to keep in mind:
+
+1. avoid very large change in a commit.
+2. complete and reviewable for each commit.
+3. words are written in lowercase English, not uppercase English or other languages such as Chinese.
+
+No matter what the commit message, or commit content is, we do take more emphasis on code review.
+
+An example for this could be:
+
+```bash
+⯠git commit -a -s -m "docs: add a new section to the readme"
+```
+
+#### PR Description
+
+PR is the only way to make change to OpenIM project files. To help reviewers better get your purpose, **PR** description could not be too detailed. We encourage contributors to follow the [PR template](https://github.com/openimsdk/.github/tree/main/.github/PULL_REQUEST_TEMPLATE.md) to finish the pull request.
+
+You can find some very formal PR in [RFC](https://github.com/openimsdk/openim-sdk-core/issues?q=is%3Aissue+is%3Aopen+RFC+label%3ARFC) issues and learn about them.
+
+**đ Opening PRs:**
+
++ As long as you are working on your **PR**, please mark it as a draft.
++ Please make sure that your **PR** is up-to-date with the latest changes in `main`
++ Mention the issue that your **PR** is addressing. For example, `Fixes: #{ID_1}, #{ID_2}`
++ Make sure that your **PR** passes all checks.
+
+**đ´ Reviewing PRs:**
+
++ Be respectful and constructive.
++ Assign yourself to the **PR**.
++ Check if all checks are passing.
++ Suggest changes instead of simply commenting on found issues.
++ If you are unsure about something, ask the author.
++ If you are not sure if the changes work, try them out.
++ Reach out to other reviewers if you are unsure about something.
++ If you are happy with the changes, approve the **PR**.
++ Merge the **PR** once it has all approvals and the checks are passing.
+
+**â ī¸ DCO check:**
+
+We have a [DCO check](https://github.com/apps/dco) which runs on every **PR** to verify that the commit has been signed off.
+
+Once [installed](https://github.com/apps/dco#usage), this integration will set the [status](https://developer.github.com/v3/repos/statuses/) to `failed` if commits in a **Pull Request** do not contain a valid `Signed-off-by` line.
+
+To sign off the last commit you made, you can use:
+
+```bash
+⯠git commit --amend --signoff
+```
+
+Contributors *sign-off* that they adhere to these requirements by adding a `Signed-off-by` line to commit messages.
+
+Git even has a `-s` command line option to append this automatically to your commit message:
+
+```bash
+⯠git commit -s -m "docs: this is my commit message"
+```
+
+You can also automate signing off your commits by adding the following to your `.zshrc` or `.bashrc`:
+
+```bash
+⯠cat ~/.bashrc || cat ~/.zshrc
+git() {
+ if [ $# -gt 0 ] && [[ "$1" == "commit" ]] ; then
+ shift
+ command git commit --signoff "$@"
+ else
+ command git "$@"
+ fi
+}
+```
+
+
+#### CI actions
+
+We host CI on [GitHub Actions](https://github.com/openimsdk/openim-sdk-core/actions), we will make sure PR pass tests before we can merge it.
+
+These two kind of tests: `lint` and `unit test`
+
+`lint` tests if your code matches our code conventions, please consult [golangci-lint](https://golangci-lint.run/) and [lint config](https://github.com/openimsdk/openim-sdk-core/blob/main/.golangci.yml)
+
+> **Note**
+>
+> You can use the [Makefile](./Makefile) to run Lint with the command `make lint`.
+
+
+`unit test` runs all the test in code, and the code coverage should not less than 60 percent, record us in [codeclimate](https://codeclimate.com/github/OpenIMSDK/openim-sdk-core) OpenIM the unit test coverage data.
+
+
+> **Note**
+>
+> We use the [Makefile](./Makefile) utility, `make tese` to run the unit tests, and the `make cover` utility to check the unit test coverage.
+
+Try your best to keep every function has been tested, it keeps the function behaves as intended.
+
+#### Docs Contribution
+
+**The documentation for OpenIM includes:**
+
++ [README.md](https://github.com/openimsdk/openim-sdk-core/blob/main/README.md): This file includes the basic information and instructions for getting started with OpenIM.
++ [README_zh-CN.md](https://github.com/openimsdk/openim-sdk-core/blob/main/README_zh-CN.md): This file includes the basic information and instructions for getting started with OpenIM in Chinese.
++ [CONTRIBUTING.md](https://github.com/openimsdk/openim-sdk-core/blob/main/CONTRIBUTING.md): This file contains guidelines for contributing to OpenIM's codebase, such as how to submit issues, pull requests, and code reviews.
++ [Official Documentation](https://doc.rentsoft.cn): This is the official documentation for OpenIM, which includes comprehensive information on all of its features, configuration options, and troubleshooting tips.
+
+**Please obey the following rules to better format the docs, which would greatly improve the reading experience.**
+
+1. Please do not use Chinese punctuations in English docs, and vice versa.
+2. Please use upper case letters where applicable, like the first letter of sentences / headings, etc.
+3. Please specify a language for each Markdown code blocks, unless there's no associated languages.
+4. Please insert a whitespace between Chinese and English words.
+5. Please use the correct case for technical terms, such as using `HTTP` instead of http, `MySQL` rather than mysql, `Kubernetes` instead of kubernetes, etc.
+6. Please check if there's any typos in the docs before submitting PRs.
+
+**Markfile Lint:**
+We integrated in the CICD actions [markdownlint](https://github.com/markdownlint/markdownlint), it detects Markfile specification.
+> **Note**
+> We recommend reading [markdownlint rules](https://github.com/markdownlint/markdownlint/blob/main/docs/RULES.md), This document contains a description of all rules, what they are checking for, as well as an examples of documents that break the rule and corrected versions of the examples.
+
+
+
+
+## Engage to help anything
+
+We choose GitHub as the primary place for OpenIM to collaborate. So the latest updates of OpenIM are always here. Although contributions via **PR** is an explicit way to help, we still call for any other ways.
+
++ reply to other's [issues](https://github.com/openimsdk/openim-sdk-core/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc) if you could;
++ help solve other user's problems;
++ help review other's [PR](https://github.com/openimsdk/openim-sdk-core/pulls?q=is%3Apr+is%3Aopen+sort%3Aupdated-desc) design;
++ discuss about OpenIM to make things clearer;
++ advocate [OpenIM](https://google.com/search?q=OpenIM) technology beyond GitHub;
++ write blogs on OpenIM and so on.
+
+In a word, **ANY HELP IS CONTRIBUTION.**
+
+
+
+## Release version
+
+Releases of OpenIM are done using [Release Please](https://github.com/googleapis/release-please) and [GoReleaser](https://goreleaser.com/). The workflow looks like this:
+
+đ¯ **A PR is merged to the `main` branch:**
+
++ Release please is triggered, creates or updates a new release PR
++ This is done with every merge to main, the current release PR is updated every time
+
+đ¯ **Merging the 'release please' PR to `main`:**
+
++ Release please is triggered, creates a new release and updates the changelog based on the commit messages
++ GoReleaser is triggered, builds the binaries and attaches them to the release
++ Containers are created and pushed to the container registry
+
+With the next relevant merge, a new release PR will be created and the process starts again
+
+đ **Manually setting the version:**
+
+If you want to manually set the version, you can create a PR with an empty commit message that contains the version number in the commit message. For example:
+
+Such a commit can get produced as follows:
+
+````bash
+⯠git commit --allow-empty -m "chore: release 0.0.3" -m "Release-As: 0.0.3
+````
+
+
+## Contact Us
+
+We value close connections with our users, developers, and contributors here at openim-sdk-core. With a large community and maintainer team, we're always here to help and support you. Whether you're looking to join our community or have any questions or suggestions, we welcome you to get in touch with us.
+
+Our most recommended way to get in touch is through [Slack](https://join.slack.com/t/openimsdk/shared_invite/zt-1tmoj26uf-_FDy3dowVHBiGvLk9e5Xkg). Even if you're in China, Slack is usually not blocked by firewalls, making it an easy way to connect with us. Our Slack community is the ideal place to discuss and share ideas and suggestions with other users and developers of openim-sdk-core. You can ask technical questions, seek help, or share your experiences with other users of openim-sdk-core.
+
+In addition to Slack, we also offer the following ways to get in touch:
+
++
We also have Slack channels for you to communicate and discuss. To join, visit https://slack.com/ and join our [đ openim-sdk-core slack](https://join.slack.com/t/openimsdk/shared_invite/zt-1tmoj26uf-_FDy3dowVHBiGvLk9e5Xkg) team channel.
++
Get in touch with us on [Gmail](https://mail.google.com/mail/u/0/?fs=1&tf=cm&to=winxu81@gmail.com). If you have any questions or issues that need resolving, or any suggestions and feedback for our open source projects, please feel free to contact us via email.
++
Read our [blog](https://doc.rentsoft.cn/). Our blog is a great place to stay up-to-date with openim-sdk-core projects and trends. On the blog, we share our latest developments, tech trends, and other interesting information.
++
Add [Wechat](https://github.com/openimsdk/OpenIM-Docs/blob/main/docs/images/WechatIMG20.jpeg) and indicate that you are a user or developer of openim-sdk-core. We will process your request as soon as possible.
+
+Whether you're looking to join our community or have any questions or suggestions, we welcome you to get in touch with us.
diff --git a/go/chao-sdk-core/LICENSE b/go/chao-sdk-core/LICENSE
new file mode 100644
index 0000000..f49a4e1
--- /dev/null
+++ b/go/chao-sdk-core/LICENSE
@@ -0,0 +1,201 @@
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright [yyyy] [name of copyright owner]
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
\ No newline at end of file
diff --git a/go/chao-sdk-core/Makefile b/go/chao-sdk-core/Makefile
new file mode 100644
index 0000000..57094e1
--- /dev/null
+++ b/go/chao-sdk-core/Makefile
@@ -0,0 +1,515 @@
+# ==============================================================================
+# define the default goal
+#
+
+ROOT_PACKAGE=github.com/openimsdk/Open-IM-SDK-Core
+
+# Copyright 2023 OpenIM. All rights reserved.
+# Use of this source code is governed by a MIT style
+# license that can be found in the LICENSE file.
+
+###################################=> common commands <=#############################################
+# ========================== Capture Environment ===============================
+# get the repo root and output path
+ROOT_PACKAGE=github.com/OpenIM/chat
+OUT_DIR=$(REPO_ROOT)/_output
+# ==============================================================================
+
+# define the default goal
+#
+
+SHELL := /bin/bash
+DIRS=$(shell ls)
+GO=go
+
+.DEFAULT_GOAL := help
+
+# include the common makefile
+COMMON_SELF_DIR := $(dir $(lastword $(MAKEFILE_LIST)))
+# ROOT_DIR: root directory of the code base
+ifeq ($(origin ROOT_DIR),undefined)
+ROOT_DIR := $(abspath $(shell cd $(COMMON_SELF_DIR)/. && pwd -P))
+endif
+# OUTPUT_DIR: The directory where the build output is stored.
+ifeq ($(origin OUTPUT_DIR),undefined)
+OUTPUT_DIR := $(ROOT_DIR)/_output
+$(shell mkdir -p $(OUTPUT_DIR))
+endif
+
+# BIN_DIR: The directory where the build output is stored.
+ifeq ($(origin BIN_DIR),undefined)
+BIN_DIR := $(OUTPUT_DIR)/bin
+$(shell mkdir -p $(BIN_DIR))
+endif
+
+ifeq ($(origin TOOLS_DIR),undefined)
+TOOLS_DIR := $(OUTPUT_DIR)/tools
+$(shell mkdir -p $(TOOLS_DIR))
+endif
+
+ifeq ($(origin TMP_DIR),undefined)
+TMP_DIR := $(OUTPUT_DIR)/tmp
+$(shell mkdir -p $(TMP_DIR))
+endif
+
+ifeq ($(origin VERSION), undefined)
+VERSION := $(shell git describe --tags --always --match="v*" --dirty | sed 's/-/./g') #v2.3.3.631.g00abdc9b.dirty
+endif
+
+# Check if the tree is dirty. default to dirty(maybe u should commit?)
+GIT_TREE_STATE:="dirty"
+ifeq (, $(shell git status --porcelain 2>/dev/null))
+ GIT_TREE_STATE="clean"
+endif
+GIT_COMMIT:=$(shell git rev-parse HEAD)
+
+IMG ?= openim_chat:latest
+
+BUILDFILE = "./main.go"
+BUILDAPP = "$(OUTPUT_DIR)/"
+
+# Define the directory you want to copyright
+CODE_DIRS := $(ROOT_DIR)/ #$(ROOT_DIR)/pkg $(ROOT_DIR)/core $(ROOT_DIR)/integrationtest $(ROOT_DIR)/lib $(ROOT_DIR)/mock $(ROOT_DIR)/db $(ROOT_DIR)/openapi
+FINDS := find $(CODE_DIRS)
+
+ifndef V
+MAKEFLAGS += --no-print-directory
+endif
+
+# The OS must be linux when building docker images
+# !WARNING: linux_mips64 linux_mips64le
+PLATFORMS ?= linux_s390x darwin_amd64 windows_amd64 linux_amd64 linux_arm64 linux_ppc64le
+# The OS can be linux/windows/darwin when building binaries
+# PLATFORMS ?= darwin_amd64 windows_amd64 linux_amd64 linux_arm64
+
+# Set a specific PLATFORM
+ifeq ($(origin PLATFORM), undefined)
+ ifeq ($(origin GOOS), undefined)
+ GOOS := $(shell go env GOOS)
+ endif
+ ifeq ($(origin GOARCH), undefined)
+ GOARCH := $(shell go env GOARCH)
+ endif
+ PLATFORM := $(GOOS)_$(GOARCH)
+ # Use linux as the default OS when building images
+ IMAGE_PLAT := linux_$(GOARCH)
+else
+ GOOS := $(word 1, $(subst _, ,$(PLATFORM)))
+ GOARCH := $(word 2, $(subst _, ,$(PLATFORM)))
+ IMAGE_PLAT := $(PLATFORM)
+endif
+
+# Copy githook scripts when execute makefile
+# TODO! GIT_FILE_SIZE_LIMIT=42000000 git commit -m "This commit is allowed file sizes up to 42MB"
+COPY_GITHOOK:=$(shell cp -f scripts/githooks/* .git/hooks/; chmod +x .git/hooks/*)
+
+# Linux command settings
+FIND := find . ! -path './image/*' ! -path './vendor/*' ! -path './bin/*'
+XARGS := xargs -r
+
+# ==============================================================================
+# TODO: License selection
+# LICENSE_TEMPLATE ?= $(ROOT_DIR)/scripts/LICENSE/license_templates.txt # MIT License
+LICENSE_TEMPLATE ?= $(ROOT_DIR)/scripts/LICENSE/LICENSE_TEMPLATES # Apache License
+
+# COMMA: Concatenate multiple strings to form a list of strings
+COMMA := ,
+# SPACE: Used to separate strings
+SPACE :=
+# SPACE: Replace multiple consecutive Spaces with a single space
+SPACE +=
+
+# ==============================================================================
+# Build definition
+
+GO_SUPPORTED_VERSIONS ?= 1.18|1.19|1.20|1.21
+GO_LDFLAGS += -X $(VERSION_PACKAGE).GitVersion=$(VERSION) \
+ -X $(VERSION_PACKAGE).GitCommit=$(GIT_COMMIT) \
+ -X $(VERSION_PACKAGE).GitTreeState=$(GIT_TREE_STATE) \
+ -X $(VERSION_PACKAGE).BuildDate=$(shell date -u +'%Y-%m-%dT%H:%M:%SZ')
+ifneq ($(DLV),)
+ GO_BUILD_FLAGS += -gcflags "all=-N -l"
+ LDFLAGS = ""
+endif
+GO_BUILD_FLAGS += -ldflags "$(GO_LDFLAGS)"
+
+ifeq ($(GOOS),windows)
+ GO_OUT_EXT := .exe
+endif
+
+ifeq ($(ROOT_PACKAGE),)
+ $(error the variable ROOT_PACKAGE must be set prior to including golang.mk)
+endif
+
+GOPATH := $(shell go env GOPATH)
+ifeq ($(origin GOBIN), undefined)
+ GOBIN := $(GOPATH)/bin
+endif
+
+COMMANDS ?= $(filter-out %.md, $(wildcard ${ROOT_DIR}/cmd/*))
+BINS ?= $(foreach cmd,${COMMANDS},$(notdir ${cmd}))
+
+ifeq (${COMMANDS},)
+ $(error Could not determine COMMANDS, set ROOT_DIR or run in source dir)
+endif
+ifeq (${BINS},)
+ $(error Could not determine BINS, set ROOT_DIR or run in source dir)
+endif
+
+EXCLUDE_TESTS=github.com/openimsdk/openim-sdk-core/test
+
+# ==============================================================================
+# Build
+
+## all: Build all the necessary targets.
+.PHONY: all
+all: copyright-verify build # tidy lint cover
+
+# Define available OS and ARCH
+OSES = linux
+ARCHS = amd64 arm64
+
+ifeq ($(ARCH),arm64)
+ export CC=aarch64-linux-gnu-gcc
+ export CXX=aarch64-linux-gnu-g++
+endif
+
+# Set default OS and ARCH (e.g., current platform)
+OS ?= $(shell go env GOOS)
+ARCH ?= $(shell go env GOARCH)
+BIN_DIR ?= ./_output/bin
+TARGET ?= ./cmd/main.go
+
+## build: Build for current platform by default
+.PHONY: build
+build:
+ @echo "===========> Building for $(OS)/$(ARCH)"
+ @CGO_ENABLED=1 GOOS=$(OS) GOARCH=$(ARCH) go build -o $(BIN_DIR)/openim-sdk-core-$(OS)-$(ARCH) $(TARGET)
+
+# sudo apt-get install gcc-aarch64-linux-gnu
+## build-multiple: Build for all supported platforms
+.PHONY: build-multiple
+build-multiple:
+ @for os in $(OSES); do \
+ for arch in $(ARCHS); do \
+ $(MAKE) build OS=$$os ARCH=$$arch; \
+ done \
+ done
+
+
+.PHONY: build-wasm
+build-wasm:
+ GOOS=js GOARCH=wasm go build -trimpath -ldflags "-s -w" -o ${BIN_DIR}/openIM.wasm wasm/cmd/main.go
+
+## install: Install the binary to the BIN_DIR
+.PHONY: install
+install: build
+ mv ${BINARY_NAME} ${BIN_DIR}
+
+## reset_remote_branch: Reset the remote branch
+.PHONY: reset_remote_branch
+reset_remote_branch:
+ remote_branch=$(shell git rev-parse --abbrev-ref --symbolic-full-name @{u})
+ git reset --hard $(remote_branch)
+ git pull $(remote_branch)
+
+## ios: Build the iOS framework
+.PHONY: ios
+ios:
+ go get golang.org/x/mobile
+ rm -rf build/ open_im_sdk/t_friend_sdk.go open_im_sdk/t_group_sdk.go open_im_sdk/ws_wrapper/
+ GOARCH=arm64 gomobile bind -v -trimpath -ldflags "-s -w" -o build/OpenIMCore.xcframework -target=ios ./open_im_sdk/ ./open_im_sdk_callback/
+
+## android: Build the Android library
+# Note: to build an AAR on Windows, gomobile, Android Studio, and the NDK must be installed.
+# The NDK version tested by the OpenIM team was r20b.
+# To build an AAR on Mac, gomobile, Android Studio, and the NDK version 20.0.5594570 must be installed.
+.PHONY: android
+android:
+ go get golang.org/x/mobile/bind
+ GOARCH=amd64 gomobile bind -v -trimpath -ldflags="-s -w" -o ./open_im_sdk.aar -target=android ./open_im_sdk/ ./open_im_sdk_callback/
+
+# Targets
+.PHONY: release
+release: release.verify release.ensure-tag
+ @scripts/release.sh
+
+.PHONY: install.gsemver
+release.verify: install.git-chglog install.github-release install.coscmd
+
+.PHONY: release.tag
+release.tag: install.gsemver release.ensure-tag
+ @git push origin `git describe --tags --abbrev=0`
+
+.PHONY: release.ensure-tag
+release.ensure-tag: install.gsemver
+ @scripts/ensure_tag.sh
+
+## tidy: tidy go.mod
+.PHONY: tidy
+tidy:
+ @$(GO) mod tidy
+
+## style: Code style -> fmt,vet,lint
+.PHONY: style
+style: fmt vet lint
+
+## fmt: Run go fmt against code.
+.PHONY: fmt
+fmt:
+ @$(GO) fmt ./...
+
+## vet: Run go vet against code.
+.PHONY: vet
+vet:
+ @$(GO) vet ./...
+
+## generate: Run go generate against code.
+.PHONY: generate
+generate:
+ @$(GO) generate ./...
+
+## lint: Run go lint against code.
+.PHONY: lint
+lint: tools.verify.golangci-lint
+ @echo "===========> Run golangci to lint source codes"
+ @$(TOOLS_DIR)/golangci-lint run -c $(ROOT_DIR)/.golangci.yml $(ROOT_DIR)/...
+
+## test: Run unit test
+.PHONY: test
+test:
+ @$(GO) test ./...
+
+## cover: Run unit test with coverage.
+.PHONY: cover
+cover: test
+ @$(GO) test -cover
+
+## docker-build: Build docker image with the manager.
+.PHONY: docker-build
+docker-build:
+ docker build -t ${IMG} .
+
+## docker-push: Push docker image with the manager.
+.PHONY: docker-push
+docker-push:
+ docker push ${IMG}
+
+## docker-buildx-push: Push docker image with the manager using buildx.
+.PHONY: docker-buildx-push
+docker-buildx-push:
+ docker buildx build --platform linux/arm64,linux/amd64 -t ${IMG} . --push
+
+## copyright-verify: Validate boilerplate headers for assign files.
+.PHONY: copyright-verify
+copyright-verify: tools.verify.addlicense copyright-add
+ @echo "===========> Validate boilerplate headers for assign files starting in the $(ROOT_DIR) directory"
+ @$(TOOLS_DIR)/addlicense -v -check -ignore **/test/** -f $(LICENSE_TEMPLATE) $(CODE_DIRS)
+ @echo "===========> End of boilerplate headers check..."
+
+## copyright-add: Add the boilerplate headers for all files.
+.PHONY: copyright-add
+copyright-add: tools.verify.addlicense
+ @echo "===========> Adding $(LICENSE_TEMPLATE) the boilerplate headers for all files"
+ @$(TOOLS_DIR)/addlicense -y $(shell date +"%Y") -v -c "OpenIM open source community." -f $(LICENSE_TEMPLATE) $(CODE_DIRS)
+ @echo "===========> End the copyright is added..."
+
+## clean: Clean all builds.
+.PHONY: clean
+clean:
+ @echo "===========> Cleaning all builds TMP_DIR($(TMP_DIR)) AND BIN_DIR($(BIN_DIR))"
+ @-rm -vrf $(TMP_DIR) $(BIN_DIR)
+ @echo "===========> End clean..."
+
+## help: Show this help info.
+.PHONY: help
+help: Makefile
+ @printf "\n\033[1mUsage: make ...\033[0m\n\n\\033[1mTargets:\\033[0m\n\n"
+ @sed -n 's/^##//p' $< | awk -F':' '{printf "\033[36m%-28s\033[0m %s\n", $$1, $$2}' | sed -e 's/^/ /'
+
+######################################=> common tools<= ############################################
+# tools
+
+BUILD_TOOLS ?= go-gitlint golangci-lint goimports addlicense deepcopy-gen conversion-gen ginkgo go-junit-report
+
+## tools.verify.%: Check if a tool is installed and install it
+.PHONY: tools.verify.%
+tools.verify.%:
+ @echo "===========> Verifying $* is installed"
+ @if [ ! -f $(TOOLS_DIR)/$* ]; then GOBIN=$(TOOLS_DIR) $(MAKE) tools.install.$*; fi
+ @echo "===========> $* is install in $(TOOLS_DIR)/$*"
+
+# tools: Install a must tools
+.PHONY: tools
+tools: $(addprefix tools.verify., $(BUILD_TOOLS))
+
+# tools.install.%: Install a single tool in $GOBIN/
+.PHONY: tools.install.%
+tools.install.%:
+ @echo "===========> Installing $,The default installation path is $(GOBIN)/$*"
+ @$(MAKE) install.$*
+
+.PHONY: install.golangci-lint
+install.golangci-lint:
+ @$(GO) install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
+
+.PHONY: install.goimports
+install.goimports:
+ @$(GO) install golang.org/x/tools/cmd/goimports@latest
+
+.PHONY: install.addlicense
+install.addlicense:
+ @$(GO) install github.com/google/addlicense@latest
+
+.PHONY: install.deepcopy-gen
+install.deepcopy-gen:
+ @$(GO) install k8s.io/code-generator/cmd/deepcopy-gen@latest
+
+.PHONY: install.conversion-gen
+install.conversion-gen:
+ @$(GO) install k8s.io/code-generator/cmd/conversion-gen@latest
+
+.PHONY: install.ginkgo
+install.ginkgo:
+ @$(GO) install github.com/onsi/ginkgo/ginkgo@v1.16.2
+
+.PHONY: install.go-gitlint
+# wget -P _output/tools/ https://openim-1306374445.cos.ap-guangzhou.myqcloud.com/openim/tools/go-gitlint
+# go install github.com/antham/go-gitlint/cmd/gitlint@latest
+install.go-gitlint:
+ @wget -q https://openim-1306374445.cos.ap-guangzhou.myqcloud.com/openim/tools/go-gitlint -O ${TOOLS_DIR}/go-gitlint
+ @chmod +x ${TOOLS_DIR}/go-gitlint
+
+.PHONY: install.go-junit-report
+install.go-junit-report:
+ @$(GO) install github.com/jstemmer/go-junit-report@latest
+
+# ==============================================================================
+# Tools that might be used include go gvm, cos
+#
+
+## install.kube-score: Install kube-score, used to check kubernetes yaml files
+.PHONY: install.kube-score
+install.kube-score:
+ @$(GO) install github.com/zegl/kube-score/cmd/kube-score@latest
+
+## install.kubeconform: Install kubeconform, used to check kubernetes yaml files
+.PHONY: install.kubeconform
+install.kubeconform:
+ @$(GO) install github.com/yannh/kubeconform/cmd/kubeconform@latest
+
+## install.gsemver: Install gsemver, used to generate semver
+.PHONY: install.gsemver
+install.gsemver:
+ @$(GO) install github.com/arnaud-deprez/gsemver@latest
+
+## install.git-chglog: Install git-chglog, used to generate changelog
+.PHONY: install.git-chglog
+install.git-chglog:
+ @$(GO) install github.com/git-chglog/git-chglog/cmd/git-chglog@latest
+
+## install.github-release: Install github-release, used to create github release
+.PHONY: install.github-release
+install.github-release:
+ @$(GO) install github.com/github-release/github-release@latest
+
+## install.coscli: Install coscli, used to upload files to cos
+# example: ./coscli cp/sync -r /root/workspaces/kubecub/chat/ cos://kubecub-1306374445/code/ -e cos.ap-hongkong.myqcloud.com
+# https://cloud.tencent.com/document/product/436/71763
+# kubecub/*
+# - code/
+# - docs/
+# - images/
+# - scripts/
+.PHONY: install.coscli
+install.coscli:
+ @wget -q https://github.com/tencentyun/coscli/releases/download/v0.13.0-beta/coscli-linux -O ${TOOLS_DIR}/coscli
+ @chmod +x ${TOOLS_DIR}/coscli
+
+## install.coscmd: Install coscmd, used to upload files to cos
+.PHONY: install.coscmd
+install.coscmd:
+ @if which pip &>/dev/null; then pip install coscmd; else pip3 install coscmd; fi
+
+## install.delve: Install delve, used to debug go program
+.PHONY: install.delve
+install.delve:
+ @$(GO) install github.com/go-delve/delve/cmd/dlv@latest
+
+## install.air: Install air, used to hot reload go program
+.PHONY: install.air
+install.air:
+ @$(GO) install github.com/cosmtrek/air@latest
+
+## install.gvm: Install gvm, gvm is a Go version manager, built on top of the official go tool.
+.PHONY: install.gvm
+install.gvm:
+ @echo "===========> Installing gvm,The default installation path is ~/.gvm/scripts/gvm"
+ @bash < <(curl -s -S -L https://raw.gitee.com/moovweb/gvm/master/binscripts/gvm-installer)
+ @$(shell source /root/.gvm/scripts/gvm)
+
+## install.golines: Install golines, used to format long lines
+.PHONY: install.golines
+install.golines:
+ @$(GO) install github.com/segmentio/golines@latest
+
+## install.go-mod-outdated: Install go-mod-outdated, used to check outdated dependencies
+.PHONY: install.go-mod-outdated
+install.go-mod-outdated:
+ @$(GO) install github.com/psampaz/go-mod-outdated@latest
+
+## install.mockgen: Install mockgen, used to generate mock functions
+.PHONY: install.mockgen
+install.mockgen:
+ @$(GO) install github.com/golang/mock/mockgen@latest
+
+## install.gotests: Install gotests, used to generate test functions
+.PHONY: install.gotests
+install.gotests:
+ @$(GO) install github.com/cweill/gotests/gotests@latest
+
+## install.protoc-gen-go: Install protoc-gen-go, used to generate go source files from protobuf files
+.PHONY: install.protoc-gen-go
+install.protoc-gen-go:
+ @$(GO) install github.com/golang/protobuf/protoc-gen-go@latest
+
+## install.cfssl: Install cfssl, used to generate certificates
+.PHONY: install.cfssl
+install.cfssl:
+ @$(ROOT_DIR)/scripts/install/install.sh OpenIM::install::install_cfssl
+
+## install.depth: Install depth, used to check dependency tree
+.PHONY: install.depth
+install.depth:
+ @$(GO) install github.com/KyleBanks/depth/cmd/depth@latest
+
+## install.go-callvis: Install go-callvis, used to visualize call graph
+.PHONY: install.go-callvis
+install.go-callvis:
+ @$(GO) install github.com/ofabry/go-callvis@latest
+
+## install.gothanks: Install gothanks, used to thank go dependencies
+.PHONY: install.gothanks
+install.gothanks:
+ @$(GO) install github.com/psampaz/gothanks@latest
+
+## install.richgo: Install richgo
+.PHONY: install.richgo
+install.richgo:
+ @$(GO) install github.com/kyoh86/richgo@latest
+
+## install.rts: Install rts
+.PHONY: install.rts
+install.rts:
+ @$(GO) install github.com/galeone/rts/cmd/rts@latest
+
+
+## install.gomobile: Install gomobile
+.PHONY: install.gomobile
+install.gomobile:
+ @$(GO) install golang.org/x/mobile/cmd/gomobile@latest
+
+## install.gobind: Install gobind
+.PHONY: install.gobind
+install.gobind:
+ @$(GO) install golang.org/x/mobile/cmd/gobind@latest
diff --git a/go/chao-sdk-core/README.md b/go/chao-sdk-core/README.md
new file mode 100644
index 0000000..c04d17a
--- /dev/null
+++ b/go/chao-sdk-core/README.md
@@ -0,0 +1,144 @@
+
+
+ âī¸ Used in IOS, Android, PC and other platforms âī¸
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ English âĸ
+ 䏿
+
+
+
+
+----
+
+## đ§Š Awesome features
+
+OpenIM-SDK-core is a core SDK of OpenIM.
+
+1. Manage WebSocket long connections, responsible for creating, closing and reconnecting connections.
+2. Encoding and decoding. Encode and decode messages in binary format to achieve cross-language compatibility.
+3. Implement basic protocols of OpenIM, such as login, push, etc.
+4. Provide an event handling mechanism to convert received messages into corresponding events and pass them to upper layer applications for processing.
+5. Cache management. Manage user, group, blacklists, and other cache information.
+6. Provide basic IM function APIs such as sending messages, creating groups, etc. Hide the underlying implementation details from the upper layer application.
+
+
+## Quickstart
+
+> **Note**: You can get started quickly with openim-sdk-core.
+
+
+ Work with Makefile
+
+```bash
+⯠make help # show help
+⯠make build # build binary
+```
+
+
+
+ Work with actions
+
+Actions provide handling of PR and issue.
+We used the bot @kubbot, It can detect issues in Chinese and translate them to English, and you can interact with it using the command `/comment`.
+
+Comment in an issue:
+
+```bash
+⯠/intive
+```
+
+
+
+ Work with Tools
+
+```bash
+⯠make tools
+```
+
+
+
+ Work with Docker
+
+```bash
+$ make deploy
+```
+
+
+
+
+## Contributing & Development
+
+OpenIM Our goal is to build a top-level open source community. We have a set of standards, in the [Community repository](https://github.com/openimsdk/community).
+
+If you'd like to contribute to this openim-sdk-core repository, please read our [contributor documentation](https://github.com/openimsdk/openim-sdk-core/blob/main/CONTRIBUTING.md).
+
+## community meeting
+
+We welcome everyone to join us and contribute to openim-sdk-core, whether you are new to open source or professional. We are committed to promoting an open source culture, so we offer community members neighborhood prizes and reward money in recognition of their contributions. We believe that by working together, we can build a strong community and make valuable open source tools and resources available to more people. So if you are interested in openim-sdk-core, please join our community and start contributing your ideas and skills!
+
+We take notes of each [biweekly meeting](https://github.com/openimsdk/Open-IM-Server/issues/381) in [GitHub discussions](https://github.com/openimsdk/Open-IM-Server/discussions/categories/meeting), and our minutes are written in [Google Docs](https://docs.google.com/document/d/1nx8MDpuG74NASx081JcCpxPgDITNTpIIos0DS6Vr9GU/edit?usp=sharing).
+
+openim-sdk-core maintains a [public roadmap](https://github.com/openimsdk/community/tree/main/roadmaps). It gives a a high-level view of the main priorities for the project, the maturity of different features and projects, and how to influence the project direction.
+
+## about OpenIM
+
+### common
+
++ https://github.com/openimsdk/automation: OpenIM Automation, cicd, and actions, Robotics.
++ https://github.com/openimsdk/community: Community Management for OpenIM
+
+### OpenIM **Links**
+
+Contains some common parts of the OpenIM community.
+
++ https://github.com/openimsdk/automation: OpenIM Automation, cicd, and actions, Robotics.
++ https://github.com/openimsdk/openim-sdk-core: The IMSDK implemented by golang can be used in IOS, Android, PC and other platforms.
++ https://github.com/openimsdk/openim-sdk-core: Instant messaging IM server.
++ https://github.com/openimsdk/community: Community Management for OpenIM.
+
+### SDKs
+
++ [openim-sdk-core](https://github.com/openimsdk/openim-sdk-core): A cross-platform SDK implemented in golang that can be used in IOS, Android, PC, and other platforms.
++ [Open-IM-SDK-iOS](https://github.com/openimsdk/Open-IM-SDK-iOS): An iOS SDK generated based on openim-sdk-core, available for developers to reference.
++ [Open-IM-SDK-Android](https://github.com/openimsdk/Open-IM-SDK-Android): An Android SDK generated based on openim-sdk-core, available for developers to reference.
++ [Open-IM-SDK-Flutter](https://github.com/openimsdk/Open-IM-SDK-Flutter): A Flutter SDK generated based on Open-IM-SDK-iOS and Open-IM-SDK-Android, available for developers to reference.
++ [Open-IM-SDK-Uniapp](https://github.com/openimsdk/Open-IM-SDK-Uniapp): A uni-app SDK generated based on Open-IM-SDK-iOS and Open-IM-SDK-Android, available for developers to reference.
+
+### Demos
+
++ [Open-IM-iOS-Demo](https://github.com/openimsdk/Open-IM-iOS-Demo): An iOS demo based on Open-IM-SDK-iOS, available for developers to reference.
++ [Open-IM-Android-Demo](https://github.com/openimsdk/Open-IM-Android-Demo): An Android demo based on Open-IM-SDK-Android, available for developers to reference.
++ [Open-IM-Flutter-Demo](https://github.com/openimsdk/Open-IM-Flutter-Demo): A Flutter demo based on Open-IM-SDK-Flutter, available for developers to reference.
+
+## Used By
+
+OpenIM is used by the following companies ,let's write it down in [ADOPTER](https://github.com/openimsdk/community/blob/main/ADOPTERS.md).
+
+Please leave your use cases in the comments [here](https://github.com/openimsdk/Open-IM-Server/issues/379).
+
+## License
+
+[openim-sdk-core](https://github.com/openimsdk/openim-sdk-core) is licensed under the Apache License, Version 2.0. See [LICENSE](https://github.com/openimsdk/openim-sdk-core/tree/main/LICENSE) for the full license text.
+
+## Thanks to our contributors!
+
+
+
+
diff --git a/go/chao-sdk-core/README_zh-CN.md b/go/chao-sdk-core/README_zh-CN.md
new file mode 100644
index 0000000..3c7a22d
--- /dev/null
+++ b/go/chao-sdk-core/README_zh-CN.md
@@ -0,0 +1,26 @@
+
+
+ âī¸ Used in IOS, Android, PC and other platforms âī¸
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ English âĸ
+ 䏿
+
+
+
diff --git a/go/chao-sdk-core/cmd/gordon_main.go b/go/chao-sdk-core/cmd/gordon_main.go
new file mode 100644
index 0000000..3db79a0
--- /dev/null
+++ b/go/chao-sdk-core/cmd/gordon_main.go
@@ -0,0 +1,234 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package main
+
+import (
+ "context"
+ "encoding/json"
+ "errors"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/network"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/server_api_params"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/test"
+ "github.com/openimsdk/tools/log"
+ "time"
+)
+
+var (
+ //APIADDR = "http://43.155.69.205:10002"
+ //WSADDR = "ws://43.155.69.205:10001"
+ //APIADDR = "https://chat-api-dev.opencord.so"
+ //WSADDR = "wss://chat-ws-dev.opencord.so"
+ APIADDR = "http://14.29.168.56:10002"
+ WSADDR = "ws://14.29.168.56:10001"
+ //APIADDR = "http://113.108.8.93:10002"
+ //WSADDR = "ws://113.108.8.93:10001"
+ REGISTERADDR = APIADDR + "/user_register"
+ ACCOUNTCHECK = APIADDR + "/manager/account_check"
+ TOKENADDR = APIADDR + "/auth/user_token"
+ SECRET = "openIM123"
+ //SECRET = "4zbF9Y6Fs1QJ0hsmpC3B676txZcCnjcZ"
+ SENDINTERVAL = 20
+)
+var ctx context.Context
+
+const PlatformID = 3
+
+type ResToken struct {
+ Data struct {
+ ExpiredTime int64 `json:"expiredTime"`
+ Token string `json:"token"`
+ Uid string `json:"uid"`
+ }
+ ErrCode int `json:"errCode"`
+ ErrMsg string `json:"errMsg"`
+}
+
+func ggetToken(uid string) string {
+ url := TOKENADDR
+ var req server_api_params.UserTokenReq
+ req.Platform = PlatformID
+ req.UserID = uid
+ req.Secret = SECRET
+ req.OperationID = utils.OperationIDGenerator()
+ r, err := network.Post2Api(url, req, "a")
+ if err != nil {
+ log.ZError(ctx, "Post2Api failed ", errors.New("Post2Api failed "), "operationID", req.OperationID, "url", url, "req", req)
+ return ""
+ }
+ var stcResp ResToken
+ err = json.Unmarshal(r, &stcResp)
+ if stcResp.ErrCode != 0 {
+ log.ZError(ctx, "ErrCode failed ", errors.New("ErrCode failed "), "operationID", req.OperationID,
+ "errorCode", stcResp.ErrCode, "errMsg", stcResp.ErrMsg, "url", url, "req", req)
+ return ""
+ }
+ log.ZInfo(ctx, "get token: ", "operationID", req.OperationID, "token", stcResp.Data.Token)
+ return stcResp.Data.Token
+}
+
+func gRunGetToken(strMyUid string) string {
+ var token string
+ for true {
+ token = ggetToken(strMyUid)
+ if token == "" {
+ time.Sleep(time.Duration(100) * time.Millisecond)
+ continue
+ } else {
+ break
+ }
+ }
+ return token
+}
+func main() {
+ uid := "1695766238"
+ //Gordon
+ //uid:="1554321956297519104"
+ //Gordon2
+ //uid := "1583984945064968192"
+ //uid := "3734595565"
+ tokenx := gRunGetToken(uid)
+ //tokenx := "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJVSUQiOiI3MDcwMDgxNTMiLCJQbGF0Zm9ybSI6IkFuZHJvaWQiLCJleHAiOjE5NjY0MTJ1XjJZGWj5fB3mqC7p6ytxSarvxZfsABwIjoxNjUxMDU1MDU2fQ.aWvmJ_sQxXmT5nKwiM5QsF9-tfkldzOYZtRD3nrUuko"
+ test.InOutDoTest(uid, tokenx, WSADDR, APIADDR)
+ time.Sleep(time.Second * 30)
+ // test.DoTestSendMsg2("7789", "7788")
+ //test.DoTestGetAdvancedHistoryMessageList()
+ //test.DoTestGetSelfUserInfo()
+ //test.DoTestSendMsg2GroupWithMessage(uid, "1623878302774460418", "2")
+ //test.DoTestAddMessageReactionExtensions(1,"special handle")
+ //time.Sleep(time.Second*5)
+ //test.DoTestAddMessageReactionExtensions(2,"special handle")
+ //time.Sleep(time.Second*5)
+ //test.DoTestGetMessageListReactionExtensions("special handle")
+ //test.DoTestSetAppBadge()
+ //test.DoTestSearchLocalMessages()
+ //test.DoTestGetAdvancedHistoryMessageList()
+ println("start")
+ //test.DoTestGetUserInDepartment()
+ //test.DoTestGetDepartmentMemberAndSubDepartment()
+ //test.DoTestDeleteAllMsgFromLocalAndSvr()
+ // test.DoTestGetDepartmentMemberAndSubDepartment()
+ //test.DotestUploadFile()
+ //test.DotestMinio()
+ //test.DotestSearchFriends()
+ //if *senderNum == 0 {
+ // test.RegisterAccounts(*onlineNum)
+ // return
+ //}
+ //
+ //test.OnlineTest(*onlineNum)
+ ////test.TestSendCostTime()
+ //test.ReliabilityTest(*singleSenderMsgNum, *intervalTime, 10, *senderNum)
+ //test.DoTestSearchLocalMessages()
+ //println("start")
+ //test.DoTestSendImageMsg(strMyUidx, "17726378428")
+ //test.DoTestSearchGroups()
+ //test.DoTestGetHistoryMessage("")
+ //test.DoTestGetHistoryMessageReverse("")
+ //test.DoTestInviteInGroup()
+ //test.DoTestCancel()
+ //test.DoTestSendMsg2(strMyUidx, friendID)
+ //test.DoTestGetAllConversation()
+
+ //test.DoTestGetOneConversation("17726378428")
+ //test.DoTestGetConversations(`["single_17726378428"]`)
+ //test.DoTestGetConversationListSplit()
+ //test.DoTestGetConversationRecvMessageOpt(`["single_17726378428"]`)
+
+ //set batch
+ //test.DoTestSetConversationRecvMessageOpt([]string{"single_17726378428"}, constant.NotReceiveMessage)
+ //set one
+ ////set batch
+ //test.DoTestSetConversationRecvMessageOpt([]string{"single_17726378428"}, constant.ReceiveMessage)
+ ////set one
+ //test.DoTestSetConversationPinned("single_17726378428", false)
+ //test.DoTestSetOneConversationRecvMessageOpt("single_17726378428", constant.NotReceiveMessage)
+ //test.DoTestSetOneConversationPrivateChat("single_17726378428", false)
+ //test.DoTestReject()
+ //test.DoTestAccept()
+ //test.DoTestMarkGroupMessageAsRead()
+ //test.DoTestGetGroupHistoryMessage()
+ //test.DoTestGetHistoryMessage("17396220460")
+ time.Sleep(250000 * time.Millisecond)
+ //b := utils.GetCurrentTimestampBySecond()
+ i := 0
+ for {
+ //test.DoTestSendMsg2Group(strMyUidx, "42c9f515cb84ee0e82b3f3ce71eb14d6", i)
+ i++
+ time.Sleep(250 * time.Millisecond)
+ //if i == 100 {
+ // break
+ //}
+ //log.Warn("", "10 * time.Millisecond ###################waiting... msg: ", i)
+ }
+ //
+ //log.Warn("", "cost time: ", utils.GetCurrentTimestampBySecond()-b)
+ //return
+ //i = 0
+ //for {
+ // //test.DoTestSendMsg2Group(strMyUidx, "42c9f515cb84ee0e82b3f3ce71eb14d6", i)
+ // i++
+ // time.Sleep(1000 * time.Millisecond)
+ // if i == 10 {
+ // break
+ // }
+ // log.Warn("", "1000 * time.Millisecond ###################waiting... msg: ", i)
+ //}
+ //
+ //i = 0
+ //for {
+ // test.DoTestSendMsg2Group(strMyUidx, "42c9f515cb84ee0e82b3f3ce71eb14d6", i)
+ // i++
+ // time.Sleep(10000 * time.Millisecond)
+ // log.Warn("", "10000 * time.Millisecond ###################waiting... msg: ", i)
+ //}
+
+ //reliabilityTest()
+ // test.PressTest(testClientNum, intervalSleep, imIP)
+}
+
+//
+//funcation main() {
+// testClientNum := 100
+// intervalSleep := 2
+// imIP := "43.128.5.63"
+
+//
+// msgNum := 1000
+// test.ReliabilityTest(msgNum, intervalSleep, imIP)
+// for i := 0; i < 6; i++ {
+// test.Msgwg.Wait()
+// }
+//
+// for {
+//
+// if test.CheckReliabilityResult() {
+// log.Warn("CheckReliabilityResult ok, again")
+//
+// } else {
+// log.Warn("CheckReliabilityResult failed , wait.... ")
+// }
+//
+// time.Sleep(time.Duration(10) * time.Second)
+// }
+//
+//}
+
+//funcation printCallerNameAndLine() string {
+// pc, _, line, _ := runtime.Caller(2)
+// return runtime.FuncForPC(pc).Name() + "()@" + strconv.Itoa(line) + ": "
+//}
+
+// myuid, maxuid, msgnum
diff --git a/go/chao-sdk-core/cmd/main.go b/go/chao-sdk-core/cmd/main.go
new file mode 100644
index 0000000..7e55586
--- /dev/null
+++ b/go/chao-sdk-core/cmd/main.go
@@ -0,0 +1,61 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package main
+
+import (
+ "fmt"
+ "github.com/openimsdk/openim-sdk-core/v3/test"
+ "time"
+)
+
+func main() {
+ APIADDR := "http://59.36.173.89:10002"
+ WSADDR := "ws://59.36.173.89:10001"
+ REGISTERADDR := APIADDR + "/user_register"
+ ACCOUNTCHECK := APIADDR + "/manager/account_check"
+ TOKENADDR := APIADDR + "/auth/user_token"
+ SECRET := "openIM123"
+ SENDINTERVAL := 20
+ test.REGISTERADDR = REGISTERADDR
+ test.TOKENADDR = TOKENADDR
+ test.SECRET = SECRET
+ test.SENDINTERVAL = SENDINTERVAL
+ test.WSADDR = WSADDR
+ test.ACCOUNTCHECK = ACCOUNTCHECK
+ strMyUidx := "5284951719"
+
+ tokenx := test.RunGetToken(strMyUidx)
+ fmt.Println(tokenx)
+ test.InOutDoTest(strMyUidx, tokenx, WSADDR, APIADDR)
+ time.Sleep(time.Second * 10)
+ // test.DoTestGetUsersInfo()
+ // test.DoTestSetMsgDestructTime("sg_1012596513")
+ // test.DoTestRevoke()
+ // test.DotestDeleteFriend("8303492153")
+ // test.TestMarkGroupMessageAsRead()
+ // test.DoTestRevoke()
+ // time.Sleep(time.Second * 5)
+ // test.DoTestAddToBlackList("9169012630")
+ // test.DoTestDeleteFromBlackList("9169012630")
+ // test.DotestDeleteFriend("9169012630")
+ // test.DoTestSetConversationPinned("si_2456093263_9169012630", true)
+ // test.DoTestSetOneConversationRecvMessageOpt("si_2456093263_9169012630", 2)
+ // test.DoTestGetConversationRecvMessageOpt("si_2456093263_9169012630")
+ // test.DoTestDeleteConversationMsgFromLocalAndSvr("sg_537415520")
+ for {
+ time.Sleep(10000 * time.Millisecond)
+ }
+
+}
diff --git a/go/chao-sdk-core/cmd/online_open_im.go b/go/chao-sdk-core/cmd/online_open_im.go
new file mode 100644
index 0000000..80a0eba
--- /dev/null
+++ b/go/chao-sdk-core/cmd/online_open_im.go
@@ -0,0 +1,25 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package main
+
+func main() {
+ // var onlineNum *int //Number of online users
+ // onlineNum = flag.Int("on", 10, "online num")
+ // flag.Parse()
+ // log.Warn("", "online test start, online num: ", *onlineNum)
+ // test.OnlineTest(*onlineNum)
+ // log.Warn("", "online test finish, online num: ", *onlineNum)
+ // select {}
+}
diff --git a/go/chao-sdk-core/cmd/parse.go b/go/chao-sdk-core/cmd/parse.go
new file mode 100644
index 0000000..34a2a07
--- /dev/null
+++ b/go/chao-sdk-core/cmd/parse.go
@@ -0,0 +1,67 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package main
+
+import (
+ "fmt"
+ "go/ast"
+ "go/parser"
+ "go/token"
+ "go/types"
+)
+
+func main() {
+
+ //filePath, err := filepath.Abs(".\test.go")
+ //if err != nil {
+ // panic(err)
+ //}
+ // č§ŖæGoæäģļ
+ fset := token.NewFileSet()
+ node, err := parser.ParseFile(fset, "D:\\Goland\\workspace\\Open-IM-SDK-Core\\main\\test.go", nil, parser.AllErrors)
+ if err != nil {
+ panic(err)
+ }
+ //myImporter := importer.Default()
+ // ååģēįąģåæŖæĨå¨
+ //conf := types.Config{Importer: myImporter}
+ info := &types.Info{
+ Defs: make(map[*ast.Ident]types.Object),
+ }
+ //// įąģåæŖæĨ
+ //_, err = conf.Check("", fset, []*ast.File{node}, info)
+ //if err != nil {
+ // panic(err)
+ //}
+ // éåæäģļ䏿æåŊæ°
+
+ fn := func(pkg *types.Package) string {
+ return pkg.Name()
+ }
+ for _, decl := range node.Decls {
+ if f, ok := decl.(*ast.FuncDecl); ok {
+ // æå°åŊæ°å
+ fmt.Println("Function Name: ", f.Name.Name)
+ // æå°åæ°ååįąģå
+ for _, param := range f.Type.Params.List {
+ for _, name := range param.Names {
+ obj := info.ObjectOf(name)
+ typ := obj.Type()
+ fmt.Printf("Parameter Name: %s, Type: %s\n", name.Name, types.TypeString(typ, fn))
+ }
+ }
+ }
+ }
+}
diff --git a/go/chao-sdk-core/cmd/press_open_im.go b/go/chao-sdk-core/cmd/press_open_im.go
new file mode 100644
index 0000000..bf52fc3
--- /dev/null
+++ b/go/chao-sdk-core/cmd/press_open_im.go
@@ -0,0 +1,38 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package main
+
+import (
+ "errors"
+ "flag"
+ "github.com/openimsdk/openim-sdk-core/v3/test"
+ "github.com/openimsdk/tools/log"
+)
+
+func main() {
+ var senderNum *int //Number of users sending messages
+ var singleSenderMsgNum *int //Number of single user send messages
+ var intervalTime *int //Sending time interval, in millisecond
+ senderNum = flag.Int("sn", 100, "sender num")
+ singleSenderMsgNum = flag.Int("mn", 1000, "single sender msg num")
+ intervalTime = flag.Int("t", 0, "interval time mill second")
+ flag.Parse()
+ // test.InitMgr(*senderNum)
+
+ log.ZInfo(ctx, "logLevel", uint32(test.LogLevel))
+ log.ZWarn(ctx, "press test begin ", errors.New(""), "sender num", *senderNum, " single sender msg num", *singleSenderMsgNum, " send msg total num ", *senderNum**singleSenderMsgNum)
+ test.PressTest(*singleSenderMsgNum, *intervalTime, *senderNum)
+ select {}
+}
diff --git a/go/chao-sdk-core/cmd/reliability_open_im.go b/go/chao-sdk-core/cmd/reliability_open_im.go
new file mode 100644
index 0000000..07a15d6
--- /dev/null
+++ b/go/chao-sdk-core/cmd/reliability_open_im.go
@@ -0,0 +1,38 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package main
+
+import (
+ "errors"
+ "flag"
+ "github.com/openimsdk/openim-sdk-core/v3/test"
+ "github.com/openimsdk/tools/log"
+)
+
+func main() {
+ var senderNum *int //Number of users sending messages
+ var singleSenderMsgNum *int //Number of single user send messages
+ var intervalTime *int //Sending time interval, in millisecond
+
+ senderNum = flag.Int("sn", 200, "sender num")
+ singleSenderMsgNum = flag.Int("mn", 100, "single sender msg num")
+ intervalTime = flag.Int("t", 10, "interval time mill second")
+ flag.Parse()
+ test.InitMgr(*senderNum)
+ log.ZInfo(ctx, "logName", test.LogName, "logLevel", uint32(test.LogLevel))
+ log.ZWarn(ctx, "reliability test start ", errors.New(""), "sender num", *senderNum, " single sender msg num", *singleSenderMsgNum, " send msg total num ", *senderNum**singleSenderMsgNum)
+
+ test.ReliabilityTest(*singleSenderMsgNum, *intervalTime, 10, *senderNum)
+}
diff --git a/go/chao-sdk-core/cmd/sk_main.go b/go/chao-sdk-core/cmd/sk_main.go
new file mode 100644
index 0000000..b797984
--- /dev/null
+++ b/go/chao-sdk-core/cmd/sk_main.go
@@ -0,0 +1,192 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package main
+
+import (
+ "errors"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/test"
+ "github.com/openimsdk/tools/log"
+ "time"
+)
+
+var allDB []*db.DataBase
+
+//funcation TestDB(loginUserID string) {
+// operationID := utils.OperationIDGenerator()
+// dbUser, err := db.NewDataBase(loginUserID, "/data/test/Open-IM-Server/db/sdk/", operationID)
+// if err != nil {
+// log.Error(operationID, "NewDataBase failed ", err.Error(), loginUserID)
+// return
+// }
+// conversationList, err := dbUser.GetAllConversationList()
+// if err != nil {
+// log.Error(operationID, "GetAllConversationList failed ", err.Error())
+// }
+// log.Info(operationID, "GetAllConversationList len: ", len(conversationList))
+//
+// groupIDList, err := dbUser.GetJoinedGroupList()
+// if err != nil {
+// log.Error(operationID, "GetJoinedGroupList failed ", err.Error())
+// }
+// log.Info(operationID, "GetJoinedGroupList len: ", len(groupIDList))
+//
+// groupMemberList, err := dbUser.GetAllGroupMemberList()
+// if err != nil {
+// log.Error(operationID, "GetAllGroupMemberList failed ", err.Error())
+// }
+// log.Info(operationID, "GetAllGroupMemberList len: ", len(groupMemberList))
+// //GetAllMessageForTest
+// msgList, err := dbUser.GetAllMessageForTest()
+// if err != nil {
+// log.Error(operationID, "GetAllMessageForTest failed ", err.Error())
+// }
+// log.Info(operationID, "GetAllMessageForTest len: ", len(msgList))
+// allDB = append(allDB, dbUser)
+//
+// dbUser.CloseDB(operationID)
+// log.Info(operationID, "close db finished ")
+//
+//}
+
+func main() {
+ //var userIDList []string
+ //f, err := os.Open("/data/test/Open-IM-Server/db/sdk")
+ //if err != nil {
+ // log.Error("", "open failed ", err.Error())
+ // return
+ //}
+ //files, err := f.Readdir(-1)
+ //f.Close()
+ //if err != nil {
+ // log.Error("", "Readdir failed ", err.Error())
+ // return
+ //}
+ //
+ //for _, file := range files {
+ // begin := strings.Index(file.Name(), "OpenIM_v2_")
+ // end := strings.Index(file.Name(), ".db")
+ // userID := file.Name()[begin+len("OpenIM_v2_") : end]
+ // // OpenIM_v2_3380999461.db
+ // log.Info("", "file name: ", file.Name(), userID)
+ // TestDB(userID)
+ //}
+ //log.Info("", "files: ", len(allDB))
+ ////for _, v := range allDB {
+ //// v.CloseDB("aa")
+ ////}
+ //
+ //log.Info("", "gc begin ")
+ //runtime.GC()
+ //log.Info("", "gc end ")
+ //time.Sleep(100000 * time.Second)
+ //return
+ strMyUidx := "3370431052"
+ tokenx := test.RunGetToken(strMyUidx)
+ //tokenx := "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJVSUQiOiI3MDcwMDgxNTMiLCJQbGF0Zm9ybSI6IkFuZHJvaWQiLCJleHAiOjE5NjY0MTJ1XjJZGWj5fB3mqC7p6ytxSarvxZfsABwIjoxNjUxMDU1MDU2fQ.aWvmJ_sQxXmT5nKwiM5QsF9-tfkldzOYZtRD3nrUuko"
+ //go funcation() {
+ // time.Sleep(2 * time.Second)
+ // test.InOutLogou()
+ //}()
+
+ test.InOutDoTest(strMyUidx, tokenx, test.WSADDR, test.APIADDR)
+ // test.InOutDoTest(strMyUidx, tokenx, test.WSADDR, test.APIADDR)
+
+ // time.Sleep(5 * time.Second)
+ // test.SetListenerAndLogin(strMyUidx, tokenx)
+ //test.DoTestSetGroupMemberInfo("1104164664", "3188816039", "set ex")
+
+ // test.DotestGetGroupMemberList()
+ //time.Sleep(100000 * time.Second)
+ // test.DoTestCreateGroup()
+
+ // test.DoTestJoinGroup()
+ // test.DoTestGetGroupsInfo()
+ // test.DoTestDeleteAllMsgFromLocalAndSvr()
+
+ // println("token ", tokenx)
+ time.Sleep(100000 * time.Second)
+ b := utils.GetCurrentTimestampBySecond()
+ i := 0
+ for {
+ test.DoTestSendMsg2c2c(strMyUidx, "3380999461", i)
+ i++
+ time.Sleep(100 * time.Millisecond)
+ if i == 10000 {
+ break
+ }
+ log.ZWarn(ctx, "", errors.New(""), "10 * time.Millisecond ###################waiting... msg: ", i)
+ }
+
+ //log.Warn("", "cost time: ", utils.GetCurrentTimestampBySecond()-b)
+ time.Sleep(100000 * time.Second)
+ return
+ i = 0
+ for {
+ test.DoTestSendMsg2Group(strMyUidx, "42c9f515cb84ee0e82b3f3ce71eb14d6", i)
+ i++
+ time.Sleep(1000 * time.Millisecond)
+ if i == 10 {
+ break
+ }
+ log.ZWarn(ctx, "", errors.New(""), "1000 * time.Millisecond ###################waiting... msg: ", i)
+ }
+
+ i = 0
+ for {
+ test.DoTestSendMsg2Group(strMyUidx, "42c9f515cb84ee0e82b3f3ce71eb14d6", i)
+ i++
+ time.Sleep(10000 * time.Millisecond)
+ log.ZWarn(ctx, "", errors.New(""), "10000 * time.Millisecond ###################waiting... msg: ", i)
+ }
+
+ //reliabilityTest()
+ // test.PressTest(testClientNum, intervalSleep, imIP)
+}
+
+//
+//funcation main() {
+// testClientNum := 100
+// intervalSleep := 2
+// imIP := "43.128.5.63"
+
+//
+// msgNum := 1000
+// test.ReliabilityTest(msgNum, intervalSleep, imIP)
+// for i := 0; i < 6; i++ {
+// test.Msgwg.Wait()
+// }
+//
+// for {
+//
+// if test.CheckReliabilityResult() {
+// log.Warn("CheckReliabilityResult ok, again")
+//
+// } else {
+// log.Warn("CheckReliabilityResult failed , wait.... ")
+// }
+//
+// time.Sleep(time.Duration(10) * time.Second)
+// }
+//
+//}
+
+//funcation printCallerNameAndLine() string {
+// pc, _, line, _ := runtime.Caller(2)
+// return runtime.FuncForPC(pc).Name() + "()@" + strconv.Itoa(line) + ": "
+//}
+
+// myuid, maxuid, msgnum
diff --git a/go/chao-sdk-core/docs/.generated_docs b/go/chao-sdk-core/docs/.generated_docs
new file mode 100644
index 0000000..4219b46
--- /dev/null
+++ b/go/chao-sdk-core/docs/.generated_docs
@@ -0,0 +1,74 @@
+docs/.generated_docs
+docs/guide/en-US/cmd/openim/openim_color.md
+docs/guide/en-US/cmd/openim/openim_completion.md
+docs/guide/en-US/cmd/openim/openim_info.md
+docs/guide/en-US/cmd/openim/openim_jwt.md
+docs/guide/en-US/cmd/openim/openim_jwt_show.md
+docs/guide/en-US/cmd/openim/openim_jwt_sign.md
+docs/guide/en-US/cmd/openim/openim_jwt_verify.md
+docs/guide/en-US/cmd/openim/openim_new.md
+docs/guide/en-US/cmd/openim/openim_options.md
+docs/guide/en-US/cmd/openim/openim_policy.md
+docs/guide/en-US/cmd/openim/openim_policy_create.md
+docs/guide/en-US/cmd/openim/openim_policy_delete.md
+docs/guide/en-US/cmd/openim/openim_policy_get.md
+docs/guide/en-US/cmd/openim/openim_policy_list.md
+docs/guide/en-US/cmd/openim/openim_policy_update.md
+docs/guide/en-US/cmd/openim/openim_secret.md
+docs/guide/en-US/cmd/openim/openim_secret_create.md
+docs/guide/en-US/cmd/openim/openim_secret_delete.md
+docs/guide/en-US/cmd/openim/openim_secret_get.md
+docs/guide/en-US/cmd/openim/openim_secret_list.md
+docs/guide/en-US/cmd/openim/openim_secret_update.md
+docs/guide/en-US/cmd/openim/openim_set.md
+docs/guide/en-US/cmd/openim/openim-rpc-user.md
+docs/guide/en-US/cmd/openim/openim-rpc-user_create.md
+docs/guide/en-US/cmd/openim/openim-rpc-user_delete.md
+docs/guide/en-US/cmd/openim/openim-rpc-user_get.md
+docs/guide/en-US/cmd/openim/openim-rpc-user_list.md
+docs/guide/en-US/cmd/openim/openim-rpc-user_update.md
+docs/guide/en-US/cmd/openim/openim_validate.md
+docs/guide/en-US/cmd/openim/openim_version.md
+docs/guide/en-US/yaml/openim/openim.yaml
+docs/guide/en-US/yaml/openim/openim_color.yaml
+docs/guide/en-US/yaml/openim/openim_completion.yaml
+docs/guide/en-US/yaml/openim/openim_info.yaml
+docs/guide/en-US/yaml/openim/openim_jwt.yaml
+docs/guide/en-US/yaml/openim/openim_new.yaml
+docs/guide/en-US/yaml/openim/openim_options.yaml
+docs/guide/en-US/yaml/openim/openim_policy.yaml
+docs/guide/en-US/yaml/openim/openim_secret.yaml
+docs/guide/en-US/yaml/openim/openim_set.yaml
+docs/guide/en-US/yaml/openim/openim-rpc-user.yaml
+docs/guide/en-US/yaml/openim/openim_validate.yaml
+docs/guide/en-US/yaml/openim/openim_version.yaml
+docs/man/man1/openim-completion.1
+docs/man/man1/openim-info.1
+docs/man/man1/openim-jwt-show.1
+docs/man/man1/openim-jwt-sign.1
+docs/man/man1/openim-jwt-verify.1
+docs/man/man1/openim-jwt.1
+docs/man/man1/openim-new.1
+docs/man/man1/openim-options.1
+docs/man/man1/openim-policy-create.1
+docs/man/man1/openim-policy-delete.1
+docs/man/man1/openim-policy-get.1
+docs/man/man1/openim-policy-list.1
+docs/man/man1/openim-policy-update.1
+docs/man/man1/openim-policy.1
+docs/man/man1/openim-secret-create.1
+docs/man/man1/openim-secret-delete.1
+docs/man/man1/openim-secret-get.1
+docs/man/man1/openim-secret-list.1
+docs/man/man1/openim-secret-update.1
+docs/man/man1/openim-secret.1
+docs/man/man1/openim-set.1
+docs/man/man1/openim-user-create.1
+docs/man/man1/openim-user-delete.1
+docs/man/man1/openim-user-get.1
+docs/man/man1/openim-user-list.1
+docs/man/man1/openim-user-update.1
+docs/man/man1/openim-user.1
+docs/man/man1/openim-validate.1
+docs/man/man1/openim-version.1
+docs/man/man1/openim.1
diff --git a/go/chao-sdk-core/docs/CODEOWNERS b/go/chao-sdk-core/docs/CODEOWNERS
new file mode 100644
index 0000000..d7f0f6e
--- /dev/null
+++ b/go/chao-sdk-core/docs/CODEOWNERS
@@ -0,0 +1 @@
+* @openimsdk/go-code-review
diff --git a/go/chao-sdk-core/docs/contrib/cicd-actions.md b/go/chao-sdk-core/docs/contrib/cicd-actions.md
new file mode 100644
index 0000000..08cdb47
--- /dev/null
+++ b/go/chao-sdk-core/docs/contrib/cicd-actions.md
@@ -0,0 +1,129 @@
+# Continuous Integration and Automation
+
+Every change on the OpenIM repository, either made through a pull request or direct push, triggers the continuous integration pipelines defined within the same repository. Needless to say, all the OpenIM contributions can be merged until all the checks pass (AKA having green builds).
+
+- [Continuous Integration and Automation](#continuous-integration-and-automation)
+ - [CI Platforms](#ci-platforms)
+ - [GitHub Actions](#github-actions)
+ - [Running locally](#running-locally)
+
+## CI Platforms
+
+Currently, there are two different platforms involved in running the CI processes:
+
+- GitHub actions
+- Drone pipelines on CNCF infrastructure
+
+### GitHub Actions
+
+All the existing GitHub Actions are defined as YAML files under the `.github/workflows` directory. These can be grouped into:
+
+- **PR Checks**. These actions run all the required validations upon PR creation and update. Covering the DCO compliance check, `x86_64` test batteries (unit, integration, smoke), and code coverage.
+- **Repository automation**. Currently, it only covers issues and epic grooming.
+
+Everything runs on GitHub's provided runners; thus, the tests are limited to run in `x86_64` architectures.
+
+
+## Running locally
+
+A contributor should verify their changes locally to speed up the pull request process. Fortunately, all the CI steps can be on local environments, except for the publishing ones, through either of the following methods:
+
+**User Makefile:**
+```bash
+root@PS2023EVRHNCXG:~/workspaces/openim/openim-sdk-core# make help đ
+
+Usage: make ...
+
+Targets:
+
+all Run tidy, gen, add-copyright, format, lint, cover, build đ
+build Build binaries by default đ ī¸
+multiarch Build binaries for multiple platforms. See option PLATFORMS. đ
+tidy tidy go.mod â¨
+vendor vendor go.mod đĻ
+style code style -> fmt,vet,lint đ
+fmt Run go fmt against code. â¨
+vet Run go vet against code. â
+lint Check syntax and styling of go sources. âī¸
+format Gofmt (reformat) package sources (exclude vendor dir if existed). đ
+test Run unit test. đ§Ē
+cover Run unit test and get test coverage. đ
+updates Check for updates to go.mod dependencies đ
+imports task to automatically handle import packages in Go files using goimports tool đĨ
+clean Remove all files that are created by building. đī¸
+image Build docker images for host arch. đŗ
+image.multiarch Build docker images for multiple platforms. See option PLATFORMS. đđŗ
+push Build docker images for host arch and push images to registry. đ¤đŗ
+push.multiarch Build docker images for multiple platforms and push images to registry. đđ¤đŗ
+tools Install dependent tools. đ§°
+gen Generate all necessary files. đ§Š
+swagger Generate swagger document. đ
+serve-swagger Serve swagger spec and docs. đđ
+verify-copyright Verify the license headers for all files. â
+add-copyright Add copyright ensure source code files have license headers. đ
+release release the project đ
+help Show this help info. âšī¸
+help-all Show all help details info. âšī¸đ
+
+Options:
+
+DEBUG Whether or not to generate debug symbols. Default is 0. â
+
+BINS Binaries to build. Default is all binaries under cmd. đ ī¸
+This option is available when using: make {build}(.multiarch) đ§°
+Example: make build BINS="openim-api openim_cms_api".
+
+PLATFORMS Platform to build for. Default is linux_arm64 and linux_amd64. đ
+This option is available when using: make {build}.multiarch đ
+Example: make multiarch PLATFORMS="linux_s390x linux_mips64
+linux_mips64le darwin_amd64 windows_amd64 linux_amd64 linux_arm64".
+
+V Set to 1 enable verbose build. Default is 0. đ
+```
+
+
+How to Use Makefile to Help Contributors Build Projects Quickly đ
+
+The `make help` command is a handy tool that provides useful information on how to utilize the Makefile effectively. By running this command, contributors will gain insights into various targets and options available for building projects swiftly.
+
+Here's a breakdown of the targets and options provided by the Makefile:
+
+**Targets đ**
+
+1. `all`: This target runs multiple tasks like `tidy`, `gen`, `add-copyright`, `format`, `lint`, `cover`, and `build`. It ensures comprehensive project building.
+2. `build`: The primary target that compiles binaries by default. It is particularly useful for creating the necessary executable files.
+3. `multiarch`: A target that builds binaries for multiple platforms. Contributors can specify the desired platforms using the `PLATFORMS` option.
+4. `tidy`: This target cleans up the `go.mod` file, ensuring its consistency.
+5. `vendor`: A target that updates the project dependencies based on the `go.mod` file.
+6. `style`: Checks the code style using tools like `fmt`, `vet`, and `lint`. It ensures a consistent coding style throughout the project.
+7. `fmt`: Formats the code using the `go fmt` command, ensuring proper indentation and formatting.
+8. `vet`: Runs the `go vet` command to identify common errors in the code.
+9. `lint`: Validates the syntax and styling of Go source files using a linter.
+10. `format`: Reformats the package sources using `gofmt`. It excludes the vendor directory if it exists.
+11. `test`: Executes unit tests to ensure the functionality and stability of the code.
+12. `cover`: Performs unit tests and calculates the test coverage of the code.
+13. `updates`: Checks for updates to the project's dependencies specified in the `go.mod` file.
+14. `imports`: Automatically handles import packages in Go files using the `goimports` tool.
+15. `clean`: Removes all files generated during the build process, effectively cleaning up the project directory.
+16. `image`: Builds Docker images for the host architecture.
+17. `image.multiarch`: Similar to the `image` target, but it builds Docker images for multiple platforms. Contributors can specify the desired platforms using the `PLATFORMS` option.
+18. `push`: Builds Docker images for the host architecture and pushes them to a registry.
+19. `push.multiarch`: Builds Docker images for multiple platforms and pushes them to a registry. Contributors can specify the desired platforms using the `PLATFORMS` option.
+20. `tools`: Installs the necessary tools or dependencies required by the project.
+21. `gen`: Generates all the required files automatically.
+22. `swagger`: Generates the swagger document for the project.
+23. `serve-swagger`: Serves the swagger specification and documentation.
+24. `verify-copyright`: Verifies the license headers for all project files.
+25. `add-copyright`: Adds copyright headers to the source code files.
+26. `release`: Releases the project, presumably for distribution.
+27. `help`: Displays information about available targets and options.
+28. `help-all`: Shows detailed information about all available targets and options.
+
+**Options đ**
+
+1. `DEBUG`: A boolean option that determines whether or not to generate debug symbols. The default value is 0 (false).
+2. `BINS`: Specifies the binaries to build. By default, it builds all binaries under the `cmd` directory. Contributors can provide a list of specific binaries using this option.
+3. `PLATFORMS`: Specifies the platforms to build for. The default platforms are `linux_arm64` and `linux_amd64`. Contributors can specify multiple platforms by providing a space-separated list of platform names.
+4. `V`: A boolean option that enables verbose build output when set to 1 (true). The default value is 0 (false).
+
+With these targets and options in place, contributors can efficiently build projects using the Makefile. Happy coding! đđ
diff --git a/go/chao-sdk-core/docs/contrib/code_conventions.md b/go/chao-sdk-core/docs/contrib/code_conventions.md
new file mode 100644
index 0000000..1387da2
--- /dev/null
+++ b/go/chao-sdk-core/docs/contrib/code_conventions.md
@@ -0,0 +1,38 @@
+# Code conventions
+
+- [Code conventions](#code-conventions)
+ - [POSIX shell](#posix-shell)
+ - [Go](#go)
+ - [Directory and file conventions](#directory-and-file-conventions)
+ - [Testing conventions](#testing-conventions)
+
+## POSIX shell
+
+- [Style guide](https://google.github.io/styleguide/shell.xml)
+
+## Go
+
+- [Go Code Review Comments](https://github.com/golang/go/wiki/CodeReviewComments)
+- [Effective Go](https://golang.org/doc/effective_go.html)
+- Know and avoid [Go landmines](https://gist.github.com/lavalamp/4bd23295a9f32706a48f)
+- Comment your code.
+ - [Go's commenting conventions](http://blog.golang.org/godoc-documenting-go-code)
+ - If reviewers ask questions about why the code is the way it is, that's a sign that comments might be helpful.
+- Command-line flags should use dashes, not underscores
+- Naming
+ - Please consider package name when selecting an interface name, and avoid redundancy. For example, `storage.Interface` is better than `storage.StorageInterface`.
+ - Do not use uppercase characters, underscores, or dashes in package names.
+ - Please consider parent directory name when choosing a package name. For example, `pkg/controllers/autoscaler/foo.go` should say `package autoscaler` not `package autoscalercontroller`.
+ - Unless there's a good reason, the `package foo` line should match the name of the directory in which the `.go` file exists.
+ - Importers can use a different name if they need to disambiguate.
+
+## Directory and file conventions
+
+- Avoid general utility packages. Packages called "util" are suspect. Instead, derive a name that describes your desired function. For example, the utility functions dealing with waiting for operations are in the `wait` package and include functionality like `Poll`. The full name is `wait.Poll`.
+- All filenames should be lowercase.
+- All source files and directories should use underscores, not dashes.
+ - Package directories should generally avoid using separators as much as possible. When package names are multiple words, they usually should be in nested subdirectories.
+
+## Testing conventions
+
+Please refer to [TESTING.md](../../tests/TESTING.md) document.
diff --git a/go/chao-sdk-core/docs/contrib/development.md b/go/chao-sdk-core/docs/contrib/development.md
new file mode 100644
index 0000000..64aa08c
--- /dev/null
+++ b/go/chao-sdk-core/docs/contrib/development.md
@@ -0,0 +1,80 @@
+# Development Guide
+
+Since OpenIM is written in Go, it is fair to assume that the Go tools are all one needs to contribute to this project. Unfortunately, there is a point where this no longer holds true when required to test or build local changes. This document elaborates on the required tooling for OpenIM development.
+
+- [Development Guide](#development-guide)
+ - [Non-Linux environment prerequisites](#non-linux-environment-prerequisites)
+ - [Windows Setup](#windows-setup)
+ - [macOS Setup](#macos-setup)
+ - [Installing Required Software](#installing-required-software)
+ - [Go](#go)
+ - [Docker](#docker)
+ - [Vagrant](#vagrant)
+ - [Cloning, Building and Testing OpenIM](#cloning-building-and-testing-openim)
+ - [Dependency management](#dependency-management)
+
+## Non-Linux environment prerequisites
+
+All the test and build scripts within this repository were created to be run on GNU Linux development environments. Due to this, it is suggested to use the virtual machine defined on this repository's [Vagrantfile](../../Vagrantfile) to use them.
+
+Either way, if one still wants to build and test OpenIM on non-Linux environments, specific setups are to be followed.
+
+### Windows Setup
+
+To build OpenIM on Windows is only possible for versions that support Windows Subsystem for Linux (WSL). If the development environment in question has Windows 10, Version 2004, Build 19041 or higher, [follow these instructions to install WSL2](https://docs.microsoft.com/en-us/windows/wsl/install-win10); otherwise, use a Linux Virtual machine instead.
+
+### macOS Setup
+
+The shell scripts in charge of the build and test processes rely on GNU utils (i.e. `sed`), [which slightly differ on macOS](https://unix.stackexchange.com/a/79357), meaning that one must make some adjustments before using them.
+
+First, install the GNU utils:
+
+```sh
+brew install coreutils findutils gawk gnu-sed gnu-tar grep make
+```
+
+Then update the shell init script (i.e. `.bashrc`) to prepend the GNU Utils to the `$PATH` variable
+
+```sh
+GNUBINS="$(find /usr/local/opt -type d -follow -name gnubin -print)"
+
+for bindir in ${GNUBINS[@]}; do
+ PATH=$bindir:$PATH
+done
+
+export PATH
+```
+
+## Installing Required Software
+
+### Go
+
+It is well known that OpenIM is written in [Go](http://golang.org). Please follow the [Go Getting Started guide](https://golang.org/doc/install) to install and set up the Go tools used to compile and run the test batteries.
+
+| OpenIM | requires Go |
+|----------------|-------------|
+| 2.24 - 3.00 | 1.15 + |
+| 3.30 + | 1.18 + |
+
+### Docker
+
+OpenIM build and test processes development require Docker to run certain steps. [Follow the Docker website instructions to install Docker](https://docs.docker.com/get-docker/) in the development environment.
+
+### Vagrant
+
+As described in the [Testing documentation](../../tests/TESTING.md), all the smoke tests are run in virtual machines managed by Vagrant. To install Vagrant in the development environment, [follow the instructions from the Hashicorp website](https://www.vagrantup.com/downloads), alongside any of the following hypervisors:
+
+- [VirtualBox](https://www.virtualbox.org/)
+- [libvirt](https://libvirt.org/) and the [vagrant-libvirt plugin](https://github.com/vagrant-libvirt/vagrant-libvirt#installation)
+
+## Cloning, Building and Testing OpenIM
+
+These topics already have been addressed on their respective documents:
+
+- [Git Workflow](./git-workflow.md)
+- [Building](../../BUILDING.md)
+- [Testing](../../tests/TESTING.md)
+
+## Dependency management
+
+OpenIM uses [go modules](https://github.com/golang/go/wiki/Modules) to manage dependencies.
diff --git a/go/chao-sdk-core/docs/contrib/git_workflow.md b/go/chao-sdk-core/docs/contrib/git_workflow.md
new file mode 100644
index 0000000..3b97b95
--- /dev/null
+++ b/go/chao-sdk-core/docs/contrib/git_workflow.md
@@ -0,0 +1,102 @@
+# Git workflows
+
+This document is an overview of OpenIM git workflow. It includes conventions, tips, and how to maintain good repository hygiene.
+
+- [Git workflows](#git-workflows)
+ - [Branching model](#branching-model)
+ - [Branch naming conventions](#branch-naming-conventions)
+ - [Backport policy](#backport-policy)
+ - [Git operations](#git-operations)
+ - [Setting up](#setting-up)
+ - [Branching out](#branching-out)
+ - [Keeping local branches in sync](#keeping-local-branches-in-sync)
+ - [Pushing changes](#pushing-changes)
+
+## Branching model
+
+OpenIM project uses the [GitHub flow](https://docs.github.com/en/get-started/quickstart/github-flow) as its branching model, where most of the changes come from repositories forks instead of branches within the same one.
+
+### Branch naming conventions
+
+Every forked repository works independently, meaning that any contributor can create branches with the name they see fit. However, it is worth noting that OpenIM mirrors [OpenIM version skew policy](https://github.com/openimsdk/openim-sdk-core/releases) by maintaining release branches for the most recent three minor releases. The only exception is that the main branch mirrors the latest OpenIM release (3.10) instead of using a `release-` prefixed one.
+
+```text
+main -------------------------------------------. (OpenIM 3.10)
+release-3.0.0 \---------------|---------------. (OpenIM 3.00)
+release-2.4.0 \---------------. (OpenIM 2.40)
+```
+
+
+### Backport policy
+
+All new work happens on the main branch, which means that for most cases, one should branch out from there and create the pull request against it. If the change involves adding a feature or patching OpenIM, the maintainers will backport it into the supported release branches.
+
+## Git operations
+
+There are everyday tasks related to git that every contributor needs to perform, and this section elaborates on them.
+
+### Setting up
+
+Creating a OpenIM fork, cloning it, and setting its upstream remote can be summarized on:
+
+1. Visit
+2. Click the `Fork` button (top right) to establish a cloud-based fork
+3. Clone fork to local storage
+4. Add to your fork OpenIM remote as upstream
+
+Once cloned, in code it would look this way:
+
+```sh
+## Clone fork to local storage
+export user="your github profile name"
+git clone https://github.com/$user/OpenIM.git
+# or: git clone git@github.com:$user/OpenIM.git
+
+## Add OpenIM as upstream to your fork
+cd OpenIM
+git remote add upstream https://github.com/openimsdk/openim-sdk-core.git
+# or: git remote add upstream git@github.com:OpenIMSDK/openim-sdk-core.git
+
+## Ensure to never push to upstream directly
+git remote set-url --push upstream no_push
+
+## Confirm that your remotes make sense:
+git remote -v
+```
+
+### Branching out
+
+Every time one wants to work on a new OpenIM feature, we do:
+
+1. Get local main branch up to date
+2. Create a new branch from the main one (i.e.: myfeature branch )
+
+In code it would look this way:
+
+```sh
+## Get local main up to date
+# Assuming the OpenIM clone is the current working directory
+git fetch upstream
+git checkout main
+git rebase upstream/main
+
+## Create a new branch from main
+git checkout -b myfeature
+```
+
+### Keeping local branches in sync
+
+Either when branching out from main or a release one, keep in mind it is worth checking if any change has been pushed upstream by doing:
+
+```sh
+git fetch upstream
+git rebase upstream/main
+```
+
+It is suggested to `fetch` then `rebase` instead of `pull` since the latter does a merge, which leaves merge commits. For this, one can consider changing the local repository configuration by doing `git config branch.autoSetupRebase always` to change the behavior of `git pull`, or another non-merge option such as `git pull --rebase`.
+
+### Pushing changes
+
+For commit messages and signatures please refer to the [CONTRIBUTING.md](../../CONTRIBUTING.md) document.
+
+Nobody should push directly to upstream, even if one has such contributor access; instead, prefer [Github's pull request](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests) mechanism to contribute back into OpenIM. For expectations and guidelines about pull requests, consult the [CONTRIBUTING.md](../../CONTRIBUTING.md) document.
diff --git a/go/chao-sdk-core/go.mod b/go/chao-sdk-core/go.mod
new file mode 100644
index 0000000..2b75a42
--- /dev/null
+++ b/go/chao-sdk-core/go.mod
@@ -0,0 +1,43 @@
+module github.com/openimsdk/openim-sdk-core/v3
+
+go 1.21
+
+require (
+ github.com/golang/protobuf v1.5.4
+ github.com/gorilla/websocket v1.4.2
+ github.com/jinzhu/copier v0.4.0
+ github.com/lestrrat-go/file-rotatelogs v2.4.0+incompatible // indirect
+ github.com/pkg/errors v0.9.1
+ google.golang.org/protobuf v1.33.0 // indirect
+ gorm.io/driver/sqlite v1.5.5
+ nhooyr.io/websocket v1.8.10
+)
+
+require golang.org/x/net v0.22.0
+
+require (
+ github.com/google/go-cmp v0.6.0
+ github.com/openimsdk/protocol v0.0.69-alpha.16
+ github.com/openimsdk/tools v0.0.49-alpha.12
+ github.com/patrickmn/go-cache v2.1.0+incompatible
+ go.etcd.io/etcd/api/v3 v3.5.13
+ golang.org/x/image v0.15.0
+ gorm.io/gorm v1.25.10
+)
+
+require (
+ github.com/coreos/go-semver v0.3.0 // indirect
+ github.com/jinzhu/inflection v1.0.0 // indirect
+ github.com/jinzhu/now v1.1.5 // indirect
+ github.com/lestrrat-go/strftime v1.0.6 // indirect
+ github.com/mattn/go-sqlite3 v1.14.22 // indirect
+ go.uber.org/atomic v1.7.0 // indirect
+ go.uber.org/multierr v1.6.0 // indirect
+ go.uber.org/zap v1.24.0 // indirect
+ golang.org/x/sys v0.18.0 // indirect
+ golang.org/x/text v0.14.0 // indirect
+ google.golang.org/genproto/googleapis/rpc v0.0.0-20240318140521-94a12d6c2237 // indirect
+ google.golang.org/grpc v1.62.1 // indirect
+)
+
+//replace github.com/openimsdk/protocol => /Users/chao/Desktop/project/protocol
diff --git a/go/chao-sdk-core/go.sum b/go/chao-sdk-core/go.sum
new file mode 100644
index 0000000..d0c5e2f
--- /dev/null
+++ b/go/chao-sdk-core/go.sum
@@ -0,0 +1,77 @@
+github.com/benbjohnson/clock v1.1.0 h1:Q92kusRqC1XV2MjkWETPvjJVqKetz1OzxZB7mHJLju8=
+github.com/benbjohnson/clock v1.1.0/go.mod h1:J11/hYXuz8f4ySSvYwY0FKfm+ezbsZBKZxNJlLklBHA=
+github.com/coreos/go-semver v0.3.0 h1:wkHLiw0WNATZnSG7epLsujiMCgPAc9xhjJ4tgnAxmfM=
+github.com/coreos/go-semver v0.3.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk=
+github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
+github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
+github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
+github.com/golang/protobuf v1.5.4 h1:i7eJL8qZTpSEXOPTxNKhASYpMn+8e5Q6AdndVa1dWek=
+github.com/golang/protobuf v1.5.4/go.mod h1:lnTiLA8Wa4RWRcIUkrtSVa5nRhsEGBg48fD6rSs7xps=
+github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
+github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
+github.com/gorilla/websocket v1.4.2 h1:+/TMaTYc4QFitKJxsQ7Yye35DkWvkdLcvGKqM+x0Ufc=
+github.com/gorilla/websocket v1.4.2/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE=
+github.com/jinzhu/copier v0.4.0 h1:w3ciUoD19shMCRargcpm0cm91ytaBhDvuRpz1ODO/U8=
+github.com/jinzhu/copier v0.4.0/go.mod h1:DfbEm0FYsaqBcKcFuvmOZb218JkPGtvSHsKg8S8hyyg=
+github.com/jinzhu/inflection v1.0.0 h1:K317FqzuhWc8YvSVlFMCCUb36O/S9MCKRDI7QkRKD/E=
+github.com/jinzhu/inflection v1.0.0/go.mod h1:h+uFLlag+Qp1Va5pdKtLDYj+kHp5pxUVkryuEj+Srlc=
+github.com/jinzhu/now v1.1.5 h1:/o9tlHleP7gOFmsnYNz3RGnqzefHA47wQpKrrdTIwXQ=
+github.com/jinzhu/now v1.1.5/go.mod h1:d3SSVoowX0Lcu0IBviAWJpolVfI5UJVZZ7cO71lE/z8=
+github.com/jonboulle/clockwork v0.4.0 h1:p4Cf1aMWXnXAUh8lVfewRBx1zaTSYKrKMF2g3ST4RZ4=
+github.com/jonboulle/clockwork v0.4.0/go.mod h1:xgRqUGwRcjKCO1vbZUEtSLrqKoPSsUpK7fnezOII0kc=
+github.com/lestrrat-go/envload v0.0.0-20180220234015-a3eb8ddeffcc h1:RKf14vYWi2ttpEmkA4aQ3j4u9dStX2t4M8UM6qqNsG8=
+github.com/lestrrat-go/envload v0.0.0-20180220234015-a3eb8ddeffcc/go.mod h1:kopuH9ugFRkIXf3YoqHKyrJ9YfUFsckUU9S7B+XP+is=
+github.com/lestrrat-go/file-rotatelogs v2.4.0+incompatible h1:Y6sqxHMyB1D2YSzWkLibYKgg+SwmyFU9dF2hn6MdTj4=
+github.com/lestrrat-go/file-rotatelogs v2.4.0+incompatible/go.mod h1:ZQnN8lSECaebrkQytbHj4xNgtg8CR7RYXnPok8e0EHA=
+github.com/lestrrat-go/strftime v1.0.6 h1:CFGsDEt1pOpFNU+TJB0nhz9jl+K0hZSLE205AhTIGQQ=
+github.com/lestrrat-go/strftime v1.0.6/go.mod h1:f7jQKgV5nnJpYgdEasS+/y7EsTb8ykN2z68n3TtcTaw=
+github.com/mattn/go-sqlite3 v1.14.22 h1:2gZY6PC6kBnID23Tichd1K+Z0oS6nE/XwU+Vz/5o4kU=
+github.com/mattn/go-sqlite3 v1.14.22/go.mod h1:Uh1q+B4BYcTPb+yiD3kU8Ct7aC0hY9fxUwlHK0RXw+Y=
+github.com/openimsdk/protocol v0.0.69-alpha.16 h1:ciSqm2rjBdpScpkQm3wPjAFv0YbIRp8MITRkDZWVv6c=
+github.com/openimsdk/protocol v0.0.69-alpha.16/go.mod h1:OZQA9FR55lseYoN2Ql1XAHYKHJGu7OMNkUbuekrKCM8=
+github.com/openimsdk/tools v0.0.49-alpha.12 h1:vsr63W1kHW1dEw9yelMhmr72WmsrjKfs2vXww3upfWI=
+github.com/openimsdk/tools v0.0.49-alpha.12/go.mod h1:g7mkHXYUPi0/8aAX8VPMHpnb3hqdV69Jph+bXOGvvNM=
+github.com/patrickmn/go-cache v2.1.0+incompatible h1:HRMgzkcYKYpi3C8ajMPV8OFXaaRUnok+kx1WdO15EQc=
+github.com/patrickmn/go-cache v2.1.0+incompatible/go.mod h1:3Qf8kWWT7OJRJbdiICTKqZju1ZixQ/KpMGzzAfe6+WQ=
+github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
+github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
+github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
+github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
+github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
+github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
+github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk=
+github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo=
+go.etcd.io/etcd/api/v3 v3.5.13 h1:8WXU2/NBge6AUF1K1gOexB6e07NgsN1hXK0rSTtgSp4=
+go.etcd.io/etcd/api/v3 v3.5.13/go.mod h1:gBqlqkcMMZMVTMm4NDZloEVJzxQOQIls8splbqBDa0c=
+go.uber.org/atomic v1.7.0 h1:ADUqmZGgLDDfbSL9ZmPxKTybcoEYHgpYfELNoN+7hsw=
+go.uber.org/atomic v1.7.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc=
+go.uber.org/goleak v1.1.11 h1:wy28qYRKZgnJTxGxvye5/wgWr1EKjmUDGYox5mGlRlI=
+go.uber.org/goleak v1.1.11/go.mod h1:cwTWslyiVhfpKIDGSZEM2HlOvcqm+tG4zioyIeLoqMQ=
+go.uber.org/multierr v1.6.0 h1:y6IPFStTAIT5Ytl7/XYmHvzXQ7S3g/IeZW9hyZ5thw4=
+go.uber.org/multierr v1.6.0/go.mod h1:cdWPpRnG4AhwMwsgIHip0KRBQjJy5kYEpYjJxpXp9iU=
+go.uber.org/zap v1.24.0 h1:FiJd5l1UOLj0wCgbSE0rwwXHzEdAZS6hiiSnxJN/D60=
+go.uber.org/zap v1.24.0/go.mod h1:2kMP+WWQ8aoFoedH3T2sq6iJ2yDWpHbP0f6MQbS9Gkg=
+golang.org/x/image v0.15.0 h1:kOELfmgrmJlw4Cdb7g/QGuB3CvDrXbqEIww/pNtNBm8=
+golang.org/x/image v0.15.0/go.mod h1:HUYqC05R2ZcZ3ejNQsIHQDQiwWM4JBqmm6MKANTp4LE=
+golang.org/x/net v0.22.0 h1:9sGLhx7iRIHEiX0oAJ3MRZMUCElJgy7Br1nO+AMN3Tc=
+golang.org/x/net v0.22.0/go.mod h1:JKghWKKOSdJwpW2GEx0Ja7fmaKnMsbu+MWVZTokSYmg=
+golang.org/x/sys v0.18.0 h1:DBdB3niSjOA/O0blCZBqDefyWNYveAYMNF1Wum0DYQ4=
+golang.org/x/sys v0.18.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
+golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ=
+golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU=
+google.golang.org/genproto/googleapis/rpc v0.0.0-20240318140521-94a12d6c2237 h1:NnYq6UN9ReLM9/Y01KWNOWyI5xQ9kbIms5GGJVwS/Yc=
+google.golang.org/genproto/googleapis/rpc v0.0.0-20240318140521-94a12d6c2237/go.mod h1:WtryC6hu0hhx87FDGxWCDptyssuo68sk10vYjF+T9fY=
+google.golang.org/grpc v1.62.1 h1:B4n+nfKzOICUXMgyrNd19h/I9oH0L1pizfk1d4zSgTk=
+google.golang.org/grpc v1.62.1/go.mod h1:IWTG0VlJLCh1SkC58F7np9ka9mx/WNkjl4PGJaiq+QE=
+google.golang.org/protobuf v1.33.0 h1:uNO2rsAINq/JlFpSdYEKIZ0uKD/R9cpdv0T+yoGwGmI=
+google.golang.org/protobuf v1.33.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos=
+gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY=
+gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ=
+gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
+gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
+gorm.io/driver/sqlite v1.5.5 h1:7MDMtUZhV065SilG62E0MquljeArQZNfJnjd9i9gx3E=
+gorm.io/driver/sqlite v1.5.5/go.mod h1:6NgQ7sQWAIFsPrJJl1lSNSu2TABh0ZZ/zm5fosATavE=
+gorm.io/gorm v1.25.10 h1:dQpO+33KalOA+aFYGlK+EfxcI5MbO7EP2yYygwh9h+s=
+gorm.io/gorm v1.25.10/go.mod h1:hbnx/Oo0ChWMn1BIhpy1oYozzpM15i4YPuHDmfYtwg8=
+nhooyr.io/websocket v1.8.10 h1:mv4p+MnGrLDcPlBoWsvPP7XCzTYMXP9F9eIGoKbgx7Q=
+nhooyr.io/websocket v1.8.10/go.mod h1:rN9OFWIUwuxg4fR5tELlYC04bXYowCP9GX47ivo2l+c=
diff --git a/go/chao-sdk-core/identifier.sqlite b/go/chao-sdk-core/identifier.sqlite
new file mode 100644
index 0000000..e69de29
diff --git a/go/chao-sdk-core/internal/business/business.go b/go/chao-sdk-core/internal/business/business.go
new file mode 100644
index 0000000..ecc02ce
--- /dev/null
+++ b/go/chao-sdk-core/internal/business/business.go
@@ -0,0 +1,49 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package business
+
+import (
+ "context"
+ "github.com/openimsdk/openim-sdk-core/v3/open_im_sdk_callback"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/db_interface"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/sdk_struct"
+
+ "github.com/openimsdk/protocol/sdkws"
+
+ "github.com/openimsdk/tools/log"
+)
+
+type Business struct {
+ listener func() open_im_sdk_callback.OnCustomBusinessListener
+ db db_interface.DataBase
+}
+
+func NewBusiness(db db_interface.DataBase) *Business {
+ return &Business{
+ db: db,
+ }
+}
+
+func (b *Business) DoNotification(ctx context.Context, msg *sdkws.MsgData) {
+ var n sdk_struct.NotificationElem
+ err := utils.JsonStringToStruct(string(msg.Content), &n)
+ if err != nil {
+ log.ZError(ctx, "unmarshal failed", err, "msg", msg)
+ return
+
+ }
+ b.listener().OnRecvCustomBusinessMessage(n.Detail)
+}
diff --git a/go/chao-sdk-core/internal/business/open_im_sdk_business.go b/go/chao-sdk-core/internal/business/open_im_sdk_business.go
new file mode 100644
index 0000000..79527c1
--- /dev/null
+++ b/go/chao-sdk-core/internal/business/open_im_sdk_business.go
@@ -0,0 +1,23 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package business
+
+import (
+ "github.com/openimsdk/openim-sdk-core/v3/open_im_sdk_callback"
+)
+
+func (w *Business) SetListener(listener func() open_im_sdk_callback.OnCustomBusinessListener) {
+ w.listener = listener
+}
diff --git a/go/chao-sdk-core/internal/cache/cahe.go b/go/chao-sdk-core/internal/cache/cahe.go
new file mode 100644
index 0000000..ed719b1
--- /dev/null
+++ b/go/chao-sdk-core/internal/cache/cahe.go
@@ -0,0 +1,72 @@
+package cache
+
+import "sync"
+
+// Cache is a Generic sync.Map structure.
+type Cache[K comparable, V any] struct {
+ m sync.Map
+}
+
+func NewCache[K comparable, V any]() *Cache[K, V] {
+ return &Cache[K, V]{}
+}
+
+// Load returns the value stored in the map for a key, or nil if no value is present.
+func (c *Cache[K, V]) Load(key K) (value V, ok bool) {
+ rawValue, ok := c.m.Load(key)
+ if !ok {
+ return
+ }
+ return rawValue.(V), ok
+}
+
+// Store sets the value for a key.
+func (c *Cache[K, V]) Store(key K, value V) {
+ c.m.Store(key, value)
+}
+
+// StoreAll sets all value by f's key.
+func (c *Cache[K, V]) StoreAll(f func(value V) K, values []V) {
+ for _, v := range values {
+ c.m.Store(f(v), v)
+ }
+}
+
+// LoadOrStore returns the existing value for the key if present.
+func (c *Cache[K, V]) LoadOrStore(key K, value V) (actual V, loaded bool) {
+ rawValue, loaded := c.m.LoadOrStore(key, value)
+ return rawValue.(V), loaded
+}
+
+// Delete deletes the value for a key.
+func (c *Cache[K, V]) Delete(key K) {
+ c.m.Delete(key)
+}
+
+// DeleteAll deletes all values.
+func (c *Cache[K, V]) DeleteAll() {
+ c.m.Range(func(key, value interface{}) bool {
+ c.m.Delete(key)
+ return true
+ })
+}
+
+// RangeAll returns all values in the map.
+func (c *Cache[K, V]) RangeAll() (values []V) {
+ c.m.Range(func(rawKey, rawValue interface{}) bool {
+ values = append(values, rawValue.(V))
+ return true
+ })
+ return values
+}
+
+// RangeCon returns values in the map that satisfy condition f.
+func (c *Cache[K, V]) RangeCon(f func(key K, value V) bool) (values []V) {
+ c.m.Range(func(rawKey, rawValue interface{}) bool {
+ if f(rawKey.(K), rawValue.(V)) {
+ values = append(values, rawValue.(V))
+ }
+ return true
+ })
+ return values
+}
diff --git a/go/chao-sdk-core/internal/common/common.go b/go/chao-sdk-core/internal/common/common.go
new file mode 100644
index 0000000..76250b5
--- /dev/null
+++ b/go/chao-sdk-core/internal/common/common.go
@@ -0,0 +1,33 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package common
+
+import (
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+
+ "github.com/golang/protobuf/proto"
+ "github.com/openimsdk/protocol/sdkws"
+)
+
+func UnmarshalTips(msg *sdkws.MsgData, detail proto.Message) error {
+ var tips sdkws.TipsComm
+ if err := proto.Unmarshal(msg.Content, &tips); err != nil {
+ return utils.Wrap(err, "")
+ }
+ if err := proto.Unmarshal(tips.Detail, detail); err != nil {
+ return utils.Wrap(err, "")
+ }
+ return nil
+}
diff --git a/go/chao-sdk-core/internal/common/object_storage.go b/go/chao-sdk-core/internal/common/object_storage.go
new file mode 100644
index 0000000..523ccfb
--- /dev/null
+++ b/go/chao-sdk-core/internal/common/object_storage.go
@@ -0,0 +1,33 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package common
+
+import (
+ "bytes"
+ _ "image/gif"
+ _ "image/jpeg"
+ _ "image/png"
+)
+
+type ObjectStorage interface {
+ UploadImage(filePath string, onProgressFun func(int)) (string, string, error)
+ UploadSound(filePath string, onProgressFun func(int)) (string, string, error)
+ UploadFile(filePath string, onProgressFun func(int)) (string, string, error)
+ UploadVideo(videoPath, snapshotPath string, onProgressFun func(int)) (string, string, string, string, error)
+ UploadImageByBuffer(buffer *bytes.Buffer, size int64, imageType string, onProgressFun func(int)) (string, string, error)
+ UploadSoundByBuffer(buffer *bytes.Buffer, size int64, fileType string, onProgressFun func(int)) (string, string, error)
+ UploadFileByBuffer(buffer *bytes.Buffer, size int64, fileType string, onProgressFun func(int)) (string, string, error)
+ UploadVideoByBuffer(videoBuffer, snapshotBuffer *bytes.Buffer, videoSize, snapshotSize int64, videoType, snapshotType string, onProgressFun func(int)) (string, string, string, string, error)
+}
diff --git a/go/chao-sdk-core/internal/conversation_msg/conversation.go b/go/chao-sdk-core/internal/conversation_msg/conversation.go
new file mode 100644
index 0000000..bbd4da6
--- /dev/null
+++ b/go/chao-sdk-core/internal/conversation_msg/conversation.go
@@ -0,0 +1,1178 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package conversation_msg
+
+import (
+ "context"
+ "errors"
+ _ "github.com/openimsdk/openim-sdk-core/v3/internal/common"
+ "github.com/openimsdk/openim-sdk-core/v3/internal/util"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/common"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ sdk "github.com/openimsdk/openim-sdk-core/v3/pkg/sdk_params_callback"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/sdkerrs"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/server_api_params"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/sdk_struct"
+ "github.com/openimsdk/tools/utils/datautil"
+ "sort"
+ "strings"
+ "time"
+
+ "github.com/jinzhu/copier"
+
+ "github.com/openimsdk/tools/log"
+
+ "github.com/openimsdk/protocol/msg"
+ "github.com/openimsdk/protocol/sdkws"
+
+ pbConversation "github.com/openimsdk/protocol/conversation"
+)
+
+func (c *Conversation) setConversation(ctx context.Context, apiReq *pbConversation.SetConversationsReq, localConversation *model_struct.LocalConversation) error {
+ apiReq.Conversation.ConversationID = localConversation.ConversationID
+ apiReq.Conversation.ConversationType = localConversation.ConversationType
+ apiReq.Conversation.UserID = localConversation.UserID
+ apiReq.Conversation.GroupID = localConversation.GroupID
+ apiReq.UserIDs = []string{c.loginUserID}
+ if err := util.ApiPost(ctx, constant.SetConversationsRouter, apiReq, nil); err != nil {
+ return err
+ }
+ return nil
+}
+
+func (c *Conversation) getServerConversationList(ctx context.Context) ([]*model_struct.LocalConversation, error) {
+ resp, err := util.CallApi[pbConversation.GetAllConversationsResp](ctx, constant.GetAllConversationsRouter, pbConversation.GetAllConversationsReq{OwnerUserID: c.loginUserID})
+ if err != nil {
+ return nil, err
+ }
+ return datautil.Batch(ServerConversationToLocal, resp.Conversations), nil
+}
+
+func (c *Conversation) getServerConversationsByIDs(ctx context.Context, conversations []string) ([]*model_struct.LocalConversation, error) {
+ resp, err := util.CallApi[pbConversation.GetConversationsResp](ctx, constant.GetConversationsRouter, pbConversation.GetConversationsReq{OwnerUserID: c.loginUserID, ConversationIDs: conversations})
+ if err != nil {
+ return nil, err
+ }
+ return datautil.Batch(ServerConversationToLocal, resp.Conversations), nil
+}
+
+func (c *Conversation) getServerHasReadAndMaxSeqs(ctx context.Context, conversationIDs ...string) (map[string]*msg.Seqs, error) {
+ resp := &msg.GetConversationsHasReadAndMaxSeqResp{}
+ req := msg.GetConversationsHasReadAndMaxSeqReq{UserID: c.loginUserID}
+ req.ConversationIDs = conversationIDs
+ err := util.ApiPost(ctx, constant.GetConversationsHasReadAndMaxSeqRouter, &req, resp)
+ if err != nil {
+ log.ZError(ctx, "getServerHasReadAndMaxSeqs err", err)
+ return nil, err
+ }
+ return resp.Seqs, nil
+}
+
+func (c *Conversation) getAdvancedHistoryMessageList(ctx context.Context, req sdk.GetAdvancedHistoryMessageListParams, isReverse bool) (*sdk.GetAdvancedHistoryMessageListCallback, error) {
+ t := time.Now()
+ var messageListCallback sdk.GetAdvancedHistoryMessageListCallback
+ var conversationID string
+ var startTime int64
+ var sessionType int
+ var list []*model_struct.LocalChatLog
+ var err error
+ var messageList sdk_struct.NewMsgList
+ var notStartTime bool
+ conversationID = req.ConversationID
+ lc, err := c.db.GetConversation(ctx, conversationID)
+ if err != nil {
+ return nil, err
+ }
+ sessionType = int(lc.ConversationType)
+ if req.StartClientMsgID == "" {
+ notStartTime = true
+ } else {
+ m, err := c.db.GetMessage(ctx, conversationID, req.StartClientMsgID)
+ if err != nil {
+ return nil, err
+ }
+ startTime = m.SendTime
+ }
+ log.ZDebug(ctx, "Assembly conversation parameters", "cost time", time.Since(t), "conversationID",
+ conversationID, "startTime:", startTime, "count:", req.Count, "not start_time", notStartTime)
+ t = time.Now()
+ if notStartTime {
+ list, err = c.db.GetMessageListNoTime(ctx, conversationID, req.Count, isReverse)
+ } else {
+ list, err = c.db.GetMessageList(ctx, conversationID, req.Count, startTime, isReverse)
+ }
+ log.ZDebug(ctx, "db get messageList", "cost time", time.Since(t), "len", len(list), "err",
+ err, "conversationID", conversationID)
+
+ if err != nil {
+ return nil, err
+ }
+ rawMessageLength := len(list)
+ t = time.Now()
+ if rawMessageLength < req.Count {
+ maxSeq, minSeq, lostSeqListLength := c.messageBlocksInternalContinuityCheck(ctx,
+ conversationID, notStartTime, isReverse, req.Count, startTime, &list, &messageListCallback)
+ _ = c.messageBlocksBetweenContinuityCheck(ctx, req.LastMinSeq, maxSeq, conversationID,
+ notStartTime, isReverse, req.Count, startTime, &list, &messageListCallback)
+ if minSeq == 1 && lostSeqListLength == 0 {
+ messageListCallback.IsEnd = true
+ } else {
+ c.messageBlocksEndContinuityCheck(ctx, minSeq, conversationID, notStartTime, isReverse,
+ req.Count, startTime, &list, &messageListCallback)
+ }
+ } else {
+ maxSeq, _, _ := c.messageBlocksInternalContinuityCheck(ctx, conversationID, notStartTime, isReverse,
+ req.Count, startTime, &list, &messageListCallback)
+ c.messageBlocksBetweenContinuityCheck(ctx, req.LastMinSeq, maxSeq, conversationID, notStartTime,
+ isReverse, req.Count, startTime, &list, &messageListCallback)
+
+ }
+ log.ZDebug(ctx, "pull message", "pull cost time", time.Since(t))
+ t = time.Now()
+ var thisMinSeq int64
+ for _, v := range list {
+ if v.Seq != 0 && thisMinSeq == 0 {
+ thisMinSeq = v.Seq
+ }
+ if v.Seq < thisMinSeq && v.Seq != 0 {
+ thisMinSeq = v.Seq
+ }
+ if v.Status >= constant.MsgStatusHasDeleted {
+ log.ZDebug(ctx, "this message has been deleted or exception message", "msg", v)
+ continue
+ }
+ temp := sdk_struct.MsgStruct{}
+ temp.ClientMsgID = v.ClientMsgID
+ temp.ServerMsgID = v.ServerMsgID
+ temp.CreateTime = v.CreateTime
+ temp.SendTime = v.SendTime
+ temp.SessionType = v.SessionType
+ temp.SendID = v.SendID
+ temp.RecvID = v.RecvID
+ temp.MsgFrom = v.MsgFrom
+ temp.ContentType = v.ContentType
+ temp.SenderPlatformID = v.SenderPlatformID
+ temp.SenderNickname = v.SenderNickname
+ temp.SenderFaceURL = v.SenderFaceURL
+ temp.Content = v.Content
+ temp.Seq = v.Seq
+ temp.IsRead = v.IsRead
+ temp.Status = v.Status
+ var attachedInfo sdk_struct.AttachedInfoElem
+ _ = utils.JsonStringToStruct(v.AttachedInfo, &attachedInfo)
+ temp.AttachedInfoElem = &attachedInfo
+ temp.Ex = v.Ex
+ temp.LocalEx = v.LocalEx
+ err := c.msgHandleByContentType(&temp)
+ if err != nil {
+ log.ZError(ctx, "Parsing data error", err, "temp", temp)
+ continue
+ }
+ switch sessionType {
+ case constant.GroupChatType:
+ fallthrough
+ case constant.SuperGroupChatType:
+ temp.GroupID = temp.RecvID
+ temp.RecvID = c.loginUserID
+ }
+ if attachedInfo.IsPrivateChat && temp.SendTime+int64(attachedInfo.BurnDuration) < time.Now().Unix() {
+ continue
+ }
+ messageList = append(messageList, &temp)
+ }
+ log.ZDebug(ctx, "message convert and unmarshal", "unmarshal cost time", time.Since(t))
+ t = time.Now()
+ if !isReverse {
+ sort.Sort(messageList)
+ }
+ log.ZDebug(ctx, "sort", "sort cost time", time.Since(t))
+ messageListCallback.MessageList = messageList
+ if thisMinSeq == 0 {
+ thisMinSeq = req.LastMinSeq
+ }
+ messageListCallback.LastMinSeq = thisMinSeq
+ return &messageListCallback, nil
+
+}
+
+func (c *Conversation) typingStatusUpdate(ctx context.Context, recvID, msgTip string) error {
+ if recvID == "" {
+ return sdkerrs.ErrArgs
+ }
+ s := sdk_struct.MsgStruct{}
+ err := c.initBasicInfo(ctx, &s, constant.UserMsgType, constant.Typing)
+ if err != nil {
+ return err
+ }
+ s.RecvID = recvID
+ s.SessionType = constant.SingleChatType
+ typingElem := sdk_struct.TypingElem{}
+ typingElem.MsgTips = msgTip
+ s.Content = utils.StructToJsonString(typingElem)
+ options := make(map[string]bool, 6)
+ utils.SetSwitchFromOptions(options, constant.IsHistory, false)
+ utils.SetSwitchFromOptions(options, constant.IsPersistent, false)
+ utils.SetSwitchFromOptions(options, constant.IsSenderSync, false)
+ utils.SetSwitchFromOptions(options, constant.IsConversationUpdate, false)
+ utils.SetSwitchFromOptions(options, constant.IsSenderConversationUpdate, false)
+ utils.SetSwitchFromOptions(options, constant.IsUnreadCount, false)
+ utils.SetSwitchFromOptions(options, constant.IsOfflinePush, false)
+
+ var wsMsgData sdkws.MsgData
+ copier.Copy(&wsMsgData, s)
+ wsMsgData.Content = []byte(s.Content)
+ wsMsgData.CreateTime = s.CreateTime
+ wsMsgData.Options = options
+ var sendMsgResp sdkws.UserSendMsgResp
+ err = c.LongConnMgr.SendReqWaitResp(ctx, &wsMsgData, constant.SendMsg, &sendMsgResp)
+ if err != nil {
+ log.ZError(ctx, "send msg to server failed", err, "message", s)
+ return err
+ }
+ return nil
+
+}
+
+// funcation (c *Conversation) markMessageAsReadByConID(callback open_im_sdk_callback.Base, msgIDList sdk.MarkMessageAsReadByConIDParams, conversationID, operationID string) {
+// var localMessage db.LocalChatLog
+// var newMessageIDList []string
+// messages, err := c.db.GetMultipleMessage(msgIDList)
+// common.CheckDBErrCallback(callback, err, operationID)
+// for _, v := range messages {
+// if v.IsRead == false && v.ContentType < constant.NotificationBegin && v.SendID != c.loginUserID {
+// newMessageIDList = append(newMessageIDList, v.ClientMsgID)
+// }
+// }
+// if len(newMessageIDList) == 0 {
+// common.CheckAnyErrCallback(callback, 201, errors.New("message has been marked read or sender is yourself"), operationID)
+// }
+// conversationID := c.getConversationIDBySessionType(userID, constant.SingleChatType)
+// s := sdk_struct.MsgStruct{}
+// c.initBasicInfo(&s, constant.UserMsgType, constant.HasReadReceipt, operationID)
+// s.Content = utils.StructToJsonString(newMessageIDList)
+// options := make(map[string]bool, 5)
+// utils.SetSwitchFromOptions(options, constant.IsConversationUpdate, false)
+// utils.SetSwitchFromOptions(options, constant.IsSenderConversationUpdate, false)
+// utils.SetSwitchFromOptions(options, constant.IsUnreadCount, false)
+// utils.SetSwitchFromOptions(options, constant.IsOfflinePush, false)
+// //If there is an error, the coroutine ends, so judgment is not required
+// resp, _ := c.InternalSendMessage(callback, &s, userID, "", operationID, &server_api_params.OfflinePushInfo{}, false, options)
+// s.ServerMsgID = resp.ServerMsgID
+// s.SendTime = resp.SendTime
+// s.Status = constant.MsgStatusFiltered
+// msgStructToLocalChatLog(&localMessage, &s)
+// err = c.db.InsertMessage(&localMessage)
+// if err != nil {
+// log.Error(operationID, "inset into chat log err", localMessage, s, err.Error())
+// }
+// err2 := c.db.UpdateMessageHasRead(userID, newMessageIDList, constant.SingleChatType)
+// if err2 != nil {
+// log.Error(operationID, "update message has read error", newMessageIDList, userID, err2.Error())
+// }
+// _ = common.TriggerCmdUpdateConversation(common.UpdateConNode{ConID: conversationID, Action: constant.UpdateLatestMessageChange}, c.ch)
+// //_ = common.TriggerCmdUpdateConversation(common.UpdateConNode{ConID: conversationID, Action: constant.ConChange, Args: []string{conversationID}}, c.ch)
+// }
+
+func (c *Conversation) insertMessageToLocalStorage(ctx context.Context, conversationID string, s *model_struct.LocalChatLog) error {
+ return c.db.InsertMessage(ctx, conversationID, s)
+}
+
+func (c *Conversation) judgeMultipleSubString(keywordList []string, main string, keywordListMatchType int) bool {
+ if len(keywordList) == 0 {
+ return true
+ }
+ if keywordListMatchType == constant.KeywordMatchOr {
+ for _, v := range keywordList {
+ if utils.KMP(main, v) {
+ return true
+ }
+ }
+ return false
+ } else {
+ for _, v := range keywordList {
+ if !utils.KMP(main, v) {
+ return false
+ }
+ }
+ }
+ return true
+}
+
+// searchLocalMessages searches for local messages based on the given search parameters.
+func (c *Conversation) searchLocalMessages(ctx context.Context, searchParam *sdk.SearchLocalMessagesParams) (*sdk.SearchLocalMessagesCallback, error) {
+ var r sdk.SearchLocalMessagesCallback // Initialize the result structure
+ var startTime, endTime int64 // Variables to hold start and end times for the search
+ var list []*model_struct.LocalChatLog // Slice to store the search results
+ conversationMap := make(map[string]*sdk.SearchByConversationResult, 10) // Map to store results grouped by conversation, with initial capacity of 10
+ var err error // Variable to store any errors encountered
+ var conversationID string // Variable to store the current conversation ID
+
+ // Set the end time for the search; if SearchTimePosition is 0, use the current timestamp
+ if searchParam.SearchTimePosition == 0 {
+ endTime = utils.GetCurrentTimestampBySecond()
+ } else {
+ endTime = searchParam.SearchTimePosition
+ }
+
+ // Set the start time based on the specified time period
+ if searchParam.SearchTimePeriod != 0 {
+ startTime = endTime - searchParam.SearchTimePeriod
+ }
+ // Convert start and end times to milliseconds
+ startTime = utils.UnixSecondToTime(startTime).UnixNano() / 1e6
+ endTime = utils.UnixSecondToTime(endTime).UnixNano() / 1e6
+
+ // Validate that either keyword list or message type list is provided
+ if len(searchParam.KeywordList) == 0 && len(searchParam.MessageTypeList) == 0 {
+ return nil, errors.New("keywordlist and messageTypelist all null")
+ }
+
+ // Search in a specific conversation if ConversationID is provided
+ if searchParam.ConversationID != "" {
+ // Validate pagination parameters
+ if searchParam.PageIndex < 1 || searchParam.Count < 1 {
+ return nil, errors.New("page or count is null")
+ }
+ offset := (searchParam.PageIndex - 1) * searchParam.Count
+ _, err := c.db.GetConversation(ctx, searchParam.ConversationID)
+ if err != nil {
+ return nil, err
+ }
+ // Search by content type or keyword based on provided parameters
+ if len(searchParam.MessageTypeList) != 0 && len(searchParam.KeywordList) == 0 {
+ list, err = c.db.SearchMessageByContentType(ctx, searchParam.MessageTypeList, searchParam.ConversationID, startTime, endTime, offset, searchParam.Count)
+ } else {
+ newContentTypeList := func(list []int) (result []int) {
+ for _, v := range list {
+ if utils.IsContainInt(v, SearchContentType) {
+ result = append(result, v)
+ }
+ }
+ return result
+ }(searchParam.MessageTypeList)
+ if len(newContentTypeList) == 0 {
+ newContentTypeList = SearchContentType
+ }
+ list, err = c.db.SearchMessageByKeyword(ctx, newContentTypeList, searchParam.KeywordList, searchParam.KeywordListMatchType,
+ searchParam.ConversationID, startTime, endTime, offset, searchParam.Count)
+ }
+ } else {
+ // Comprehensive search across all conversations
+ if len(searchParam.MessageTypeList) == 0 {
+ searchParam.MessageTypeList = SearchContentType
+ }
+ list, err = c.messageController.SearchMessageByContentTypeAndKeyword(ctx, searchParam.MessageTypeList, searchParam.KeywordList, searchParam.KeywordListMatchType, startTime, endTime)
+ }
+
+ // Handle any errors encountered during the search
+ if err != nil {
+ return nil, err
+ }
+
+ // Logging and processing each message in the search results
+ //localChatLogToMsgStruct(&messageList, list)
+
+ //log.Debug("hahh",utils.KMP("SSSsdf3434","s"))
+ //log.Debug("hahh",utils.KMP("SSSsdf3434","g"))
+ //log.Debug("hahh",utils.KMP("SSSsdf3434","3434"))
+ //log.Debug("hahh",utils.KMP("SSSsdf3434","F3434"))
+ //log.Debug("hahh",utils.KMP("SSSsdf3434","SDF3"))
+ // log.Debug("", "get raw data length is", len(list))
+ log.ZDebug(ctx, "get raw data length is", len(list))
+
+ for _, v := range list {
+ temp := sdk_struct.MsgStruct{}
+ temp.ClientMsgID = v.ClientMsgID
+ temp.ServerMsgID = v.ServerMsgID
+ temp.CreateTime = v.CreateTime
+ temp.SendTime = v.SendTime
+ temp.SessionType = v.SessionType
+ temp.SendID = v.SendID
+ temp.RecvID = v.RecvID
+ temp.MsgFrom = v.MsgFrom
+ temp.ContentType = v.ContentType
+ temp.SenderPlatformID = v.SenderPlatformID
+ temp.SenderNickname = v.SenderNickname
+ temp.SenderFaceURL = v.SenderFaceURL
+ temp.Content = v.Content
+ temp.Seq = v.Seq
+ temp.IsRead = v.IsRead
+ temp.Status = v.Status
+ var attachedInfo sdk_struct.AttachedInfoElem
+ _ = utils.JsonStringToStruct(v.AttachedInfo, &attachedInfo)
+ temp.AttachedInfoElem = &attachedInfo
+ temp.Ex = v.Ex
+ temp.LocalEx = v.LocalEx
+ err := c.msgHandleByContentType(&temp)
+ if err != nil {
+ // log.Error("", "Parsing data error:", err.Error(), temp)
+ log.ZError(ctx, "Parsing data error:", err, "msg", temp)
+ continue
+ }
+ if c.filterMsg(&temp, searchParam) {
+ continue
+ }
+ // Determine the conversation ID based on the session type
+ switch temp.SessionType {
+ case constant.SingleChatType:
+ if temp.SendID == c.loginUserID {
+ conversationID = c.getConversationIDBySessionType(temp.RecvID, constant.SingleChatType)
+ } else {
+ conversationID = c.getConversationIDBySessionType(temp.SendID, constant.SingleChatType)
+ }
+ case constant.GroupChatType:
+ temp.GroupID = temp.RecvID
+ temp.RecvID = c.loginUserID
+ conversationID = c.getConversationIDBySessionType(temp.GroupID, constant.GroupChatType)
+ case constant.SuperGroupChatType:
+ temp.GroupID = temp.RecvID
+ temp.RecvID = c.loginUserID
+ conversationID = c.getConversationIDBySessionType(temp.GroupID, constant.SuperGroupChatType)
+ }
+ // Populate the conversationMap with search results
+ if oldItem, ok := conversationMap[conversationID]; !ok {
+ searchResultItem := sdk.SearchByConversationResult{}
+ localConversation, err := c.db.GetConversation(ctx, conversationID)
+ if err != nil {
+ // log.Error("", "get conversation err ", err.Error(), conversationID)
+ continue
+ }
+ searchResultItem.ConversationID = conversationID
+ searchResultItem.FaceURL = localConversation.FaceURL
+ searchResultItem.ShowName = localConversation.ShowName
+ searchResultItem.LatestMsgSendTime = localConversation.LatestMsgSendTime
+ searchResultItem.ConversationType = localConversation.ConversationType
+ searchResultItem.MessageList = append(searchResultItem.MessageList, &temp)
+ searchResultItem.MessageCount++
+ conversationMap[conversationID] = &searchResultItem
+ } else {
+ oldItem.MessageCount++
+ oldItem.MessageList = append(oldItem.MessageList, &temp)
+ conversationMap[conversationID] = oldItem
+ }
+ }
+
+ // Compile the results from the conversationMap into the response structure
+ for _, v := range conversationMap {
+ r.SearchResultItems = append(r.SearchResultItems, v)
+ r.TotalCount += v.MessageCount
+ }
+
+ // Sort the search results based on the latest message send time
+ sort.Slice(r.SearchResultItems, func(i, j int) bool {
+ return r.SearchResultItems[i].LatestMsgSendTime > r.SearchResultItems[j].LatestMsgSendTime
+ })
+
+ return &r, nil // Return the final search results
+}
+
+// true is filter, false is not filter
+func (c *Conversation) filterMsg(temp *sdk_struct.MsgStruct, searchParam *sdk.SearchLocalMessagesParams) bool {
+ switch temp.ContentType {
+ case constant.Text:
+ return !c.judgeMultipleSubString(searchParam.KeywordList, temp.TextElem.Content,
+ searchParam.KeywordListMatchType)
+ case constant.AtText:
+ return !c.judgeMultipleSubString(searchParam.KeywordList, temp.AtTextElem.Text,
+ searchParam.KeywordListMatchType)
+ case constant.File:
+ return !c.judgeMultipleSubString(searchParam.KeywordList, temp.FileElem.FileName,
+ searchParam.KeywordListMatchType)
+ case constant.Merger:
+ if !c.judgeMultipleSubString(searchParam.KeywordList, temp.MergeElem.Title, searchParam.KeywordListMatchType) {
+ for _, msgStruct := range temp.MergeElem.MultiMessage {
+ if c.filterMsg(msgStruct, searchParam) {
+ continue
+ } else {
+ break
+ }
+ }
+ }
+ case constant.Card:
+ return !c.judgeMultipleSubString(searchParam.KeywordList, temp.CardElem.Nickname,
+ searchParam.KeywordListMatchType)
+ case constant.Location:
+ return !c.judgeMultipleSubString(searchParam.KeywordList, temp.LocationElem.Description,
+ searchParam.KeywordListMatchType)
+ case constant.Custom:
+ return !c.judgeMultipleSubString(searchParam.KeywordList, temp.CustomElem.Description,
+ searchParam.KeywordListMatchType)
+ case constant.Quote:
+ if !c.judgeMultipleSubString(searchParam.KeywordList, temp.QuoteElem.Text, searchParam.KeywordListMatchType) {
+ return c.filterMsg(temp.QuoteElem.QuoteMessage, searchParam)
+ }
+ case constant.Picture:
+ fallthrough
+ case constant.Video:
+ if len(searchParam.KeywordList) == 0 {
+ return false
+ } else {
+ return true
+ }
+ default:
+ return true
+ }
+ return false
+}
+
+func (c *Conversation) delMsgBySeq(seqList []uint32) error {
+ var SPLIT = 1000
+ for i := 0; i < len(seqList)/SPLIT; i++ {
+ if err := c.delMsgBySeqSplit(seqList[i*SPLIT : (i+1)*SPLIT]); err != nil {
+ return utils.Wrap(err, "")
+ }
+ }
+ return nil
+}
+
+func (c *Conversation) delMsgBySeqSplit(seqList []uint32) error {
+ // var req server_api_params.DelMsgListReq
+ // req.SeqList = seqList
+ // req.OperationID = utils.OperationIDGenerator()
+ // req.OpUserID = c.loginUserID
+ // req.UserID = c.loginUserID
+ // operationID := req.OperationID
+
+ // err := c.SendReqWaitResp(context.Background(), &req, constant.WsDelMsg, 30, c.loginUserID)
+ // if err != nil {
+ // return utils.Wrap(err, "SendReqWaitResp failed")
+ // }
+ // var delResp server_api_params.DelMsgListResp
+ // err = proto.Unmarshal(resp.Data, &delResp)
+ // if err != nil {
+ // log.Error(operationID, "Unmarshal failed ", err.Error())
+ // return utils.Wrap(err, "Unmarshal failed")
+ // }
+ return nil
+}
+
+// old WS method
+//funcation (c *Conversation) deleteMessageFromSvr(callback open_im_sdk_callback.Base, s *sdk_struct.MsgStruct, operationID string) {
+// seq, err := c.db.GetMsgSeqByClientMsgID(s.ClientMsgID)
+// common.CheckDBErrCallback(callback, err, operationID)
+// if seq == 0 {
+// err = errors.New("seq == 0 ")
+// common.CheckArgsErrCallback(callback, err, operationID)
+// }
+// seqList := []uint32{seq}
+// err = c.delMsgBySeq(seqList)
+// common.CheckArgsErrCallback(callback, err, operationID)
+//}
+
+func isContainMessageReaction(reactionType int, list []*sdk_struct.ReactionElem) (bool, *sdk_struct.ReactionElem) {
+ for _, v := range list {
+ if v.Type == reactionType {
+ return true, v
+ }
+ }
+ return false, nil
+}
+
+func isContainUserReactionElem(useID string, list []*sdk_struct.UserReactionElem) (bool, *sdk_struct.UserReactionElem) {
+ for _, v := range list {
+ if v.UserID == useID {
+ return true, v
+ }
+ }
+ return false, nil
+}
+
+func DeleteUserReactionElem(a []*sdk_struct.UserReactionElem, userID string) []*sdk_struct.UserReactionElem {
+ j := 0
+ for _, v := range a {
+ if v.UserID != userID {
+ a[j] = v
+ j++
+ }
+ }
+ return a[:j]
+}
+
+func (c *Conversation) setMessageReactionExtensions(ctx context.Context, s *sdk_struct.MsgStruct, req sdk.SetMessageReactionExtensionsParams) ([]*server_api_params.ExtensionResult, error) {
+ return nil, nil
+ //message, err := c.db.GetMessageController(ctx, s)
+ //if err != nil {
+ // return nil, err
+ //}
+ //if message.Status != constant.MsgStatusSendSuccess {
+ // return nil, errors.New("only send success message can modify reaction extensions")
+ //}
+ //if message.SessionType != constant.SuperGroupChatType {
+ // return nil, errors.New("currently only support super group message")
+ //
+ //}
+ //extendMsg, _ := c.db.GetMessageReactionExtension(ctx, message.ClientMsgID)
+ //temp := make(map[string]*server_api_params.KeyValue)
+ //_ = json.Unmarshal(extendMsg.LocalReactionExtensions, &temp)
+ //reqTemp := make(map[string]*server_api_params.KeyValue)
+ //for _, v := range req {
+ // if value, ok := temp[v.TypeKey]; ok {
+ // v.LatestUpdateTime = value.LatestUpdateTime
+ // }
+ // reqTemp[v.TypeKey] = v
+ //}
+ //var sourceID string
+ //switch message.SessionType {
+ //case constant.SingleChatType:
+ // if message.SendID == c.loginUserID {
+ // sourceID = message.RecvID
+ // } else {
+ // sourceID = message.SendID
+ // }
+ //case constant.NotificationChatType:
+ // sourceID = message.RecvID
+ //case constant.GroupChatType, constant.SuperGroupChatType:
+ // sourceID = message.RecvID
+ //}
+ //var apiReq server_api_params.SetMessageReactionExtensionsReq
+ //apiReq.IsReact = message.IsReact
+ //apiReq.ClientMsgID = message.ClientMsgID
+ //apiReq.SourceID = sourceID
+ //apiReq.SessionType = message.SessionType
+ //apiReq.IsExternalExtensions = message.IsExternalExtensions
+ //apiReq.ReactionExtensionList = reqTemp
+ //apiReq.OperationID = ""
+ //apiReq.MsgFirstModifyTime = message.MsgFirstModifyTime
+ //resp, err := util.CallApi[server_api_params.ApiResult](ctx, constant.SetMessageReactionExtensionsRouter, &apiReq)
+ //if err != nil {
+ // return nil, err
+ //}
+ //var msg model_struct.LocalChatLogReactionExtensions
+ //msg.ClientMsgID = message.ClientMsgID
+ //resultKeyMap := make(map[string]*sdkws.KeyValue)
+ //for _, v := range resp.Result {
+ // if v.ErrCode == 0 {
+ // temp := new(sdkws.KeyValue)
+ // temp.TypeKey = v.TypeKey
+ // temp.Value = v.Value
+ // temp.LatestUpdateTime = v.LatestUpdateTime
+ // resultKeyMap[v.TypeKey] = temp
+ // }
+ //}
+ //err = c.db.GetAndUpdateMessageReactionExtension(ctx, message.ClientMsgID, resultKeyMap)
+ //if err != nil {
+ // log.Error("", "GetAndUpdateMessageReactionExtension err:", err.Error())
+ //}
+ //if !message.IsReact {
+ // message.IsReact = resp.IsReact
+ // message.MsgFirstModifyTime = resp.MsgFirstModifyTime
+ // err = c.db.UpdateMessageController(ctx, message)
+ // if err != nil {
+ // log.Error("", "UpdateMessageController err:", err.Error(), message)
+ //
+ // }
+ //}
+ //return resp.Result, nil
+}
+
+func (c *Conversation) addMessageReactionExtensions(ctx context.Context, s *sdk_struct.MsgStruct, req sdk.AddMessageReactionExtensionsParams) ([]*server_api_params.ExtensionResult, error) {
+ return nil, nil
+ //message, err := c.db.GetMessageController(ctx, s)
+ //if err != nil {
+ // return nil, err
+ //}
+ //if message.Status != constant.MsgStatusSendSuccess || message.Seq == 0 {
+ // return nil, errors.New("only send success message can modify reaction extensions")
+ //}
+ //reqTemp := make(map[string]*server_api_params.KeyValue)
+ //extendMsg, err := c.db.GetMessageReactionExtension(ctx, message.ClientMsgID)
+ //if err == nil && extendMsg != nil {
+ // temp := make(map[string]*server_api_params.KeyValue)
+ // _ = json.Unmarshal(extendMsg.LocalReactionExtensions, &temp)
+ // for _, v := range req {
+ // if value, ok := temp[v.TypeKey]; ok {
+ // v.LatestUpdateTime = value.LatestUpdateTime
+ // }
+ // reqTemp[v.TypeKey] = v
+ // }
+ //} else {
+ // for _, v := range req {
+ // reqTemp[v.TypeKey] = v
+ // }
+ //}
+ //var sourceID string
+ //switch message.SessionType {
+ //case constant.SingleChatType:
+ // if message.SendID == c.loginUserID {
+ // sourceID = message.RecvID
+ // } else {
+ // sourceID = message.SendID
+ // }
+ //case constant.NotificationChatType:
+ // sourceID = message.RecvID
+ //case constant.GroupChatType, constant.SuperGroupChatType:
+ // sourceID = message.RecvID
+ //}
+ //var apiReq server_api_params.AddMessageReactionExtensionsReq
+ //apiReq.IsReact = message.IsReact
+ //apiReq.ClientMsgID = message.ClientMsgID
+ //apiReq.SourceID = sourceID
+ //apiReq.SessionType = message.SessionType
+ //apiReq.IsExternalExtensions = message.IsExternalExtensions
+ //apiReq.ReactionExtensionList = reqTemp
+ //apiReq.OperationID = ""
+ //apiReq.MsgFirstModifyTime = message.MsgFirstModifyTime
+ //apiReq.Seq = message.Seq
+ //
+ //resp, err := util.CallApi[server_api_params.ApiResult](ctx, constant.AddMessageReactionExtensionsRouter, &apiReq)
+ //if err != nil {
+ // return nil, err
+ //}
+ //log.Debug("", "api return:", message.IsReact, resp)
+ //if !message.IsReact {
+ // message.IsReact = resp.IsReact
+ // message.MsgFirstModifyTime = resp.MsgFirstModifyTime
+ // err = c.db.UpdateMessageController(ctx, message)
+ // if err != nil {
+ // log.Error("", "UpdateMessageController err:", err.Error(), message)
+ // }
+ //}
+ //return resp.Result, nil
+}
+
+func (c *Conversation) deleteMessageReactionExtensions(ctx context.Context, s *sdk_struct.MsgStruct, req sdk.DeleteMessageReactionExtensionsParams) ([]*server_api_params.ExtensionResult, error) {
+ // message, err := c.GetMessageController(ctx, s)
+ // if err != nil {
+ // return nil, err
+ // }
+ // if message.Status != constant.MsgStatusSendSuccess {
+ // return nil, errors.New("only send success message can modify reaction extensions")
+ // }
+ // if message.SessionType != constant.SuperGroupChatType {
+ // return nil, errors.New("currently only support super group message")
+
+ // }
+ // extendMsg, _ := c.db.GetMessageReactionExtension(ctx, message.ClientMsgID)
+ // temp := make(map[string]*server_api_params.KeyValue)
+ // _ = json.Unmarshal(extendMsg.LocalReactionExtensions, &temp)
+ // var reqTemp []*server_api_params.KeyValue
+ // for _, v := range req {
+ // if value, ok := temp[v]; ok {
+ // var tt server_api_params.KeyValue
+ // tt.LatestUpdateTime = value.LatestUpdateTime
+ // tt.TypeKey = v
+ // reqTemp = append(reqTemp, &tt)
+ // }
+ // }
+ // var sourceID string
+ // switch message.SessionType {
+ // case constant.SingleChatType:
+ // if message.SendID == c.loginUserID {
+ // sourceID = message.RecvID
+ // } else {
+ // sourceID = message.SendID
+ // }
+ // case constant.NotificationChatType:
+ // sourceID = message.RecvID
+ // case constant.GroupChatType, constant.SuperGroupChatType:
+ // sourceID = message.RecvID
+ // }
+ // var apiReq server_api_params.DeleteMessageReactionExtensionsReq
+ // apiReq.ClientMsgID = message.ClientMsgID
+ // apiReq.SourceID = sourceID
+ // apiReq.SessionType = message.SessionType
+ // apiReq.ReactionExtensionList = reqTemp
+ // apiReq.OperationID = ""
+ // apiReq.IsExternalExtensions = message.IsExternalExtensions
+ // apiReq.MsgFirstModifyTime = message.MsgFirstModifyTime
+ // resp, err := util.CallApi[server_api_params.ApiResult](ctx, constant.AddMessageReactionExtensionsRouter, &apiReq)
+ // if err != nil {
+ // return nil, err
+ // }
+ // var msg model_struct.LocalChatLogReactionExtensions
+ // msg.ClientMsgID = message.ClientMsgID
+ // resultKeyMap := make(map[string]*sdkws.KeyValue)
+ // for _, v := range resp.Result {
+ // if v.ErrCode == 0 {
+ // temp := new(sdkws.KeyValue)
+ // temp.TypeKey = v.TypeKey
+ // resultKeyMap[v.TypeKey] = temp
+ // }
+ // }
+ // err = c.db.DeleteAndUpdateMessageReactionExtension(ctx, message.ClientMsgID, resultKeyMap)
+ // if err != nil {
+ // log.Error("", "GetAndUpdateMessageReactionExtension err:", err.Error())
+ // }
+ // return resp.Result, nil
+ return nil, nil
+}
+
+type syncReactionExtensionParams struct {
+ MessageList []*model_struct.LocalChatLog
+ SessionType int32
+ SourceID string
+ IsExternalExtension bool
+ ExtendMessageList []*model_struct.LocalChatLogReactionExtensions
+ TypeKeyList []string
+}
+
+func (c *Conversation) getMessageListReactionExtensions(ctx context.Context, conversationID string, messageList []*sdk_struct.MsgStruct) ([]*server_api_params.SingleMessageExtensionResult, error) {
+ if len(messageList) == 0 {
+ return nil, errors.New("message list is null")
+ }
+ var msgIDs []string
+ var sourceID string
+ var sessionType int32
+ var isExternalExtension bool
+ for _, msgStruct := range messageList {
+ switch msgStruct.SessionType {
+ case constant.SingleChatType:
+ if msgStruct.SendID == c.loginUserID {
+ sourceID = msgStruct.RecvID
+ } else {
+ sourceID = msgStruct.SendID
+ }
+ case constant.NotificationChatType:
+ sourceID = msgStruct.RecvID
+ case constant.GroupChatType, constant.SuperGroupChatType:
+ sourceID = msgStruct.GroupID
+ }
+ sessionType = msgStruct.SessionType
+ msgIDs = append(msgIDs, msgStruct.ClientMsgID)
+ }
+ isExternalExtension = c.IsExternalExtensions
+ localMessageList, err := c.db.GetMessagesByClientMsgIDs(ctx, conversationID, msgIDs)
+ if err != nil {
+ return nil, err
+ }
+ for _, v := range localMessageList {
+ if v.IsReact != true {
+ return nil, errors.New("have not reaction message in message list:" + v.ClientMsgID)
+ }
+ }
+ var result server_api_params.GetMessageListReactionExtensionsResp
+ extendMessage, _ := c.db.GetMultipleMessageReactionExtension(ctx, msgIDs)
+ for _, v := range extendMessage {
+ var singleResult server_api_params.SingleMessageExtensionResult
+ // temp := make(map[string]*sdkws.KeyValue)
+ // _ = json.Unmarshal(v.LocalReactionExtensions, &temp)
+ singleResult.ClientMsgID = v.ClientMsgID
+ // singleResult.ReactionExtensionList = temp
+ result = append(result, &singleResult)
+ }
+ args := syncReactionExtensionParams{}
+ args.MessageList = localMessageList
+ args.SourceID = sourceID
+ args.SessionType = sessionType
+ args.ExtendMessageList = extendMessage
+ args.IsExternalExtension = isExternalExtension
+ _ = common.TriggerCmdSyncReactionExtensions(common.SyncReactionExtensionsNode{
+ OperationID: "",
+ Action: constant.SyncMessageListReactionExtensions,
+ Args: args,
+ }, c.GetCh())
+ return result, nil
+
+}
+
+// funcation (c *Conversation) getMessageListSomeReactionExtensions(callback open_im_sdk_callback.Base, messageList []*sdk_struct.MsgStruct, keyList []string, operationID string) server_api_params.GetMessageListReactionExtensionsResp {
+// if len(messageList) == 0 {
+// common.CheckAnyErrCallback(callback, 201, errors.New("message list is null"), operationID)
+// }
+// var msgIDList []string
+// var sourceID string
+// var sessionType int32
+// var isExternalExtension bool
+// for _, msgStruct := range messageList {
+// switch msgStruct.SessionType {
+// case constant.SingleChatType:
+// if msgStruct.SendID == c.loginUserID {
+// sourceID = msgStruct.RecvID
+// } else {
+// sourceID = msgStruct.SendID
+// }
+// case constant.NotificationChatType:
+// sourceID = msgStruct.RecvID
+// case constant.GroupChatType, constant.SuperGroupChatType:
+// sourceID = msgStruct.GroupID
+// }
+// sessionType = msgStruct.SessionType
+// isExternalExtension = msgStruct.IsExternalExtensions
+// msgIDList = append(msgIDList, msgStruct.ClientMsgID)
+// }
+// localMessageList, err := c.db.GetMultipleMessageController(msgIDList, sourceID, sessionType)
+// common.CheckDBErrCallback(callback, err, operationID)
+// var result server_api_params.GetMessageListReactionExtensionsResp
+// extendMsgs, _ := c.db.GetMultipleMessageReactionExtension(msgIDList)
+// for _, v := range extendMsgs {
+// var singleResult server_api_params.SingleMessageExtensionResult
+// temp := make(map[string]*server_api_params.KeyValue)
+// _ = json.Unmarshal(v.LocalReactionExtensions, &temp)
+// for s, _ := range temp {
+// if !utils.IsContain(s, keyList) {
+// delete(temp, s)
+// }
+// }
+// singleResult.ClientMsgID = v.ClientMsgID
+// singleResult.ReactionExtensionList = temp
+// result = append(result, &singleResult)
+// }
+// args := syncReactionExtensionParams{}
+// args.MessageList = localMessageList
+// args.SourceID = sourceID
+// args.TypeKeyList = keyList
+// args.SessionType = sessionType
+// args.ExtendMessageList = extendMsgs
+// args.IsExternalExtension = isExternalExtension
+// _ = common.TriggerCmdSyncReactionExtensions(common.SyncReactionExtensionsNode{
+// OperationID: operationID,
+// Action: constant.SyncMessageListReactionExtensions,
+// Args: args,
+// }, c.GetCh())
+// return result
+// }
+//
+// funcation (c *Conversation) setTypeKeyInfo(callback open_im_sdk_callback.Base, s *sdk_struct.MsgStruct, typeKey, ex string, isCanRepeat bool, operationID string) []*server_api_params.ExtensionResult {
+// message, err := c.db.GetMessageController(s)
+// common.CheckDBErrCallback(callback, err, operationID)
+// if message.Status != constant.MsgStatusSendSuccess {
+// common.CheckAnyErrCallback(callback, 201, errors.New("only send success message can modify reaction extensions"), operationID)
+// }
+// extendMsg, _ := c.db.GetMessageReactionExtension(message.ClientMsgID)
+// temp := make(map[string]*server_api_params.KeyValue)
+// _ = json.Unmarshal(extendMsg.LocalReactionExtensions, &temp)
+// var flag bool
+// var isContainSelfK string
+// var dbIsCanRepeat bool
+// var deletedKeyValue server_api_params.KeyValue
+// var maxTypeKey string
+// var maxTypeKeyValue server_api_params.KeyValue
+// reqTemp := make(map[string]*server_api_params.KeyValue)
+// for k, v := range temp {
+// if strings.HasPrefix(k, typeKey) {
+// flag = true
+// singleTypeKeyInfo := new(sdk.SingleTypeKeyInfo)
+// _ = json.Unmarshal([]byte(v.Value), singleTypeKeyInfo)
+// if _, ok := singleTypeKeyInfo.InfoList[c.loginUserID]; ok {
+// isContainSelfK = k
+// dbIsCanRepeat = singleTypeKeyInfo.IsCanRepeat
+// delete(singleTypeKeyInfo.InfoList, c.loginUserID)
+// singleTypeKeyInfo.Counter--
+// deletedKeyValue.TypeKey = v.TypeKey
+// deletedKeyValue.Value = utils.StructToJsonString(singleTypeKeyInfo)
+// deletedKeyValue.LatestUpdateTime = v.LatestUpdateTime
+// }
+// if k > maxTypeKey {
+// maxTypeKey = k
+// maxTypeKeyValue = *v
+// }
+// }
+// }
+// if !flag {
+// if len(temp) >= 300 {
+// common.CheckAnyErrCallback(callback, 202, errors.New("number of keys only can support 300"), operationID)
+// }
+// singleTypeKeyInfo := new(sdk.SingleTypeKeyInfo)
+// singleTypeKeyInfo.TypeKey = getIndexTypeKey(typeKey, 0)
+// singleTypeKeyInfo.Counter = 1
+// singleTypeKeyInfo.IsCanRepeat = isCanRepeat
+// singleTypeKeyInfo.Index = 0
+// userInfo := new(sdk.Info)
+// userInfo.UserID = c.loginUserID
+// userInfo.Ex = ex
+// singleTypeKeyInfo.InfoList[c.loginUserID] = userInfo
+// keyValue := new(server_api_params.KeyValue)
+// keyValue.TypeKey = singleTypeKeyInfo.TypeKey
+// keyValue.Value = utils.StructToJsonString(singleTypeKeyInfo)
+// reqTemp[singleTypeKeyInfo.TypeKey] = keyValue
+// } else {
+// if isContainSelfK != "" && !dbIsCanRepeat {
+// //å 餿äŊ
+// reqTemp[isContainSelfK] = &deletedKeyValue
+// } else {
+// singleTypeKeyInfo := new(sdk.SingleTypeKeyInfo)
+// _ = json.Unmarshal([]byte(maxTypeKeyValue.Value), singleTypeKeyInfo)
+// userInfo := new(sdk.Info)
+// userInfo.UserID = c.loginUserID
+// userInfo.Ex = ex
+// singleTypeKeyInfo.Counter++
+// singleTypeKeyInfo.InfoList[c.loginUserID] = userInfo
+// maxTypeKeyValue.Value = utils.StructToJsonString(singleTypeKeyInfo)
+// data, _ := json.Marshal(maxTypeKeyValue)
+// if len(data) > 1000 { //åkeyčļ
čŋäē1kb
+// if len(temp) >= 300 {
+// common.CheckAnyErrCallback(callback, 202, errors.New("number of keys only can support 300"), operationID)
+// }
+// newSingleTypeKeyInfo := new(sdk.SingleTypeKeyInfo)
+// newSingleTypeKeyInfo.TypeKey = getIndexTypeKey(typeKey, singleTypeKeyInfo.Index+1)
+// newSingleTypeKeyInfo.Counter = 1
+// newSingleTypeKeyInfo.IsCanRepeat = singleTypeKeyInfo.IsCanRepeat
+// newSingleTypeKeyInfo.Index = singleTypeKeyInfo.Index + 1
+// userInfo := new(sdk.Info)
+// userInfo.UserID = c.loginUserID
+// userInfo.Ex = ex
+// newSingleTypeKeyInfo.InfoList[c.loginUserID] = userInfo
+// keyValue := new(server_api_params.KeyValue)
+// keyValue.TypeKey = newSingleTypeKeyInfo.TypeKey
+// keyValue.Value = utils.StructToJsonString(newSingleTypeKeyInfo)
+// reqTemp[singleTypeKeyInfo.TypeKey] = keyValue
+// } else {
+// reqTemp[maxTypeKey] = &maxTypeKeyValue
+// }
+//
+// }
+// }
+// var sourceID string
+// switch message.SessionType {
+// case constant.SingleChatType:
+// sourceID = message.SendID + message.RecvID
+// case constant.NotificationChatType:
+// sourceID = message.RecvID
+// case constant.GroupChatType, constant.SuperGroupChatType:
+// sourceID = message.RecvID
+// }
+// var apiReq server_api_params.SetMessageReactionExtensionsReq
+// apiReq.IsReact = message.IsReact
+// apiReq.ClientMsgID = message.ClientMsgID
+// apiReq.SourceID = sourceID
+// apiReq.SessionType = message.SessionType
+// apiReq.IsExternalExtensions = message.IsExternalExtensions
+// apiReq.ReactionExtensionList = reqTemp
+// apiReq.OperationID = operationID
+// apiReq.MsgFirstModifyTime = message.MsgFirstModifyTime
+// var apiResp server_api_params.SetMessageReactionExtensionsResp
+// c.p.PostFatalCallback(callback, constant.SetMessageReactionExtensionsRouter, apiReq, &apiResp.ApiResult, apiReq.OperationID)
+// var msg model_struct.LocalChatLogReactionExtensions
+// msg.ClientMsgID = message.ClientMsgID
+// resultKeyMap := make(map[string]*server_api_params.KeyValue)
+// for _, v := range apiResp.ApiResult.Result {
+// if v.ErrCode == 0 {
+// temp := new(server_api_params.KeyValue)
+// temp.TypeKey = v.TypeKey
+// temp.Value = v.Value
+// temp.LatestUpdateTime = v.LatestUpdateTime
+// resultKeyMap[v.TypeKey] = temp
+// }
+// }
+// err = c.db.GetAndUpdateMessageReactionExtension(message.ClientMsgID, resultKeyMap)
+// if err != nil {
+// log.Error(operationID, "GetAndUpdateMessageReactionExtension err:", err.Error())
+// }
+// if !message.IsReact {
+// message.IsReact = apiResp.ApiResult.IsReact
+// message.MsgFirstModifyTime = apiResp.ApiResult.MsgFirstModifyTime
+// err = c.db.UpdateMessageController(message)
+// if err != nil {
+// log.Error(operationID, "UpdateMessageController err:", err.Error(), message)
+//
+// }
+// }
+// return apiResp.ApiResult.Result
+// }
+//
+// funcation getIndexTypeKey(typeKey string, index int) string {
+// return typeKey + "$" + utils.IntToString(index)
+// }
+func getPrefixTypeKey(typeKey string) string {
+ list := strings.Split(typeKey, "$")
+ if len(list) > 0 {
+ return list[0]
+ }
+ return ""
+}
+
+//funcation (c *Conversation) getTypeKeyListInfo(callback open_im_sdk_callback.Base, s *sdk_struct.MsgStruct, keyList []string, operationID string) (result []*sdk.SingleTypeKeyInfoSum) {
+// message, err := c.db.GetMessageController(s)
+// common.CheckDBErrCallback(callback, err, operationID)
+// if message.Status != constant.MsgStatusSendSuccess {
+// common.CheckAnyErrCallback(callback, 201, errors.New("only send success message can modify reaction extensions"), operationID)
+// }
+// if !message.IsReact {
+// common.CheckAnyErrCallback(callback, 202, errors.New("can get message reaction ex"), operationID)
+// }
+// extendMsg, _ := c.db.GetMessageReactionExtension(message.ClientMsgID)
+// temp := make(map[string]*server_api_params.KeyValue)
+// _ = json.Unmarshal(extendMsg.LocalReactionExtensions, &temp)
+// for _, v := range keyList {
+// singleResult := new(sdk.SingleTypeKeyInfoSum)
+// singleResult.TypeKey = v
+// for typeKey, value := range temp {
+// if strings.HasPrefix(typeKey, v) {
+// singleTypeKeyInfo := new(sdk.SingleTypeKeyInfo)
+// _ = json.Unmarshal([]byte(value.Value), singleTypeKeyInfo)
+// if _, ok := singleTypeKeyInfo.InfoList[c.loginUserID]; ok {
+// singleResult.IsContainSelf = true
+// }
+// for _, info := range singleTypeKeyInfo.InfoList {
+// v := *info
+// singleResult.InfoList = append(singleResult.InfoList, &v)
+// }
+// singleResult.Counter += singleTypeKeyInfo.Counter
+// }
+// }
+// result = append(result, singleResult)
+// }
+// messageList := []*sdk_struct.MsgStruct{s}
+// _ = common.TriggerCmdSyncReactionExtensions(common.SyncReactionExtensionsNode{
+// OperationID: operationID,
+// Action: constant.SyncMessageListTypeKeyInfo,
+// Args: messageList,
+// }, c.GetCh())
+//
+// return result
+//}
+//
+//funcation (c *Conversation) getAllTypeKeyInfo(callback open_im_sdk_callback.Base, s *sdk_struct.MsgStruct, operationID string) (result []*sdk.SingleTypeKeyInfoSum) {
+// message, err := c.db.GetMessageController(s)
+// common.CheckDBErrCallback(callback, err, operationID)
+// if message.Status != constant.MsgStatusSendSuccess {
+// common.CheckAnyErrCallback(callback, 201, errors.New("only send success message can modify reaction extensions"), operationID)
+// }
+// if !message.IsReact {
+// common.CheckAnyErrCallback(callback, 202, errors.New("can get message reaction ex"), operationID)
+// }
+// extendMsg, _ := c.db.GetMessageReactionExtension(message.ClientMsgID)
+// temp := make(map[string]*server_api_params.KeyValue)
+// _ = json.Unmarshal(extendMsg.LocalReactionExtensions, &temp)
+// mapResult := make(map[string]*sdk.SingleTypeKeyInfoSum)
+// for typeKey, value := range temp {
+// singleTypeKeyInfo := new(sdk.SingleTypeKeyInfo)
+// err := json.Unmarshal([]byte(value.Value), singleTypeKeyInfo)
+// if err != nil {
+// log.Warn(operationID, "not this type ", value.Value)
+// continue
+// }
+// prefixKey := getPrefixTypeKey(typeKey)
+// if v, ok := mapResult[prefixKey]; ok {
+// for _, info := range singleTypeKeyInfo.InfoList {
+// t := *info
+// v.InfoList = append(v.InfoList, &t)
+// }
+// if _, ok := singleTypeKeyInfo.InfoList[c.loginUserID]; ok {
+// v.IsContainSelf = true
+// }
+// v.Counter += singleTypeKeyInfo.Counter
+// } else {
+// v := new(sdk.SingleTypeKeyInfoSum)
+// v.TypeKey = prefixKey
+// v.Counter = singleTypeKeyInfo.Counter
+// for _, info := range singleTypeKeyInfo.InfoList {
+// t := *info
+// v.InfoList = append(v.InfoList, &t)
+// }
+// if _, ok := singleTypeKeyInfo.InfoList[c.loginUserID]; ok {
+// v.IsContainSelf = true
+// }
+// mapResult[prefixKey] = v
+// }
+// }
+// for _, v := range mapResult {
+// result = append(result, v)
+//
+// }
+// return result
+//}
diff --git a/go/chao-sdk-core/internal/conversation_msg/conversation_msg.go b/go/chao-sdk-core/internal/conversation_msg/conversation_msg.go
new file mode 100644
index 0000000..6648e7e
--- /dev/null
+++ b/go/chao-sdk-core/internal/conversation_msg/conversation_msg.go
@@ -0,0 +1,1064 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package conversation_msg
+
+import (
+ "context"
+ "encoding/json"
+ "errors"
+ "github.com/openimsdk/openim-sdk-core/v3/internal/business"
+ "github.com/openimsdk/openim-sdk-core/v3/internal/cache"
+ "github.com/openimsdk/openim-sdk-core/v3/internal/file"
+ "github.com/openimsdk/openim-sdk-core/v3/internal/friend"
+ "github.com/openimsdk/openim-sdk-core/v3/internal/full"
+ "github.com/openimsdk/openim-sdk-core/v3/internal/group"
+ "github.com/openimsdk/openim-sdk-core/v3/internal/interaction"
+ "github.com/openimsdk/openim-sdk-core/v3/internal/user"
+ "github.com/openimsdk/openim-sdk-core/v3/open_im_sdk_callback"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/ccontext"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/common"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/db_interface"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ sdk "github.com/openimsdk/openim-sdk-core/v3/pkg/sdk_params_callback"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/sdkerrs"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/syncer"
+ "github.com/openimsdk/tools/log"
+ "github.com/openimsdk/tools/utils/datautil"
+
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/sdk_struct"
+ "sort"
+ "time"
+
+ "github.com/jinzhu/copier"
+)
+
+var SearchContentType = []int{constant.Text, constant.AtText, constant.File}
+
+type Conversation struct {
+ *interaction.LongConnMgr
+ conversationSyncer *syncer.Syncer[*model_struct.LocalConversation, syncer.NoResp, string]
+ db db_interface.DataBase
+ ConversationListener func() open_im_sdk_callback.OnConversationListener
+ msgListener func() open_im_sdk_callback.OnAdvancedMsgListener
+ msgKvListener func() open_im_sdk_callback.OnMessageKvInfoListener
+ batchMsgListener func() open_im_sdk_callback.OnBatchMsgListener
+ recvCH chan common.Cmd2Value
+ loginUserID string
+ platformID int32
+ DataDir string
+ friend *friend.Friend
+ group *group.Group
+ user *user.User
+ file *file.File
+ business *business.Business
+ messageController *MessageController
+ cache *cache.Cache[string, *model_struct.LocalConversation]
+ full *full.Full
+ maxSeqRecorder MaxSeqRecorder
+ IsExternalExtensions bool
+
+ startTime time.Time
+
+ typing *typing
+}
+
+func (c *Conversation) SetMsgListener(msgListener func() open_im_sdk_callback.OnAdvancedMsgListener) {
+ c.msgListener = msgListener
+}
+
+func (c *Conversation) SetMsgKvListener(msgKvListener func() open_im_sdk_callback.OnMessageKvInfoListener) {
+ c.msgKvListener = msgKvListener
+}
+
+func (c *Conversation) SetBatchMsgListener(batchMsgListener func() open_im_sdk_callback.OnBatchMsgListener) {
+ c.batchMsgListener = batchMsgListener
+}
+
+func NewConversation(ctx context.Context, longConnMgr *interaction.LongConnMgr, db db_interface.DataBase,
+ ch chan common.Cmd2Value, friend *friend.Friend, group *group.Group, user *user.User, business *business.Business,
+ full *full.Full, file *file.File) *Conversation {
+ info := ccontext.Info(ctx)
+ n := &Conversation{db: db,
+ LongConnMgr: longConnMgr,
+ recvCH: ch,
+ loginUserID: info.UserID(),
+ platformID: info.PlatformID(),
+ DataDir: info.DataDir(),
+ friend: friend,
+ group: group,
+ user: user,
+ full: full,
+ business: business,
+ file: file,
+ messageController: NewMessageController(db, ch),
+ IsExternalExtensions: info.IsExternalExtensions(),
+ maxSeqRecorder: NewMaxSeqRecorder(),
+ }
+ n.typing = newTyping(n)
+ n.initSyncer()
+ n.cache = cache.NewCache[string, *model_struct.LocalConversation]()
+ return n
+}
+
+func (c *Conversation) initSyncer() {
+ c.conversationSyncer = syncer.New[*model_struct.LocalConversation, syncer.NoResp, string](
+ func(ctx context.Context, value *model_struct.LocalConversation) error {
+ return c.db.InsertConversation(ctx, value)
+ },
+ func(ctx context.Context, value *model_struct.LocalConversation) error {
+ return c.db.DeleteConversation(ctx, value.ConversationID)
+ },
+ func(ctx context.Context, serverConversation, localConversation *model_struct.LocalConversation) error {
+ return c.db.UpdateColumnsConversation(ctx, serverConversation.ConversationID,
+ map[string]interface{}{"recv_msg_opt": serverConversation.RecvMsgOpt,
+ "is_pinned": serverConversation.IsPinned, "is_private_chat": serverConversation.IsPrivateChat, "burn_duration": serverConversation.BurnDuration,
+ "is_not_in_group": serverConversation.IsNotInGroup, "group_at_type": serverConversation.GroupAtType,
+ "update_unread_count_time": serverConversation.UpdateUnreadCountTime,
+ "attached_info": serverConversation.AttachedInfo, "ex": serverConversation.Ex, "msg_destruct_time": serverConversation.MsgDestructTime,
+ "is_msg_destruct": serverConversation.IsMsgDestruct,
+ "max_seq": serverConversation.MaxSeq, "min_seq": serverConversation.MinSeq, "has_read_seq": serverConversation.HasReadSeq})
+ },
+ func(value *model_struct.LocalConversation) string {
+ return value.ConversationID
+ },
+ func(server, local *model_struct.LocalConversation) bool {
+ if server.RecvMsgOpt != local.RecvMsgOpt ||
+ server.IsPinned != local.IsPinned ||
+ server.IsPrivateChat != local.IsPrivateChat ||
+ server.BurnDuration != local.BurnDuration ||
+ server.IsNotInGroup != local.IsNotInGroup ||
+ server.GroupAtType != local.GroupAtType ||
+ server.UpdateUnreadCountTime != local.UpdateUnreadCountTime ||
+ server.AttachedInfo != local.AttachedInfo ||
+ server.Ex != local.Ex ||
+ server.MaxSeq != local.MaxSeq ||
+ server.MinSeq != local.MinSeq ||
+ server.MsgDestructTime != local.MsgDestructTime ||
+ server.IsMsgDestruct != local.IsMsgDestruct {
+ log.ZDebug(context.Background(), "not same", "conversationID", server.ConversationID, "server", server.RecvMsgOpt, "local", local.RecvMsgOpt)
+ return false
+ }
+ return true
+ },
+ nil,
+ )
+}
+
+func (c *Conversation) GetCh() chan common.Cmd2Value {
+ return c.recvCH
+}
+
+type onlineMsgKey struct {
+ ClientMsgID string
+ ServerMsgID string
+}
+
+func (c *Conversation) doMsgNew(c2v common.Cmd2Value) {
+ allMsg := c2v.Value.(sdk_struct.CmdNewMsgComeToConversation).Msgs
+ ctx := c2v.Ctx
+ var isTriggerUnReadCount bool
+ insertMsg := make(map[string][]*model_struct.LocalChatLog, 10)
+ updateMsg := make(map[string][]*model_struct.LocalChatLog, 10)
+ var exceptionMsg []*model_struct.LocalErrChatLog
+ //var unreadMessages []*model_struct.LocalConversationUnreadMessage
+ var newMessages sdk_struct.NewMsgList
+ // var reactionMsgModifierList, reactionMsgDeleterList sdk_struct.NewMsgList
+ var isUnreadCount, isConversationUpdate, isHistory, isNotPrivate, isSenderConversationUpdate bool
+ conversationChangedSet := make(map[string]*model_struct.LocalConversation)
+ newConversationSet := make(map[string]*model_struct.LocalConversation)
+ conversationSet := make(map[string]*model_struct.LocalConversation)
+ phConversationChangedSet := make(map[string]*model_struct.LocalConversation)
+ phNewConversationSet := make(map[string]*model_struct.LocalConversation)
+ log.ZDebug(ctx, "message come here conversation ch", "conversation length", len(allMsg))
+ b := time.Now()
+ onlineMap := make(map[onlineMsgKey]struct{})
+ for conversationID, msgs := range allMsg {
+ log.ZDebug(ctx, "parse message in one conversation", "conversationID",
+ conversationID, "message length", len(msgs.Msgs))
+ var insertMessage, selfInsertMessage, othersInsertMessage []*model_struct.LocalChatLog
+ var updateMessage []*model_struct.LocalChatLog
+ for _, v := range msgs.Msgs {
+ log.ZDebug(ctx, "parse message ", "conversationID", conversationID, "msg", v)
+ isHistory = utils.GetSwitchFromOptions(v.Options, constant.IsHistory)
+ isUnreadCount = utils.GetSwitchFromOptions(v.Options, constant.IsUnreadCount)
+ isConversationUpdate = utils.GetSwitchFromOptions(v.Options, constant.IsConversationUpdate)
+ isNotPrivate = utils.GetSwitchFromOptions(v.Options, constant.IsNotPrivate)
+ isSenderConversationUpdate = utils.GetSwitchFromOptions(v.Options, constant.IsSenderConversationUpdate)
+ msg := &sdk_struct.MsgStruct{}
+ copier.Copy(msg, v)
+ msg.Content = string(v.Content)
+ var attachedInfo sdk_struct.AttachedInfoElem
+ _ = utils.JsonStringToStruct(v.AttachedInfo, &attachedInfo)
+ msg.AttachedInfoElem = &attachedInfo
+
+ msg.Status = constant.MsgStatusSendSuccess
+ // msg.IsRead = false
+ //De-analyze data
+ err := c.msgHandleByContentType(msg)
+ if err != nil {
+ log.ZError(ctx, "Parsing data error:", err, "type: ", msg.ContentType)
+ continue
+ }
+ //When the message has been marked and deleted by the cloud, it is directly inserted locally without any conversation and message update.
+ if msg.Status == constant.MsgStatusHasDeleted {
+ insertMessage = append(insertMessage, c.msgStructToLocalChatLog(msg))
+ continue
+ }
+ if !isNotPrivate {
+ msg.AttachedInfoElem.IsPrivateChat = true
+ }
+ if msg.ClientMsgID == "" {
+ exceptionMsg = append(exceptionMsg, c.msgStructToLocalErrChatLog(msg))
+ continue
+ }
+ if conversationID == "" {
+ log.ZError(ctx, "conversationID is empty", errors.New("conversationID is empty"), "msg", msg)
+ continue
+ }
+ if !isHistory {
+ onlineMap[onlineMsgKey{ClientMsgID: v.ClientMsgID, ServerMsgID: v.ServerMsgID}] = struct{}{}
+ newMessages = append(newMessages, msg)
+
+ }
+ log.ZDebug(ctx, "decode message", "msg", msg)
+ if v.SendID == c.loginUserID { //seq
+ // Messages sent by myself //if sent through this terminal
+ m, err := c.db.GetMessage(ctx, conversationID, msg.ClientMsgID)
+ if err == nil {
+ log.ZInfo(ctx, "have message", "msg", msg)
+ if m.Seq == 0 {
+ if !isConversationUpdate {
+ msg.Status = constant.MsgStatusFiltered
+ }
+ updateMessage = append(updateMessage, c.msgStructToLocalChatLog(msg))
+ } else {
+ exceptionMsg = append(exceptionMsg, c.msgStructToLocalErrChatLog(msg))
+ }
+ } else {
+ log.ZInfo(ctx, "sync message", "msg", msg)
+ lc := model_struct.LocalConversation{
+ ConversationType: v.SessionType,
+ LatestMsg: utils.StructToJsonString(msg),
+ LatestMsgSendTime: msg.SendTime,
+ ConversationID: conversationID,
+ }
+ switch v.SessionType {
+ case constant.SingleChatType:
+ lc.UserID = v.RecvID
+ case constant.GroupChatType, constant.SuperGroupChatType:
+ lc.GroupID = v.GroupID
+ }
+ if isConversationUpdate {
+ if isSenderConversationUpdate {
+ log.ZDebug(ctx, "updateConversation msg", "message", v, "conversation", lc)
+ c.updateConversation(&lc, conversationSet)
+ }
+ newMessages = append(newMessages, msg)
+ }
+ if isHistory {
+ selfInsertMessage = append(selfInsertMessage, c.msgStructToLocalChatLog(msg))
+ }
+ }
+ } else { //Sent by others
+ if _, err := c.db.GetMessage(ctx, conversationID, msg.ClientMsgID); err != nil { //Deduplication operation
+ lc := model_struct.LocalConversation{
+ ConversationType: v.SessionType,
+ LatestMsg: utils.StructToJsonString(msg),
+ LatestMsgSendTime: msg.SendTime,
+ ConversationID: conversationID,
+ }
+ switch v.SessionType {
+ case constant.SingleChatType:
+ lc.UserID = v.SendID
+ lc.ShowName = msg.SenderNickname
+ lc.FaceURL = msg.SenderFaceURL
+ case constant.GroupChatType, constant.SuperGroupChatType:
+ lc.GroupID = v.GroupID
+ case constant.NotificationChatType:
+ lc.UserID = v.SendID
+ }
+ if isUnreadCount {
+ //cacheConversation := c.cache.GetConversation(lc.ConversationID)
+ if c.maxSeqRecorder.IsNewMsg(conversationID, msg.Seq) {
+ isTriggerUnReadCount = true
+ lc.UnreadCount = 1
+ c.maxSeqRecorder.Incr(conversationID, 1)
+ }
+ }
+ if isConversationUpdate {
+ c.updateConversation(&lc, conversationSet)
+ newMessages = append(newMessages, msg)
+ }
+ if isHistory {
+ othersInsertMessage = append(othersInsertMessage, c.msgStructToLocalChatLog(msg))
+ }
+
+ } else {
+ exceptionMsg = append(exceptionMsg, c.msgStructToLocalErrChatLog(msg))
+ log.ZWarn(ctx, "Deduplication operation ", nil, "msg", *c.msgStructToLocalErrChatLog(msg))
+ msg.Status = constant.MsgStatusFiltered
+ msg.ClientMsgID = msg.ClientMsgID + utils.Int64ToString(utils.GetCurrentTimestampByNano())
+ othersInsertMessage = append(othersInsertMessage, c.msgStructToLocalChatLog(msg))
+ }
+ }
+ }
+ insertMsg[conversationID] = append(insertMessage, c.faceURLAndNicknameHandle(ctx, selfInsertMessage, othersInsertMessage, conversationID)...)
+ updateMsg[conversationID] = updateMessage
+ }
+ list, err := c.db.GetAllConversationListDB(ctx)
+ if err != nil {
+ log.ZError(ctx, "GetAllConversationListDB", err)
+ }
+ m := make(map[string]*model_struct.LocalConversation)
+ listToMap(list, m)
+ log.ZDebug(ctx, "listToMap: ", "local conversation", list, "generated c map", conversationSet)
+ c.diff(ctx, m, conversationSet, conversationChangedSet, newConversationSet)
+ log.ZInfo(ctx, "trigger map is :", "newConversations", newConversationSet, "changedConversations", conversationChangedSet)
+
+ //seq sync message update
+ if err := c.messageController.BatchUpdateMessageList(ctx, updateMsg); err != nil {
+ log.ZError(ctx, "sync seq normal message err :", err)
+ }
+
+ //Normal message storage
+ _ = c.messageController.BatchInsertMessageList(ctx, insertMsg)
+
+ hList, _ := c.db.GetHiddenConversationList(ctx)
+ for _, v := range hList {
+ if nc, ok := newConversationSet[v.ConversationID]; ok {
+ phConversationChangedSet[v.ConversationID] = nc
+ nc.RecvMsgOpt = v.RecvMsgOpt
+ nc.GroupAtType = v.GroupAtType
+ nc.IsPinned = v.IsPinned
+ nc.IsPrivateChat = v.IsPrivateChat
+ if nc.IsPrivateChat {
+ nc.BurnDuration = v.BurnDuration
+ }
+ if v.UnreadCount != 0 {
+ nc.UnreadCount = v.UnreadCount
+ }
+ nc.IsNotInGroup = v.IsNotInGroup
+ nc.AttachedInfo = v.AttachedInfo
+ nc.Ex = v.Ex
+ nc.IsMsgDestruct = v.IsMsgDestruct
+ nc.MsgDestructTime = v.MsgDestructTime
+ }
+ }
+
+ for k, v := range newConversationSet {
+ if _, ok := phConversationChangedSet[v.ConversationID]; !ok {
+ phNewConversationSet[k] = v
+ }
+ }
+
+ if err := c.db.BatchUpdateConversationList(ctx, append(mapConversationToList(conversationChangedSet), mapConversationToList(phConversationChangedSet)...)); err != nil {
+ log.ZError(ctx, "insert changed conversation err :", err)
+ }
+ //New conversation storage
+
+ if err := c.db.BatchInsertConversationList(ctx, mapConversationToList(phNewConversationSet)); err != nil {
+ log.ZError(ctx, "insert new conversation err:", err)
+ }
+ if c.batchMsgListener() != nil {
+ c.batchNewMessages(ctx, newMessages)
+ } else {
+ c.newMessage(ctx, newMessages, conversationChangedSet, newConversationSet, onlineMap)
+ }
+ if len(newConversationSet) > 0 {
+ c.doUpdateConversation(common.Cmd2Value{Value: common.UpdateConNode{Action: constant.NewConDirect, Args: utils.StructToJsonString(mapConversationToList(newConversationSet))}})
+ }
+ if len(conversationChangedSet) > 0 {
+ c.doUpdateConversation(common.Cmd2Value{Value: common.UpdateConNode{Action: constant.ConChangeDirect, Args: utils.StructToJsonString(mapConversationToList(conversationChangedSet))}})
+ }
+
+ if isTriggerUnReadCount {
+ c.doUpdateConversation(common.Cmd2Value{Value: common.UpdateConNode{Action: constant.TotalUnreadMessageChanged, Args: ""}})
+ }
+
+ for _, msgs := range allMsg {
+ for _, msg := range msgs.Msgs {
+ if msg.ContentType == constant.Typing {
+ c.typing.onNewMsg(ctx, msg)
+ }
+ }
+ }
+ log.ZDebug(ctx, "insert msg", "cost time", time.Since(b), "len", len(allMsg))
+}
+
+func listToMap(list []*model_struct.LocalConversation, m map[string]*model_struct.LocalConversation) {
+ for _, v := range list {
+ m[v.ConversationID] = v
+ }
+
+}
+func removeElementInList(a sdk_struct.NewMsgList, e *sdk_struct.MsgStruct) (b sdk_struct.NewMsgList) {
+ for i := 0; i < len(a); i++ {
+ if a[i] != e {
+ b = append(b, a[i])
+ }
+ }
+ return b
+}
+func (c *Conversation) diff(ctx context.Context, local, generated, cc, nc map[string]*model_struct.LocalConversation) {
+ var newConversations []*model_struct.LocalConversation
+ for _, v := range generated {
+ if localC, ok := local[v.ConversationID]; ok {
+
+ if v.LatestMsgSendTime > localC.LatestMsgSendTime {
+ localC.UnreadCount = localC.UnreadCount + v.UnreadCount
+ localC.LatestMsg = v.LatestMsg
+ localC.LatestMsgSendTime = v.LatestMsgSendTime
+ cc[v.ConversationID] = localC
+ } else {
+ localC.UnreadCount = localC.UnreadCount + v.UnreadCount
+ cc[v.ConversationID] = localC
+ }
+
+ } else {
+ newConversations = append(newConversations, v)
+ }
+ }
+ if err := c.batchAddFaceURLAndName(ctx, newConversations...); err != nil {
+ log.ZError(ctx, "batchAddFaceURLAndName err", err, "conversations", newConversations)
+ } else {
+ for _, v := range newConversations {
+ nc[v.ConversationID] = v
+ }
+ }
+}
+func (c *Conversation) genConversationGroupAtType(lc *model_struct.LocalConversation, s *sdk_struct.MsgStruct) {
+ if s.ContentType == constant.AtText {
+ tagMe := utils.IsContain(c.loginUserID, s.AtTextElem.AtUserList)
+ tagAll := utils.IsContain(constant.AtAllString, s.AtTextElem.AtUserList)
+ if tagAll {
+ if tagMe {
+ lc.GroupAtType = constant.AtAllAtMe
+ return
+ }
+ lc.GroupAtType = constant.AtAll
+ return
+ }
+ if tagMe {
+ lc.GroupAtType = constant.AtMe
+ }
+ }
+}
+
+// funcation (c *Conversation) msgStructToLocalChatLog(m *sdk_struct.MsgStruct) *model_struct.LocalChatLog {
+// var lc model_struct.LocalChatLog
+// copier.Copy(&lc, m)
+// if m.SessionType == constant.GroupChatType || m.SessionType == constant.SuperGroupChatType {
+// lc.RecvID = m.GroupID
+// }
+// lc.AttachedInfo = utils.StructToJsonString(m.AttachedInfoElem)
+// return &lc
+// }
+func (c *Conversation) msgStructToLocalErrChatLog(m *sdk_struct.MsgStruct) *model_struct.LocalErrChatLog {
+ var lc model_struct.LocalErrChatLog
+ copier.Copy(&lc, m)
+ if m.SessionType == constant.GroupChatType || m.SessionType == constant.SuperGroupChatType {
+ lc.RecvID = m.GroupID
+ }
+ return &lc
+}
+
+func (c *Conversation) tempCacheChatLog(ctx context.Context, messageList []*sdk_struct.MsgStruct) {
+ var newMessageList []*model_struct.TempCacheLocalChatLog
+ copier.Copy(&newMessageList, &messageList)
+ if err := c.db.BatchInsertTempCacheMessageList(ctx, newMessageList); err != nil {
+ // log.Error("", "BatchInsertTempCacheMessageList detail err:", err.Error(), len(newMessageList))
+ for _, v := range newMessageList {
+ err := c.db.InsertTempCacheMessage(ctx, v)
+ if err != nil {
+ log.ZWarn(ctx, "InsertTempCacheMessage operation", err, "chat err log: ", *v)
+ }
+ }
+ }
+}
+
+func (c *Conversation) DoMsgReaction(msgReactionList []*sdk_struct.MsgStruct) {
+
+ //for _, v := range msgReactionList {
+ // var msg sdk_struct.MessageReaction
+ // err := json.Unmarshal([]byte(v.Content), &msg)
+ // if err != nil {
+ // log.Error("internal", "unmarshal failed, err : ", err.Error(), *v)
+ // continue
+ // }
+ // s := sdk_struct.MsgStruct{GroupID: msg.GroupID, ClientMsgID: msg.ClientMsgID, SessionType: msg.SessionType}
+ // message, err := c.db.GetMessageController(&s)
+ // if err != nil {
+ // log.Error("internal", "GetMessageController, err : ", err.Error(), s)
+ // continue
+ // }
+ // t := new(model_struct.LocalChatLog)
+ // attachInfo := sdk_struct.AttachedInfoElem{}
+ // _ = utils.JsonStringToStruct(message.AttachedInfo, &attachInfo)
+ //
+ // contain, v := isContainMessageReaction(msg.ReactionType, attachInfo.MessageReactionElem)
+ // if contain {
+ // userContain, userReaction := isContainUserReactionElem(msg.UserID, v.UserReactionList)
+ // if userContain {
+ // if !v.CanRepeat && userReaction.Counter > 0 {
+ // // to do nothing
+ // continue
+ // } else {
+ // userReaction.Counter += msg.Counter
+ // v.Counter += msg.Counter
+ // if v.Counter < 0 {
+ // log.Debug("internal", "after operate all counter < 0", v.Type, v.Counter, msg.Counter)
+ // v.Counter = 0
+ // }
+ // if userReaction.Counter <= 0 {
+ // log.Debug("internal", "after operate userReaction counter < 0", v.Type, userReaction.Counter, msg.Counter)
+ // v.UserReactionList = DeleteUserReactionElem(v.UserReactionList, c.loginUserID)
+ // }
+ // }
+ // } else {
+ // log.Debug("internal", "attachInfo.MessageReactionElem is nil", msg)
+ // u := new(sdk_struct.UserReactionElem)
+ // u.UserID = msg.UserID
+ // u.Counter = msg.Counter
+ // v.Counter += msg.Counter
+ // if v.Counter < 0 {
+ // log.Debug("internal", "after operate all counter < 0", v.Type, v.Counter, msg.Counter)
+ // v.Counter = 0
+ // }
+ // if u.Counter <= 0 {
+ // log.Debug("internal", "after operate userReaction counter < 0", v.Type, u.Counter, msg.Counter)
+ // v.UserReactionList = DeleteUserReactionElem(v.UserReactionList, msg.UserID)
+ // }
+ // v.UserReactionList = append(v.UserReactionList, u)
+ //
+ // }
+ //
+ // } else {
+ // log.Debug("internal", "attachInfo.MessageReactionElem is nil", msg)
+ // t := new(sdk_struct.ReactionElem)
+ // t.Counter = msg.Counter
+ // t.Type = msg.ReactionType
+ // u := new(sdk_struct.UserReactionElem)
+ // u.UserID = msg.UserID
+ // u.Counter = msg.Counter
+ // t.UserReactionList = append(t.UserReactionList, u)
+ // attachInfo.MessageReactionElem = append(attachInfo.MessageReactionElem, t)
+ //
+ // }
+ //
+ // t.AttachedInfo = utils.StructToJsonString(attachInfo)
+ // t.ClientMsgID = message.ClientMsgID
+ //
+ // t.SessionType = message.SessionType
+ // t.RecvID = message.RecvID
+ // err1 := c.db.UpdateMessageController(t)
+ // if err1 != nil {
+ // log.Error("internal", "UpdateMessageController err:", err1, "ClientMsgID", *t, message)
+ // }
+ // c.doUpdateConversation(common.Cmd2Value{Value: common.UpdateConNode{"", constant.MessageChange, &s}})
+ //
+ //}
+}
+
+// func (c *Conversation) doReactionMsgModifier(ctx context.Context, msgReactionList []*sdk_struct.MsgStruct) {
+// for _, msgStruct := range msgReactionList {
+// var n server_api_params.ReactionMessageModifierNotification
+// err := json.Unmarshal([]byte(msgStruct.Content), &n)
+// if err != nil {
+// // log.Error("internal", "unmarshal failed err:", err.Error(), *msgStruct)
+// continue
+// }
+// switch n.Operation {
+// case constant.AddMessageExtensions:
+// var reactionExtensionList []*sdkws.KeyValue
+// for _, value := range n.SuccessReactionExtensionList {
+// reactionExtensionList = append(reactionExtensionList, value)
+// }
+// if !(msgStruct.SendID == c.loginUserID && msgStruct.SenderPlatformID == c.platformID) {
+// c.msgListener.OnRecvMessageExtensionsAdded(n.ClientMsgID, utils.StructToJsonString(reactionExtensionList))
+// }
+// case constant.SetMessageExtensions:
+// err = c.db.GetAndUpdateMessageReactionExtension(ctx, n.ClientMsgID, n.SuccessReactionExtensionList)
+// if err != nil {
+// // log.Error("internal", "GetAndUpdateMessageReactionExtension err:", err.Error())
+// continue
+// }
+// var reactionExtensionList []*sdkws.KeyValue
+// for _, value := range n.SuccessReactionExtensionList {
+// reactionExtensionList = append(reactionExtensionList, value)
+// }
+// if !(msgStruct.SendID == c.loginUserID && msgStruct.SenderPlatformID == c.platformID) {
+// c.msgListener.OnRecvMessageExtensionsChanged(n.ClientMsgID, utils.StructToJsonString(reactionExtensionList))
+// }
+
+// }
+// t := model_struct.LocalChatLog{}
+// t.ClientMsgID = n.ClientMsgID
+// t.SessionType = n.SessionType
+// t.IsExternalExtensions = n.IsExternalExtensions
+// t.IsReact = n.IsReact
+// t.MsgFirstModifyTime = n.MsgFirstModifyTime
+// if n.SessionType == constant.GroupChatType || n.SessionType == constant.SuperGroupChatType {
+// t.RecvID = n.SourceID
+// }
+// //todo
+// err2 := c.db.UpdateMessage(ctx, "", &t)
+// if err2 != nil {
+// // log.Error("internal", "unmarshal failed err:", err2.Error(), t)
+// continue
+// }
+// }
+// }
+
+func (c *Conversation) doReactionMsgDeleter(ctx context.Context, msgReactionList []*sdk_struct.MsgStruct) {
+ // for _, msgStruct := range msgReactionList {
+ // var n server_api_params.ReactionMessageDeleteNotification
+ // err := json.Unmarshal([]byte(msgStruct.Content), &n)
+ // if err != nil {
+ // // log.Error("internal", "unmarshal failed err:", err.Error(), *msgStruct)
+ // continue
+ // }
+ // err = c.db.DeleteAndUpdateMessageReactionExtension(ctx, n.ClientMsgID, n.SuccessReactionExtensionList)
+ // if err != nil {
+ // // log.Error("internal", "GetAndUpdateMessageReactionExtension err:", err.Error())
+ // continue
+ // }
+ // var deleteKeyList []string
+ // for _, value := range n.SuccessReactionExtensionList {
+ // deleteKeyList = append(deleteKeyList, value.TypeKey)
+ // }
+ // c.msgListener.OnRecvMessageExtensionsDeleted(n.ClientMsgID, utils.StructToJsonString(deleteKeyList))
+
+ // }
+}
+
+func isContainRevokedList(target string, List []*sdk_struct.MessageRevoked) (bool, *sdk_struct.MessageRevoked) {
+ for _, element := range List {
+ if target == element.ClientMsgID {
+ return true, element
+ }
+ }
+ return false, nil
+}
+
+func (c *Conversation) newMessage(ctx context.Context, newMessagesList sdk_struct.NewMsgList, cc, nc map[string]*model_struct.LocalConversation, onlineMsg map[onlineMsgKey]struct{}) {
+ sort.Sort(newMessagesList)
+ if c.GetBackground() {
+ u, err := c.user.GetSelfUserInfo(ctx)
+ if err != nil {
+ log.ZWarn(ctx, "GetSelfUserInfo err", err)
+ return
+ }
+ if u.GlobalRecvMsgOpt != constant.ReceiveMessage {
+ return
+ }
+ for _, w := range newMessagesList {
+ conversationID := utils.GetConversationIDByMsg(w)
+ if v, ok := cc[conversationID]; ok && v.RecvMsgOpt == constant.ReceiveMessage {
+ c.msgListener().OnRecvOfflineNewMessage(utils.StructToJsonString(w))
+ }
+ if v, ok := nc[conversationID]; ok && v.RecvMsgOpt == constant.ReceiveMessage {
+ c.msgListener().OnRecvOfflineNewMessage(utils.StructToJsonString(w))
+ }
+ }
+ } else {
+ for _, w := range newMessagesList {
+ if w.ContentType == constant.Typing {
+ continue
+ }
+ if _, ok := onlineMsg[onlineMsgKey{ClientMsgID: w.ClientMsgID, ServerMsgID: w.ServerMsgID}]; ok {
+ c.msgListener().OnRecvOnlineOnlyMessage(utils.StructToJsonString(w))
+ } else {
+ c.msgListener().OnRecvNewMessage(utils.StructToJsonString(w))
+ }
+ }
+ }
+}
+
+func (c *Conversation) batchNewMessages(ctx context.Context, newMessagesList sdk_struct.NewMsgList) {
+ sort.Sort(newMessagesList)
+ if len(newMessagesList) > 0 {
+ c.batchMsgListener().OnRecvNewMessages(utils.StructToJsonString(newMessagesList))
+ //if c.IsBackground {
+ // c.batchMsgListener.OnRecvOfflineNewMessages(utils.StructToJsonString(newMessagesList))
+ //}
+ }
+
+}
+
+func (c *Conversation) doMsgReadState(ctx context.Context, msgReadList []*sdk_struct.MsgStruct) {
+ var messageReceiptResp []*sdk_struct.MessageReceipt
+ var msgIdList []string
+ chrsList := make(map[string][]string)
+ var conversationID string
+
+ for _, rd := range msgReadList {
+ err := json.Unmarshal([]byte(rd.Content), &msgIdList)
+ if err != nil {
+ // log.Error("internal", "unmarshal failed, err : ", err.Error())
+ return
+ }
+ var msgIdListStatusOK []string
+ for _, v := range msgIdList {
+ //m, err := c.db.GetMessage(ctx, v)
+ //if err != nil {
+ // log.Error("internal", "GetMessage err:", err, "ClientMsgID", v)
+ // continue
+ //}
+ //attachInfo := sdk_struct.AttachedInfoElem{}
+ //_ = utils.JsonStringToStruct(m.AttachedInfo, &attachInfo)
+ //attachInfo.HasReadTime = rd.SendTime
+ //m.AttachedInfo = utils.StructToJsonString(attachInfo)
+ //m.IsRead = true
+ //err = c.db.UpdateMessage(ctx, m)
+ //if err != nil {
+ // log.Error("internal", "setMessageHasReadByMsgID err:", err, "ClientMsgID", v)
+ // continue
+ //}
+
+ msgIdListStatusOK = append(msgIdListStatusOK, v)
+ }
+ if len(msgIdListStatusOK) > 0 {
+ msgRt := new(sdk_struct.MessageReceipt)
+ msgRt.ContentType = rd.ContentType
+ msgRt.MsgFrom = rd.MsgFrom
+ msgRt.ReadTime = rd.SendTime
+ msgRt.UserID = rd.SendID
+ msgRt.SessionType = constant.SingleChatType
+ msgRt.MsgIDList = msgIdListStatusOK
+ messageReceiptResp = append(messageReceiptResp, msgRt)
+ }
+ if rd.SendID == c.loginUserID {
+ conversationID = c.getConversationIDBySessionType(rd.RecvID, constant.SingleChatType)
+ } else {
+ conversationID = c.getConversationIDBySessionType(rd.SendID, constant.SingleChatType)
+ }
+ if v, ok := chrsList[conversationID]; ok {
+ chrsList[conversationID] = append(v, msgIdListStatusOK...)
+ } else {
+ chrsList[conversationID] = msgIdListStatusOK
+ }
+ c.doUpdateConversation(common.Cmd2Value{Value: common.UpdateConNode{Action: constant.ConversationLatestMsgHasRead, Args: chrsList}})
+ }
+ if len(messageReceiptResp) > 0 {
+
+ // log.Info("internal", "OnRecvC2CReadReceipt: ", utils.StructToJsonString(messageReceiptResp))
+ c.msgListener().OnRecvC2CReadReceipt(utils.StructToJsonString(messageReceiptResp))
+ }
+}
+
+type messageKvList struct {
+ ClientMsgID string `json:"clientMsgID"`
+ ChangedKvList []*sdk.SingleTypeKeyInfoSum `json:"changedKvList"`
+}
+
+func (c *Conversation) msgConvert(msg *sdk_struct.MsgStruct) (err error) {
+ err = c.msgHandleByContentType(msg)
+ if err != nil {
+ return err
+ } else {
+ if msg.SessionType == constant.GroupChatType {
+ msg.GroupID = msg.RecvID
+ msg.RecvID = c.loginUserID
+ }
+ return nil
+ }
+}
+
+func (c *Conversation) msgHandleByContentType(msg *sdk_struct.MsgStruct) (err error) {
+ switch msg.ContentType {
+ case constant.Text:
+ t := sdk_struct.TextElem{}
+ err = utils.JsonStringToStruct(msg.Content, &t)
+ msg.TextElem = &t
+ case constant.Picture:
+ t := sdk_struct.PictureElem{}
+ err = utils.JsonStringToStruct(msg.Content, &t)
+ msg.PictureElem = &t
+ case constant.Sound:
+ t := sdk_struct.SoundElem{}
+ err = utils.JsonStringToStruct(msg.Content, &t)
+ msg.SoundElem = &t
+ case constant.Video:
+ t := sdk_struct.VideoElem{}
+ err = utils.JsonStringToStruct(msg.Content, &t)
+ msg.VideoElem = &t
+ case constant.File:
+ t := sdk_struct.FileElem{}
+ err = utils.JsonStringToStruct(msg.Content, &t)
+ msg.FileElem = &t
+ case constant.AdvancedText:
+ t := sdk_struct.AdvancedTextElem{}
+ err = utils.JsonStringToStruct(msg.Content, &t)
+ msg.AdvancedTextElem = &t
+ case constant.AtText:
+ t := sdk_struct.AtTextElem{}
+ err = utils.JsonStringToStruct(msg.Content, &t)
+ msg.AtTextElem = &t
+ if err == nil {
+ if utils.IsContain(c.loginUserID, msg.AtTextElem.AtUserList) {
+ msg.AtTextElem.IsAtSelf = true
+ }
+ }
+ case constant.Location:
+ t := sdk_struct.LocationElem{}
+ err = utils.JsonStringToStruct(msg.Content, &t)
+ msg.LocationElem = &t
+ case constant.Custom:
+ fallthrough
+ case constant.CustomMsgNotTriggerConversation:
+ fallthrough
+ case constant.CustomMsgOnlineOnly:
+ t := sdk_struct.CustomElem{}
+ err = utils.JsonStringToStruct(msg.Content, &t)
+ msg.CustomElem = &t
+ case constant.Typing:
+ t := sdk_struct.TypingElem{}
+ err = utils.JsonStringToStruct(msg.Content, &t)
+ msg.TypingElem = &t
+ case constant.Quote:
+ t := sdk_struct.QuoteElem{}
+ err = utils.JsonStringToStruct(msg.Content, &t)
+ msg.QuoteElem = &t
+ case constant.Merger:
+ t := sdk_struct.MergeElem{}
+ err = utils.JsonStringToStruct(msg.Content, &t)
+ msg.MergeElem = &t
+ case constant.Face:
+ t := sdk_struct.FaceElem{}
+ err = utils.JsonStringToStruct(msg.Content, &t)
+ msg.FaceElem = &t
+ case constant.Card:
+ t := sdk_struct.CardElem{}
+ err = utils.JsonStringToStruct(msg.Content, &t)
+ msg.CardElem = &t
+ default:
+ t := sdk_struct.NotificationElem{}
+ err = utils.JsonStringToStruct(msg.Content, &t)
+ msg.NotificationElem = &t
+ }
+ msg.Content = ""
+
+ return utils.Wrap(err, "")
+}
+func (c *Conversation) updateConversation(lc *model_struct.LocalConversation, cs map[string]*model_struct.LocalConversation) {
+ if oldC, ok := cs[lc.ConversationID]; !ok {
+ cs[lc.ConversationID] = lc
+ } else {
+ if lc.LatestMsgSendTime > oldC.LatestMsgSendTime {
+ oldC.UnreadCount = oldC.UnreadCount + lc.UnreadCount
+ oldC.LatestMsg = lc.LatestMsg
+ oldC.LatestMsgSendTime = lc.LatestMsgSendTime
+ cs[lc.ConversationID] = oldC
+ } else {
+ oldC.UnreadCount = oldC.UnreadCount + lc.UnreadCount
+ cs[lc.ConversationID] = oldC
+ }
+ }
+ //if oldC, ok := cc[lc.ConversationID]; !ok {
+ // oc, err := c.db.GetConversation(lc.ConversationID)
+ // if err == nil && oc.ConversationID != "" {//åĻæäŧč¯åˇ˛įģåå¨
+ // if lc.LatestMsgSendTime > oc.LatestMsgSendTime {
+ // oc.UnreadCount = oc.UnreadCount + lc.UnreadCount
+ // oc.LatestMsg = lc.LatestMsg
+ // oc.LatestMsgSendTime = lc.LatestMsgSendTime
+ // cc[lc.ConversationID] = *oc
+ // } else {
+ // oc.UnreadCount = oc.UnreadCount + lc.UnreadCount
+ // cc[lc.ConversationID] = *oc
+ // }
+ // } else {
+ // if oldC, ok := nc[lc.ConversationID]; !ok {
+ // c.addFaceURLAndName(lc)
+ // nc[lc.ConversationID] = *lc
+ // } else {
+ // if lc.LatestMsgSendTime > oldC.LatestMsgSendTime {
+ // oldC.UnreadCount = oldC.UnreadCount + lc.UnreadCount
+ // oldC.LatestMsg = lc.LatestMsg
+ // oldC.LatestMsgSendTime = lc.LatestMsgSendTime
+ // nc[lc.ConversationID] = oldC
+ // } else {
+ // oldC.UnreadCount = oldC.UnreadCount + lc.UnreadCount
+ // nc[lc.ConversationID] = oldC
+ // }
+ // }
+ // }
+ //} else {
+ // if lc.LatestMsgSendTime > oldC.LatestMsgSendTime {
+ // oldC.UnreadCount = oldC.UnreadCount + lc.UnreadCount
+ // oldC.LatestMsg = lc.LatestMsg
+ // oldC.LatestMsgSendTime = lc.LatestMsgSendTime
+ // cc[lc.ConversationID] = oldC
+ // } else {
+ // oldC.UnreadCount = oldC.UnreadCount + lc.UnreadCount
+ // cc[lc.ConversationID] = oldC
+ // }
+ //
+ //}
+
+}
+func mapConversationToList(m map[string]*model_struct.LocalConversation) (cs []*model_struct.LocalConversation) {
+ for _, v := range m {
+ cs = append(cs, v)
+ }
+ return cs
+}
+func (c *Conversation) addFaceURLAndName(ctx context.Context, lc *model_struct.LocalConversation) error {
+ switch lc.ConversationType {
+ case constant.SingleChatType, constant.NotificationChatType:
+ faceUrl, name, err := c.getUserNameAndFaceURL(ctx, lc.UserID)
+ if err != nil {
+ return err
+ }
+ lc.FaceURL = faceUrl
+ lc.ShowName = name
+
+ case constant.GroupChatType, constant.SuperGroupChatType:
+ g, err := c.full.GetGroupInfoFromLocal2Svr(ctx, lc.GroupID, lc.ConversationType)
+ if err != nil {
+ return err
+ }
+ lc.ShowName = g.GroupName
+ lc.FaceURL = g.FaceURL
+ }
+ return nil
+}
+
+func (c *Conversation) batchAddFaceURLAndName(ctx context.Context, conversations ...*model_struct.LocalConversation) error {
+ if len(conversations) == 0 {
+ return nil
+ }
+ var userIDs, groupIDs []string
+ for _, conversation := range conversations {
+ if conversation.ConversationType == constant.SingleChatType ||
+ conversation.ConversationType == constant.NotificationChatType {
+ userIDs = append(userIDs, conversation.UserID)
+ } else if conversation.ConversationType == constant.SuperGroupChatType {
+ groupIDs = append(groupIDs, conversation.GroupID)
+ }
+ }
+ users, err := c.batchGetUserNameAndFaceURL(ctx, userIDs...)
+ if err != nil {
+ return err
+ }
+ groups, err := c.full.GetGroupsInfo(ctx, groupIDs...)
+ if err != nil {
+ return err
+ }
+ for _, conversation := range conversations {
+ if conversation.ConversationType == constant.SingleChatType ||
+ conversation.ConversationType == constant.NotificationChatType {
+ if v, ok := users[conversation.UserID]; ok {
+ conversation.FaceURL = v.FaceURL
+ conversation.ShowName = v.Nickname
+ } else {
+ log.ZWarn(ctx, "user info not found", errors.New("user not found"),
+ "userID", conversation.UserID)
+ }
+ } else if conversation.ConversationType == constant.SuperGroupChatType {
+ if v, ok := groups[conversation.GroupID]; ok {
+ conversation.FaceURL = v.FaceURL
+ conversation.ShowName = v.GroupName
+ } else {
+ log.ZWarn(ctx, "group info not found", errors.New("group not found"),
+ "groupID", conversation.GroupID)
+ }
+
+ }
+ }
+ return nil
+}
+func (c *Conversation) batchGetUserNameAndFaceURL(ctx context.Context, userIDs ...string) (map[string]*user.BasicInfo,
+ error) {
+ m := make(map[string]*user.BasicInfo)
+ var notCachedUserIDs []string
+ var notInFriend []string
+
+ friendList, err := c.friend.Db().GetFriendInfoList(ctx, userIDs)
+ if err != nil {
+ log.ZWarn(ctx, "BatchGetUserNameAndFaceURL", err, "userIDs", userIDs)
+ notInFriend = userIDs
+ } else {
+ notInFriend = datautil.SliceSub(userIDs, datautil.Slice(friendList, func(e *model_struct.LocalFriend) string {
+ return e.FriendUserID
+ }))
+ }
+ for _, localFriend := range friendList {
+ userInfo := &user.BasicInfo{FaceURL: localFriend.FaceURL}
+ if localFriend.Remark != "" {
+ userInfo.Nickname = localFriend.Remark
+ } else {
+ userInfo.Nickname = localFriend.Nickname
+ }
+ m[localFriend.FriendUserID] = userInfo
+ }
+
+ for _, userID := range notInFriend {
+ if value, ok := c.user.UserBasicCache.Load(userID); ok {
+ m[userID] = value
+ } else {
+ notCachedUserIDs = append(notCachedUserIDs, userID)
+ }
+ }
+
+ if len(notCachedUserIDs) > 0 {
+ users, err := c.user.GetServerUserInfo(ctx, notCachedUserIDs)
+ if err != nil {
+ return nil, err
+ }
+ for _, u := range users {
+ userInfo := &user.BasicInfo{FaceURL: u.FaceURL, Nickname: u.Nickname}
+ m[u.UserID] = userInfo
+ c.user.UserBasicCache.Store(u.UserID, userInfo)
+ }
+ }
+ return m, nil
+}
+func (c *Conversation) getUserNameAndFaceURL(ctx context.Context, userID string) (faceURL, name string, err error) {
+ //find in cache
+ if value, ok := c.user.UserBasicCache.Load(userID); ok {
+ return value.FaceURL, value.Nickname, nil
+ }
+ //get from local db
+ friendInfo, err := c.friend.Db().GetFriendInfoByFriendUserID(ctx, userID)
+ if err == nil {
+ faceURL = friendInfo.FaceURL
+ if friendInfo.Remark != "" {
+ name = friendInfo.Remark
+ } else {
+ name = friendInfo.Nickname
+ }
+ return faceURL, name, nil
+ }
+ //get from server db
+ users, err := c.user.GetServerUserInfo(ctx, []string{userID})
+ if err != nil {
+ return "", "", err
+ }
+ if len(users) == 0 {
+ return "", "", sdkerrs.ErrUserIDNotFound.WrapMsg(userID)
+ }
+ c.user.UserBasicCache.Store(userID, &user.BasicInfo{FaceURL: users[0].FaceURL, Nickname: users[0].Nickname})
+ return users[0].FaceURL, users[0].Nickname, nil
+}
+
+func (c *Conversation) GetInputStates(ctx context.Context, conversationID string, userID string) ([]int32, error) {
+ return c.typing.GetInputStates(conversationID, userID), nil
+}
+
+func (c *Conversation) ChangeInputStates(ctx context.Context, conversationID string, focus bool) error {
+ return c.typing.ChangeInputStates(ctx, conversationID, focus)
+}
diff --git a/go/chao-sdk-core/internal/conversation_msg/conversation_notification.go b/go/chao-sdk-core/internal/conversation_msg/conversation_notification.go
new file mode 100644
index 0000000..2c83926
--- /dev/null
+++ b/go/chao-sdk-core/internal/conversation_msg/conversation_notification.go
@@ -0,0 +1,714 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package conversation_msg
+
+import (
+ "context"
+ "encoding/json"
+ "fmt"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/common"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/sdk_struct"
+ "github.com/openimsdk/tools/utils/datautil"
+ "reflect"
+ "runtime"
+ "time"
+
+ "github.com/openimsdk/protocol/sdkws"
+ "github.com/openimsdk/tools/log"
+)
+
+func (c *Conversation) Work(c2v common.Cmd2Value) {
+ log.ZDebug(c2v.Ctx, "NotificationCmd start", "cmd", c2v.Cmd, "value", c2v.Value)
+ defer log.ZDebug(c2v.Ctx, "NotificationCmd end", "cmd", c2v.Cmd, "value", c2v.Value)
+ switch c2v.Cmd {
+ case constant.CmdNewMsgCome:
+ c.doMsgNew(c2v)
+ case constant.CmdSuperGroupMsgCome:
+ case constant.CmdUpdateConversation:
+ c.doUpdateConversation(c2v)
+ case constant.CmdUpdateMessage:
+ c.doUpdateMessage(c2v)
+ case constant.CmSyncReactionExtensions:
+ case constant.CmdNotification:
+ c.doNotificationNew(c2v)
+ }
+}
+
+func (c *Conversation) doNotificationNew(c2v common.Cmd2Value) {
+ ctx := c2v.Ctx
+ allMsg := c2v.Value.(sdk_struct.CmdNewMsgComeToConversation).Msgs
+ syncFlag := c2v.Value.(sdk_struct.CmdNewMsgComeToConversation).SyncFlag
+ switch syncFlag {
+ case constant.MsgSyncBegin:
+ c.startTime = time.Now()
+ c.ConversationListener().OnSyncServerStart()
+ if err := c.SyncAllConversationHashReadSeqs(ctx); err != nil {
+ log.ZError(ctx, "SyncConversationHashReadSeqs err", err)
+ }
+ //clear SubscriptionStatusMap
+ c.user.OnlineStatusCache.DeleteAll()
+ for _, syncFunc := range []func(c context.Context) error{
+ c.user.SyncLoginUserInfo,
+ c.friend.SyncAllBlackList, c.friend.SyncAllFriendApplication, c.friend.SyncAllSelfFriendApplication,
+ c.group.SyncAllAdminGroupApplication, c.group.SyncAllSelfGroupApplication, c.user.SyncAllCommand,
+ } {
+ go func(syncFunc func(c context.Context) error) {
+ _ = syncFunc(ctx)
+ }(syncFunc)
+ }
+
+ syncFunctions := []func(c context.Context) error{
+ c.group.SyncAllJoinedGroupsAndMembers, c.friend.IncrSyncFriends,
+ }
+
+ for _, syncFunc := range syncFunctions {
+ funcName := runtime.FuncForPC(reflect.ValueOf(syncFunc).Pointer()).Name()
+ startTime := time.Now()
+ err := syncFunc(ctx)
+ duration := time.Since(startTime)
+ if err != nil {
+ log.ZWarn(ctx, fmt.Sprintf("%s sync err", funcName), err, "duration", duration)
+ } else {
+ log.ZDebug(ctx, fmt.Sprintf("%s completed successfully", funcName), "duration", duration)
+ }
+ }
+ case constant.MsgSyncFailed:
+ c.ConversationListener().OnSyncServerFailed()
+ case constant.MsgSyncEnd:
+ log.ZDebug(ctx, "MsgSyncEnd", "time", time.Since(c.startTime).Milliseconds())
+ defer c.ConversationListener().OnSyncServerFinish()
+ go c.SyncAllConversations(ctx)
+ }
+
+ for conversationID, msgs := range allMsg {
+ log.ZDebug(ctx, "notification handling", "conversationID", conversationID, "msgs", msgs)
+ if len(msgs.Msgs) != 0 {
+ lastMsg := msgs.Msgs[len(msgs.Msgs)-1]
+ log.ZDebug(ctx, "SetNotificationSeq", "conversationID", conversationID, "seq", lastMsg.Seq)
+ if lastMsg.Seq != 0 {
+ if err := c.db.SetNotificationSeq(ctx, conversationID, lastMsg.Seq); err != nil {
+ log.ZError(ctx, "SetNotificationSeq err", err, "conversationID", conversationID, "lastMsg", lastMsg)
+ }
+ }
+ }
+ for _, v := range msgs.Msgs {
+ switch {
+ case v.ContentType == constant.ConversationChangeNotification:
+ c.DoConversationChangedNotification(ctx, v)
+ case v.ContentType == constant.ConversationPrivateChatNotification:
+ c.DoConversationIsPrivateChangedNotification(ctx, v)
+ case v.ContentType == constant.ConversationUnreadNotification:
+ var tips sdkws.ConversationHasReadTips
+ _ = json.Unmarshal(v.Content, &tips)
+ c.doUpdateConversation(common.Cmd2Value{Value: common.UpdateConNode{ConID: tips.ConversationID, Action: constant.UnreadCountSetZero}})
+ c.db.DeleteConversationUnreadMessageList(ctx, tips.ConversationID, tips.UnreadCountTime)
+ c.doUpdateConversation(common.Cmd2Value{Value: common.UpdateConNode{Action: constant.ConChange, Args: []string{tips.ConversationID}}})
+ continue
+ case v.ContentType == constant.BusinessNotification:
+ c.business.DoNotification(ctx, v)
+ continue
+ case v.ContentType == constant.RevokeNotification:
+ c.doRevokeMsg(ctx, v)
+ case v.ContentType == constant.ClearConversationNotification:
+ c.doClearConversations(ctx, v)
+ case v.ContentType == constant.DeleteMsgsNotification:
+ c.doDeleteMsgs(ctx, v)
+ case v.ContentType == constant.HasReadReceipt:
+ c.doReadDrawing(ctx, v)
+ }
+
+ switch v.SessionType {
+ case constant.SingleChatType:
+ if v.ContentType > constant.FriendNotificationBegin && v.ContentType < constant.FriendNotificationEnd {
+ c.friend.DoNotification(ctx, v)
+ } else if v.ContentType > constant.UserNotificationBegin && v.ContentType < constant.UserNotificationEnd {
+ c.user.DoNotification(ctx, v)
+ } else if datautil.Contain(v.ContentType, constant.GroupApplicationRejectedNotification, constant.GroupApplicationAcceptedNotification, constant.JoinGroupApplicationNotification) {
+ c.group.DoNotification(ctx, v)
+ } else if v.ContentType > constant.SignalingNotificationBegin && v.ContentType < constant.SignalingNotificationEnd {
+
+ continue
+ }
+ case constant.GroupChatType, constant.SuperGroupChatType:
+ if v.ContentType > constant.GroupNotificationBegin && v.ContentType < constant.GroupNotificationEnd {
+ c.group.DoNotification(ctx, v)
+ } else if v.ContentType > constant.SignalingNotificationBegin && v.ContentType < constant.SignalingNotificationEnd {
+ continue
+ }
+ }
+ }
+ }
+
+}
+
+func (c *Conversation) doDeleteConversation(c2v common.Cmd2Value) {
+ node := c2v.Value.(common.DeleteConNode)
+ ctx := c2v.Ctx
+ // Mark messages related to this conversation for deletion
+ err := c.db.UpdateMessageStatusBySourceID(context.Background(), node.SourceID, constant.MsgStatusHasDeleted, int32(node.SessionType))
+ if err != nil {
+ log.ZError(ctx, "setMessageStatusBySourceID", err)
+ return
+ }
+ // Reset the session information, empty session
+ err = c.db.ResetConversation(ctx, node.ConversationID)
+ if err != nil {
+ log.ZError(ctx, "ResetConversation err:", err)
+ }
+ c.doUpdateConversation(common.Cmd2Value{Value: common.UpdateConNode{"", constant.TotalUnreadMessageChanged, ""}})
+}
+
+func (c *Conversation) getConversationLatestMsgClientID(latestMsg string) string {
+ msg := &sdk_struct.MsgStruct{}
+ if err := json.Unmarshal([]byte(latestMsg), msg); err != nil {
+ log.ZError(context.Background(), "getConversationLatestMsgClientID", err, "latestMsg", latestMsg)
+ }
+ return msg.ClientMsgID
+}
+
+func (c *Conversation) doUpdateConversation(c2v common.Cmd2Value) {
+ ctx := c2v.Ctx
+ node := c2v.Value.(common.UpdateConNode)
+ switch node.Action {
+ case constant.AddConOrUpLatMsg:
+ var list []*model_struct.LocalConversation
+ lc := node.Args.(model_struct.LocalConversation)
+ oc, err := c.db.GetConversation(ctx, lc.ConversationID)
+ if err == nil {
+ // log.Info("this is old conversation", *oc)
+ if lc.LatestMsgSendTime >= oc.LatestMsgSendTime || c.getConversationLatestMsgClientID(lc.LatestMsg) == c.getConversationLatestMsgClientID(oc.LatestMsg) { // The session update of asynchronous messages is subject to the latest sending time
+ err := c.db.UpdateColumnsConversation(ctx, node.ConID, map[string]interface{}{"latest_msg_send_time": lc.LatestMsgSendTime, "latest_msg": lc.LatestMsg})
+ if err != nil {
+ log.ZError(ctx, "updateConversationLatestMsgModel", err, "conversationID", node.ConID)
+ } else {
+ oc.LatestMsgSendTime = lc.LatestMsgSendTime
+ oc.LatestMsg = lc.LatestMsg
+ list = append(list, oc)
+ c.ConversationListener().OnConversationChanged(utils.StructToJsonString(list))
+ }
+ }
+ } else {
+ // log.Info("this is new conversation", lc)
+ err4 := c.db.InsertConversation(ctx, &lc)
+ if err4 != nil {
+ // log.Error("internal", "insert new conversation err:", err4.Error())
+ } else {
+ list = append(list, &lc)
+ c.ConversationListener().OnNewConversation(utils.StructToJsonString(list))
+ }
+ }
+
+ case constant.UnreadCountSetZero:
+ if err := c.db.UpdateColumnsConversation(ctx, node.ConID, map[string]interface{}{"unread_count": 0}); err != nil {
+ log.ZError(ctx, "updateConversationUnreadCountModel err", err, "conversationID", node.ConID)
+ } else {
+ totalUnreadCount, err := c.db.GetTotalUnreadMsgCountDB(ctx)
+ if err == nil {
+ c.ConversationListener().OnTotalUnreadMessageCountChanged(totalUnreadCount)
+ } else {
+ log.ZError(ctx, "getTotalUnreadMsgCountDB err", err)
+ }
+
+ }
+ // case ConChange:
+ // err, list := u.getAllConversationListModel()
+ // if err != nil {
+ // sdkLog("getAllConversationListModel database err:", err.Error())
+ // } else {
+ // if list == nil {
+ // u.ConversationListenerx.OnConversationChanged(structToJsonString([]ConversationStruct{}))
+ // } else {
+ // u.ConversationListenerx.OnConversationChanged(structToJsonString(list))
+ //
+ // }
+ // }
+ case constant.IncrUnread:
+ err := c.db.IncrConversationUnreadCount(ctx, node.ConID)
+ if err != nil {
+ // log.Error("internal", "incrConversationUnreadCount database err:", err.Error())
+ return
+ }
+ case constant.TotalUnreadMessageChanged:
+ totalUnreadCount, err := c.db.GetTotalUnreadMsgCountDB(ctx)
+ if err != nil {
+ // log.Error("internal", "TotalUnreadMessageChanged database err:", err.Error())
+ } else {
+ c.ConversationListener().OnTotalUnreadMessageCountChanged(totalUnreadCount)
+ }
+ case constant.UpdateConFaceUrlAndNickName:
+ var lc model_struct.LocalConversation
+ st := node.Args.(common.SourceIDAndSessionType)
+ log.ZInfo(ctx, "UpdateConFaceUrlAndNickName", "st", st)
+ switch st.SessionType {
+ case constant.SingleChatType:
+ lc.UserID = st.SourceID
+ lc.ConversationID = c.getConversationIDBySessionType(st.SourceID, constant.SingleChatType)
+ lc.ConversationType = constant.SingleChatType
+ case constant.SuperGroupChatType:
+ conversationID, conversationType, err := c.getConversationTypeByGroupID(ctx, st.SourceID)
+ if err != nil {
+ return
+ }
+ lc.GroupID = st.SourceID
+ lc.ConversationID = conversationID
+ lc.ConversationType = conversationType
+ case constant.NotificationChatType:
+ lc.UserID = st.SourceID
+ lc.ConversationID = c.getConversationIDBySessionType(st.SourceID, constant.NotificationChatType)
+ lc.ConversationType = constant.NotificationChatType
+ default:
+ log.ZError(ctx, "not support sessionType", nil, "sessionType", st.SessionType)
+ return
+ }
+ lc.ShowName = st.Nickname
+ lc.FaceURL = st.FaceURL
+ err := c.db.UpdateConversation(ctx, &lc)
+ if err != nil {
+ // log.Error("internal", "setConversationFaceUrlAndNickName database err:", err.Error())
+ return
+ }
+ c.doUpdateConversation(common.Cmd2Value{Value: common.UpdateConNode{ConID: lc.ConversationID, Action: constant.ConChange, Args: []string{lc.ConversationID}}})
+
+ case constant.UpdateLatestMessageChange:
+ conversationID := node.ConID
+ var latestMsg sdk_struct.MsgStruct
+ l, err := c.db.GetConversation(ctx, conversationID)
+ if err != nil {
+ log.ZError(ctx, "getConversationLatestMsgModel err", err, "conversationID", conversationID)
+ } else {
+ err := json.Unmarshal([]byte(l.LatestMsg), &latestMsg)
+ if err != nil {
+ log.ZError(ctx, "latestMsg,Unmarshal err", err)
+ } else {
+ latestMsg.IsRead = true
+ newLatestMessage := utils.StructToJsonString(latestMsg)
+ err = c.db.UpdateColumnsConversation(ctx, node.ConID, map[string]interface{}{"latest_msg_send_time": latestMsg.SendTime, "latest_msg": newLatestMessage})
+ if err != nil {
+ log.ZError(ctx, "updateConversationLatestMsgModel err", err)
+ }
+ }
+ }
+ case constant.ConChange:
+ conversationIDs := node.Args.([]string)
+ conversations, err := c.db.GetMultipleConversationDB(ctx, conversationIDs)
+ if err != nil {
+ log.ZError(ctx, "getMultipleConversationModel err", err)
+ } else {
+ var newCList []*model_struct.LocalConversation
+ for _, v := range conversations {
+ if v.LatestMsgSendTime != 0 {
+ newCList = append(newCList, v)
+ }
+ }
+ c.ConversationListener().OnConversationChanged(utils.StructToJsonStringDefault(newCList))
+ }
+ case constant.NewCon:
+ cidList := node.Args.([]string)
+ cLists, err := c.db.GetMultipleConversationDB(ctx, cidList)
+ if err != nil {
+ // log.Error("internal", "getMultipleConversationModel err :", err.Error())
+ } else {
+ if cLists != nil {
+ // log.Info("internal", "getMultipleConversationModel success :", cLists)
+ c.ConversationListener().OnNewConversation(utils.StructToJsonString(cLists))
+ }
+ }
+ case constant.ConChangeDirect:
+ cidList := node.Args.(string)
+ c.ConversationListener().OnConversationChanged(cidList)
+
+ case constant.NewConDirect:
+ cidList := node.Args.(string)
+ // log.Debug("internal", "NewConversation", cidList)
+ c.ConversationListener().OnNewConversation(cidList)
+
+ case constant.ConversationLatestMsgHasRead:
+ hasReadMsgList := node.Args.(map[string][]string)
+ var result []*model_struct.LocalConversation
+ var latestMsg sdk_struct.MsgStruct
+ var lc model_struct.LocalConversation
+ for conversationID, msgIDList := range hasReadMsgList {
+ LocalConversation, err := c.db.GetConversation(ctx, conversationID)
+ if err != nil {
+ // log.Error("internal", "get conversation err", err.Error(), conversationID)
+ continue
+ }
+ err = utils.JsonStringToStruct(LocalConversation.LatestMsg, &latestMsg)
+ if err != nil {
+ // log.Error("internal", "JsonStringToStruct err", err.Error(), conversationID)
+ continue
+ }
+ if utils.IsContain(latestMsg.ClientMsgID, msgIDList) {
+ latestMsg.IsRead = true
+ lc.ConversationID = conversationID
+ lc.LatestMsg = utils.StructToJsonString(latestMsg)
+ LocalConversation.LatestMsg = utils.StructToJsonString(latestMsg)
+ err := c.db.UpdateConversation(ctx, &lc)
+ if err != nil {
+ // log.Error("internal", "UpdateConversation database err:", err.Error())
+ continue
+ } else {
+ result = append(result, LocalConversation)
+ }
+ }
+ }
+ if result != nil {
+ // log.Info("internal", "getMultipleConversationModel success :", result)
+ c.ConversationListener().OnNewConversation(utils.StructToJsonString(result))
+ }
+ case constant.SyncConversation:
+
+ }
+}
+
+func (c *Conversation) doUpdateMessage(c2v common.Cmd2Value) {
+ node := c2v.Value.(common.UpdateMessageNode)
+ ctx := c2v.Ctx
+ switch node.Action {
+ case constant.UpdateMsgFaceUrlAndNickName:
+ args := node.Args.(common.UpdateMessageInfo)
+ switch args.SessionType {
+ case constant.SingleChatType:
+ if args.UserID == c.loginUserID {
+ conversationIDList, err := c.db.GetAllSingleConversationIDList(ctx)
+ if err != nil {
+ log.ZError(ctx, "GetAllSingleConversationIDList err", err)
+ return
+ } else {
+ log.ZDebug(ctx, "get single conversationID list", "conversationIDList", conversationIDList)
+ for _, conversationID := range conversationIDList {
+ err := c.db.UpdateMsgSenderFaceURLAndSenderNickname(ctx, conversationID, args.UserID, args.FaceURL, args.Nickname)
+ if err != nil {
+ log.ZError(ctx, "UpdateMsgSenderFaceURLAndSenderNickname err", err)
+ continue
+ }
+ }
+
+ }
+ } else {
+ conversationID := c.getConversationIDBySessionType(args.UserID, constant.SingleChatType)
+ err := c.db.UpdateMsgSenderFaceURLAndSenderNickname(ctx, conversationID, args.UserID, args.FaceURL, args.Nickname)
+ if err != nil {
+ log.ZError(ctx, "UpdateMsgSenderFaceURLAndSenderNickname err", err)
+ }
+
+ }
+ case constant.SuperGroupChatType:
+ conversationID := c.getConversationIDBySessionType(args.GroupID, constant.SuperGroupChatType)
+ err := c.db.UpdateMsgSenderFaceURLAndSenderNickname(ctx, conversationID, args.UserID, args.FaceURL, args.Nickname)
+ if err != nil {
+ log.ZError(ctx, "UpdateMsgSenderFaceURLAndSenderNickname err", err)
+ }
+ case constant.NotificationChatType:
+ conversationID := c.getConversationIDBySessionType(args.UserID, constant.NotificationChatType)
+ err := c.db.UpdateMsgSenderFaceURLAndSenderNickname(ctx, conversationID, args.UserID, args.FaceURL, args.Nickname)
+ if err != nil {
+ log.ZError(ctx, "UpdateMsgSenderFaceURLAndSenderNickname err", err)
+ }
+ default:
+ log.ZError(ctx, "not support sessionType", nil, "args", args)
+ return
+ }
+ }
+
+}
+
+// funcation (c *Conversation) doSyncReactionExtensions(c2v common.Cmd2Value) {
+// if c.ConversationListener == nil {
+// // log.Error("internal", "not set conversationListener")
+// return
+// }
+// node := c2v.Value.(common.SyncReactionExtensionsNode)
+// ctx := mcontext.NewCtx(node.OperationID)
+// switch node.Action {
+// case constant.SyncMessageListReactionExtensions:
+// args := node.Args.(syncReactionExtensionParams)
+// // log.Error(node.OperationID, "come SyncMessageListReactionExtensions", args)
+// var reqList []server_api_params.OperateMessageListReactionExtensionsReq
+// for _, v := range args.MessageList {
+// var temp server_api_params.OperateMessageListReactionExtensionsReq
+// temp.ClientMsgID = v.ClientMsgID
+// temp.MsgFirstModifyTime = v.MsgFirstModifyTime
+// reqList = append(reqList, temp)
+// }
+// var apiReq server_api_params.GetMessageListReactionExtensionsReq
+// apiReq.SourceID = args.SourceID
+// apiReq.TypeKeyList = args.TypeKeyList
+// apiReq.SessionType = args.SessionType
+// apiReq.MessageReactionKeyList = reqList
+// apiReq.IsExternalExtensions = args.IsExternalExtension
+// apiReq.OperationID = node.OperationID
+// apiResp, err := util.CallApi[server_api_params.GetMessageListReactionExtensionsResp](ctx, constant.GetMessageListReactionExtensionsRouter, &apiReq)
+// if err != nil {
+// // log.NewError(node.OperationID, utils.GetSelfFuncName(), "getMessageListReactionExtensions err:", err.Error())
+// return
+// }
+// // for _, result := range apiResp {
+// // log.Warn(node.OperationID, "api return reslut is:", result.ClientMsgID, result.ReactionExtensionList)
+// // }
+// onLocal := funcation(data []*model_struct.LocalChatLogReactionExtensions) []*server_api_params.SingleMessageExtensionResult {
+// var result []*server_api_params.SingleMessageExtensionResult
+// for _, v := range data {
+// temp := new(server_api_params.SingleMessageExtensionResult)
+// tempMap := make(map[string]*sdkws.KeyValue)
+// _ = json.Unmarshal(v.LocalReactionExtensions, &tempMap)
+// if len(args.TypeKeyList) != 0 {
+// for s, _ := range tempMap {
+// if !utils.IsContain(s, args.TypeKeyList) {
+// delete(tempMap, s)
+// }
+// }
+// }
+//
+// temp.ReactionExtensionList = tempMap
+// temp.ClientMsgID = v.ClientMsgID
+// result = append(result, temp)
+// }
+// return result
+// }(args.ExtendMessageList)
+// var onServer []*server_api_params.SingleMessageExtensionResult
+// for _, v := range *apiResp {
+// if v.ErrCode == 0 {
+// onServer = append(onServer, v)
+// }
+// }
+// aInBNot, _, sameA, _ := common.CheckReactionExtensionsDiff(onServer, onLocal)
+// for _, v := range aInBNot {
+// // log.Error(node.OperationID, "come InsertMessageReactionExtension", args, v.ClientMsgID)
+// if len(v.ReactionExtensionList) > 0 {
+// temp := model_struct.LocalChatLogReactionExtensions{ClientMsgID: v.ClientMsgID, LocalReactionExtensions: []byte(utils.StructToJsonString(v.ReactionExtensionList))}
+// err := c.db.InsertMessageReactionExtension(ctx, &temp)
+// if err != nil {
+// // log.Error(node.OperationID, "InsertMessageReactionExtension err:", err.Error())
+// continue
+// }
+// }
+// var changedKv []*sdkws.KeyValue
+// for _, value := range v.ReactionExtensionList {
+// changedKv = append(changedKv, value)
+// }
+// if len(changedKv) > 0 {
+// c.msgListener.OnRecvMessageExtensionsChanged(v.ClientMsgID, utils.StructToJsonString(changedKv))
+// }
+// }
+// // for _, result := range sameA {
+// // log.ZWarn(ctx, "result", result.ReactionExtensionList, result.ClientMsgID)
+// // }
+// for _, v := range sameA {
+// // log.Error(node.OperationID, "come sameA", v.ClientMsgID, v.ReactionExtensionList)
+// tempMap := make(map[string]*sdkws.KeyValue)
+// for _, extensions := range args.ExtendMessageList {
+// if v.ClientMsgID == extensions.ClientMsgID {
+// _ = json.Unmarshal(extensions.LocalReactionExtensions, &tempMap)
+// break
+// }
+// }
+// if len(v.ReactionExtensionList) == 0 {
+// err := c.db.DeleteMessageReactionExtension(ctx, v.ClientMsgID)
+// if err != nil {
+// // log.Error(node.OperationID, "DeleteMessageReactionExtension err:", err.Error())
+// continue
+// }
+// var deleteKeyList []string
+// for key, _ := range tempMap {
+// deleteKeyList = append(deleteKeyList, key)
+// }
+// if len(deleteKeyList) > 0 {
+// c.msgListener.OnRecvMessageExtensionsDeleted(v.ClientMsgID, utils.StructToJsonString(deleteKeyList))
+// }
+// } else {
+// deleteKeyList, changedKv := funcation(local, server map[string]*sdkws.KeyValue) ([]string, []*sdkws.KeyValue) {
+// var deleteKeyList []string
+// var changedKv []*sdkws.KeyValue
+// for k, v := range local {
+// ia, ok := server[k]
+// if ok {
+// //æåĄå¨ä¸åįkv
+// if ia.Value != v.Value {
+// changedKv = append(changedKv, ia)
+// }
+// } else {
+// //æåĄå¨åˇ˛į쿞Ąækv
+// deleteKeyList = append(deleteKeyList, k)
+// }
+// }
+// //äģæåĄå¨æ°åĸįkv
+// for k, v := range server {
+// _, ok := local[k]
+// if !ok {
+// changedKv = append(changedKv, v)
+//
+// }
+// }
+// return deleteKeyList, changedKv
+// }(tempMap, v.ReactionExtensionList)
+// extendMsg := model_struct.LocalChatLogReactionExtensions{ClientMsgID: v.ClientMsgID, LocalReactionExtensions: []byte(utils.StructToJsonString(v.ReactionExtensionList))}
+// err = c.db.UpdateMessageReactionExtension(ctx, &extendMsg)
+// if err != nil {
+// // log.Error(node.OperationID, "UpdateMessageReactionExtension err:", err.Error())
+// continue
+// }
+// if len(deleteKeyList) > 0 {
+// c.msgListener.OnRecvMessageExtensionsDeleted(v.ClientMsgID, utils.StructToJsonString(deleteKeyList))
+// }
+// if len(changedKv) > 0 {
+// c.msgListener.OnRecvMessageExtensionsChanged(v.ClientMsgID, utils.StructToJsonString(changedKv))
+// }
+// }
+// //err := c.db.GetAndUpdateMessageReactionExtension(v.ClientMsgID, v.ReactionExtensionList)
+// //if err != nil {
+// // log.Error(node.OperationID, "GetAndUpdateMessageReactionExtension err:", err.Error())
+// // continue
+// //}
+// //var changedKv []*server_api_params.KeyValue
+// //for _, value := range v.ReactionExtensionList {
+// // changedKv = append(changedKv, value)
+// //}
+// //if len(changedKv) > 0 {
+// // c.msgListener.OnRecvMessageExtensionsChanged(v.ClientMsgID, utils.StructToJsonString(changedKv))
+// //}
+// }
+// case constant.SyncMessageListTypeKeyInfo:
+// messageList := node.Args.([]*sdk_struct.MsgStruct)
+// var sourceID string
+// var sessionType int32
+// var reqList []server_api_params.OperateMessageListReactionExtensionsReq
+// var temp server_api_params.OperateMessageListReactionExtensionsReq
+// for _, v := range messageList {
+// //todo syncMessage must sync
+// message, err := c.db.GetMessage(ctx, "", v.ClientMsgID)
+// if err != nil {
+// // log.Error(node.OperationID, "GetMessageController err:", err.Error(), *v)
+// continue
+// }
+// temp.ClientMsgID = message.ClientMsgID
+// temp.MsgFirstModifyTime = message.MsgFirstModifyTime
+// reqList = append(reqList, temp)
+// switch message.SessionType {
+// case constant.SingleChatType:
+// sourceID = message.SendID + message.RecvID
+// case constant.NotificationChatType:
+// sourceID = message.RecvID
+// case constant.GroupChatType, constant.SuperGroupChatType:
+// sourceID = message.RecvID
+// }
+// sessionType = message.SessionType
+// }
+// var apiReq server_api_params.GetMessageListReactionExtensionsReq
+// apiReq.SourceID = sourceID
+// apiReq.SessionType = sessionType
+// apiReq.MessageReactionKeyList = reqList
+// apiReq.OperationID = node.OperationID
+// //var apiResp server_api_params.GetMessageListReactionExtensionsResp
+//
+// apiResp, err := util.CallApi[server_api_params.GetMessageListReactionExtensionsResp](ctx, constant.GetMessageListReactionExtensionsRouter, &apiReq)
+// if err != nil {
+// // log.Error(node.OperationID, "GetMessageListReactionExtensions from server err:", err.Error(), apiReq)
+// return
+// }
+// var messageChangedList []*messageKvList
+// for _, v := range *apiResp {
+// if v.ErrCode == 0 {
+// var changedKv []*sdkws.KeyValue
+// var prefixTypeKey []string
+// extendMsg, _ := c.db.GetMessageReactionExtension(ctx, v.ClientMsgID)
+// localKV := make(map[string]*sdkws.KeyValue)
+// _ = json.Unmarshal(extendMsg.LocalReactionExtensions, &localKV)
+// for typeKey, value := range v.ReactionExtensionList {
+// oldValue, ok := localKV[typeKey]
+// if ok {
+// if !cmp.Equal(value, oldValue) {
+// localKV[typeKey] = value
+// prefixTypeKey = append(prefixTypeKey, getPrefixTypeKey(typeKey))
+// changedKv = append(changedKv, value)
+// }
+// } else {
+// localKV[typeKey] = value
+// prefixTypeKey = append(prefixTypeKey, getPrefixTypeKey(typeKey))
+// changedKv = append(changedKv, value)
+//
+// }
+//
+// }
+// extendMsg.LocalReactionExtensions = []byte(utils.StructToJsonString(localKV))
+// _ = c.db.UpdateMessageReactionExtension(ctx, extendMsg)
+// if len(changedKv) > 0 {
+// c.msgListener.OnRecvMessageExtensionsChanged(extendMsg.ClientMsgID, utils.StructToJsonString(changedKv))
+// }
+// prefixTypeKey = utils.RemoveRepeatedStringInList(prefixTypeKey)
+// if len(prefixTypeKey) > 0 && c.msgKvListener != nil {
+// var result []*sdk.SingleTypeKeyInfoSum
+// oneMessageChanged := new(messageKvList)
+// oneMessageChanged.ClientMsgID = extendMsg.ClientMsgID
+// for _, v := range prefixTypeKey {
+// singleResult := new(sdk.SingleTypeKeyInfoSum)
+// singleResult.TypeKey = v
+// for typeKey, value := range localKV {
+// if strings.HasPrefix(typeKey, v) {
+// singleTypeKeyInfo := new(sdk.SingleTypeKeyInfo)
+// err := json.Unmarshal([]byte(value.Value), singleTypeKeyInfo)
+// if err != nil {
+// continue
+// }
+// if _, ok := singleTypeKeyInfo.InfoList[c.loginUserID]; ok {
+// singleResult.IsContainSelf = true
+// }
+// for _, info := range singleTypeKeyInfo.InfoList {
+// v := *info
+// singleResult.InfoList = append(singleResult.InfoList, &v)
+// }
+// singleResult.Counter += singleTypeKeyInfo.Counter
+// }
+// }
+// result = append(result, singleResult)
+// }
+// oneMessageChanged.ChangedKvList = result
+// messageChangedList = append(messageChangedList, oneMessageChanged)
+// }
+// }
+// }
+// if len(messageChangedList) > 0 && c.msgKvListener != nil {
+// c.msgKvListener.OnMessageKvInfoChanged(utils.StructToJsonString(messageChangedList))
+// }
+//
+// }
+//
+// }
+
+func (c *Conversation) DoConversationChangedNotification(ctx context.Context, msg *sdkws.MsgData) {
+ //var notification sdkws.ConversationChangedNotification
+ tips := &sdkws.ConversationUpdateTips{}
+ if err := utils.UnmarshalNotificationElem(msg.Content, tips); err != nil {
+ log.ZError(ctx, "UnmarshalNotificationElem err", err, "msg", msg)
+ return
+ }
+
+ c.SyncConversations(ctx, tips.ConversationIDList)
+
+}
+
+func (c *Conversation) DoConversationIsPrivateChangedNotification(ctx context.Context, msg *sdkws.MsgData) {
+ tips := &sdkws.ConversationSetPrivateTips{}
+ if err := utils.UnmarshalNotificationElem(msg.Content, tips); err != nil {
+ log.ZError(ctx, "UnmarshalNotificationElem err", err, "msg", msg)
+ return
+ }
+
+ c.SyncConversations(ctx, []string{tips.ConversationID})
+
+}
diff --git a/go/chao-sdk-core/internal/conversation_msg/convert.go b/go/chao-sdk-core/internal/conversation_msg/convert.go
new file mode 100644
index 0000000..78180d4
--- /dev/null
+++ b/go/chao-sdk-core/internal/conversation_msg/convert.go
@@ -0,0 +1,57 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package conversation_msg
+
+import (
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+
+ pbConversation "github.com/openimsdk/protocol/conversation"
+)
+
+func ServerConversationToLocal(conversation *pbConversation.Conversation) *model_struct.LocalConversation {
+ return &model_struct.LocalConversation{
+ ConversationID: conversation.ConversationID,
+ ConversationType: conversation.ConversationType,
+ UserID: conversation.UserID,
+ GroupID: conversation.GroupID,
+ RecvMsgOpt: conversation.RecvMsgOpt,
+ GroupAtType: conversation.GroupAtType,
+ IsPinned: conversation.IsPinned,
+ BurnDuration: conversation.BurnDuration,
+ IsPrivateChat: conversation.IsPrivateChat,
+ AttachedInfo: conversation.AttachedInfo,
+ Ex: conversation.Ex,
+ MsgDestructTime: conversation.MsgDestructTime,
+ IsMsgDestruct: conversation.IsMsgDestruct,
+ }
+}
+
+func LocalConversationToServer(conversation *model_struct.LocalConversation) *pbConversation.Conversation {
+ return &pbConversation.Conversation{
+ ConversationID: conversation.ConversationID,
+ ConversationType: conversation.ConversationType,
+ UserID: conversation.UserID,
+ GroupID: conversation.GroupID,
+ RecvMsgOpt: conversation.RecvMsgOpt,
+ GroupAtType: conversation.GroupAtType,
+ IsPinned: conversation.IsPinned,
+ BurnDuration: conversation.BurnDuration,
+ IsPrivateChat: conversation.IsPrivateChat,
+ AttachedInfo: conversation.AttachedInfo,
+ MsgDestructTime: conversation.MsgDestructTime,
+ Ex: conversation.Ex,
+ IsMsgDestruct: conversation.IsMsgDestruct,
+ }
+}
diff --git a/go/chao-sdk-core/internal/conversation_msg/create_message.go b/go/chao-sdk-core/internal/conversation_msg/create_message.go
new file mode 100644
index 0000000..ace457b
--- /dev/null
+++ b/go/chao-sdk-core/internal/conversation_msg/create_message.go
@@ -0,0 +1,492 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package conversation_msg
+
+import (
+ "context"
+ "errors"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/tools/log"
+
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/sdkerrs"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/sdk_struct"
+ "os"
+ "path/filepath"
+ "strings"
+)
+
+func (c *Conversation) CreateTextMessage(ctx context.Context, text string) (*sdk_struct.MsgStruct, error) {
+ s := sdk_struct.MsgStruct{}
+ err := c.initBasicInfo(ctx, &s, constant.UserMsgType, constant.Text)
+ if err != nil {
+ return nil, err
+ }
+ s.TextElem = &sdk_struct.TextElem{Content: text}
+ return &s, nil
+}
+func (c *Conversation) CreateAdvancedTextMessage(ctx context.Context, text string, messageEntities []*sdk_struct.MessageEntity) (*sdk_struct.MsgStruct, error) {
+ s := sdk_struct.MsgStruct{}
+ err := c.initBasicInfo(ctx, &s, constant.UserMsgType, constant.AdvancedText)
+ if err != nil {
+ return nil, err
+ }
+ s.AdvancedTextElem = &sdk_struct.AdvancedTextElem{
+ Text: text,
+ MessageEntityList: messageEntities,
+ }
+ return &s, nil
+}
+
+func (c *Conversation) CreateTextAtMessage(ctx context.Context, text string, userIDList []string, usersInfo []*sdk_struct.AtInfo, qs *sdk_struct.MsgStruct) (*sdk_struct.MsgStruct, error) {
+ if text == "" {
+ return nil, errors.New("text can not be empty")
+ }
+ if len(userIDList) > 10 {
+ return nil, sdkerrs.ErrArgs
+ }
+ s := sdk_struct.MsgStruct{}
+ err := c.initBasicInfo(ctx, &s, constant.UserMsgType, constant.AtText)
+ if err != nil {
+ return nil, err
+ }
+ //Avoid nested references
+ if qs != nil {
+ if qs.ContentType == constant.Quote {
+ qs.ContentType = constant.Text
+ qs.TextElem = &sdk_struct.TextElem{Content: qs.QuoteElem.Text}
+ }
+ }
+ s.AtTextElem = &sdk_struct.AtTextElem{
+ Text: text,
+ AtUserList: userIDList,
+ AtUsersInfo: usersInfo,
+ QuoteMessage: qs,
+ }
+ return &s, nil
+}
+func (c *Conversation) CreateLocationMessage(ctx context.Context, description string, longitude, latitude float64) (*sdk_struct.MsgStruct, error) {
+ s := sdk_struct.MsgStruct{}
+ err := c.initBasicInfo(ctx, &s, constant.UserMsgType, constant.Location)
+ if err != nil {
+ return nil, err
+ }
+ s.LocationElem = &sdk_struct.LocationElem{
+ Description: description,
+ Longitude: longitude,
+ Latitude: latitude,
+ }
+ return &s, nil
+}
+
+func (c *Conversation) CreateCustomMessage(ctx context.Context, data, extension string, description string) (*sdk_struct.MsgStruct, error) {
+ s := sdk_struct.MsgStruct{}
+ err := c.initBasicInfo(ctx, &s, constant.UserMsgType, constant.Custom)
+ if err != nil {
+ return nil, err
+ }
+ s.CustomElem = &sdk_struct.CustomElem{
+ Data: data,
+ Extension: extension,
+ Description: description,
+ }
+ return &s, nil
+
+}
+func (c *Conversation) CreateQuoteMessage(ctx context.Context, text string, qs *sdk_struct.MsgStruct) (*sdk_struct.MsgStruct, error) {
+ s := sdk_struct.MsgStruct{}
+ err := c.initBasicInfo(ctx, &s, constant.UserMsgType, constant.Quote)
+ if err != nil {
+ return nil, err
+ }
+ //Avoid nested references
+ if qs.ContentType == constant.Quote {
+ qs.ContentType = constant.Text
+ qs.TextElem = &sdk_struct.TextElem{Content: qs.QuoteElem.Text}
+ }
+ s.QuoteElem = &sdk_struct.QuoteElem{
+ Text: text,
+ QuoteMessage: qs,
+ }
+ return &s, nil
+
+}
+func (c *Conversation) CreateAdvancedQuoteMessage(ctx context.Context, text string, qs *sdk_struct.MsgStruct, messageEntities []*sdk_struct.MessageEntity) (*sdk_struct.MsgStruct, error) {
+ s := sdk_struct.MsgStruct{}
+ err := c.initBasicInfo(ctx, &s, constant.UserMsgType, constant.Quote)
+ if err != nil {
+ return nil, err
+ }
+ //Avoid nested references
+ if qs.ContentType == constant.Quote {
+ //qs.Content = qs.QuoteElem.Text
+ qs.ContentType = constant.Text
+ qs.TextElem = &sdk_struct.TextElem{Content: qs.QuoteElem.Text}
+ }
+ s.QuoteElem = &sdk_struct.QuoteElem{
+ Text: text,
+ QuoteMessage: qs,
+ MessageEntityList: messageEntities,
+ }
+ return &s, nil
+}
+
+func (c *Conversation) CreateCardMessage(ctx context.Context, card *sdk_struct.CardElem) (*sdk_struct.MsgStruct,
+ error) {
+ s := sdk_struct.MsgStruct{}
+ err := c.initBasicInfo(ctx, &s, constant.UserMsgType, constant.Card)
+ if err != nil {
+ return nil, err
+ }
+ s.CardElem = card
+ return &s, nil
+}
+
+func (c *Conversation) CreateVideoMessageFromFullPath(ctx context.Context, videoFullPath string, videoType string,
+ duration int64, snapshotFullPath string) (*sdk_struct.MsgStruct, error) {
+ dstFile := utils.FileTmpPath(videoFullPath, c.DataDir) //a->b
+ written, err := utils.CopyFile(videoFullPath, dstFile)
+ if err != nil {
+ //log.Error("internal", "open file failed: ", err, videoFullPath)
+ return nil, err
+ }
+ log.ZDebug(ctx, "videoFullPath dstFile", "videoFullPath", videoFullPath,
+ "dstFile", dstFile, "written", written)
+
+ dstFile = utils.FileTmpPath(snapshotFullPath, c.DataDir) //a->b
+ sWritten, err := utils.CopyFile(snapshotFullPath, dstFile)
+ if err != nil {
+ //log.Error("internal", "open file failed: ", err, snapshotFullPath)
+ return nil, err
+ }
+ log.ZDebug(ctx, "snapshotFullPath dstFile", "snapshotFullPath", snapshotFullPath,
+ "dstFile", dstFile, "sWritten", sWritten)
+
+ s := sdk_struct.MsgStruct{}
+ err = c.initBasicInfo(ctx, &s, constant.UserMsgType, constant.Video)
+ if err != nil {
+ return nil, err
+ }
+ s.VideoElem = &sdk_struct.VideoElem{
+ VideoPath: videoFullPath,
+ VideoType: videoType,
+ Duration: duration,
+ }
+ if snapshotFullPath == "" {
+ s.VideoElem.SnapshotPath = ""
+ } else {
+ s.VideoElem.SnapshotPath = snapshotFullPath
+ }
+ fi, err := os.Stat(s.VideoElem.VideoPath)
+ if err != nil {
+ //log.Error("internal", "get file Attributes error", err.Error())
+ return nil, err
+ }
+ s.VideoElem.VideoSize = fi.Size()
+ if snapshotFullPath != "" {
+ imageInfo, err := getImageInfo(s.VideoElem.SnapshotPath)
+ if err != nil {
+ log.ZError(ctx, "getImageInfo err:", err, "snapshotFullPath", snapshotFullPath)
+ return nil, err
+ }
+ s.VideoElem.SnapshotHeight = imageInfo.Height
+ s.VideoElem.SnapshotWidth = imageInfo.Width
+ s.VideoElem.SnapshotSize = imageInfo.Size
+ }
+ return &s, nil
+
+}
+func (c *Conversation) CreateFileMessageFromFullPath(ctx context.Context, fileFullPath string, fileName string) (*sdk_struct.MsgStruct, error) {
+ dstFile := utils.FileTmpPath(fileFullPath, c.DataDir)
+ _, err := utils.CopyFile(fileFullPath, dstFile)
+ if err != nil {
+ //log.Error("internal", "open file failed: ", err.Error(), fileFullPath)
+ return nil, err
+
+ }
+ s := sdk_struct.MsgStruct{}
+ err = c.initBasicInfo(ctx, &s, constant.UserMsgType, constant.File)
+ if err != nil {
+ return nil, err
+ }
+ fi, err := os.Stat(fileFullPath)
+ if err != nil {
+ //log.Error("internal", "get file Attributes error", err.Error())
+ return nil, err
+ }
+ s.FileElem = &sdk_struct.FileElem{
+ FilePath: fileFullPath,
+ FileName: fileName,
+ FileSize: fi.Size(),
+ }
+ return &s, nil
+}
+func (c *Conversation) CreateImageMessageFromFullPath(ctx context.Context, imageFullPath string) (*sdk_struct.MsgStruct, error) {
+ dstFile := utils.FileTmpPath(imageFullPath, c.DataDir) //a->b
+ _, err := utils.CopyFile(imageFullPath, dstFile)
+ if err != nil {
+ //log.Error(operationID, "open file failed: ", err, imageFullPath)
+ return nil, err
+ }
+ s := sdk_struct.MsgStruct{}
+ err = c.initBasicInfo(ctx, &s, constant.UserMsgType, constant.Picture)
+ if err != nil {
+ return nil, err
+ }
+ imageInfo, err := getImageInfo(imageFullPath)
+ if err != nil {
+ //log.Error(operationID, "getImageInfo err:", err.Error())
+ return nil, err
+ }
+ s.PictureElem = &sdk_struct.PictureElem{
+ SourcePath: imageFullPath,
+ SourcePicture: &sdk_struct.PictureBaseInfo{
+ Width: imageInfo.Width,
+ Height: imageInfo.Height,
+ Type: imageInfo.Type,
+ },
+ }
+ return &s, nil
+}
+func (c *Conversation) CreateSoundMessageFromFullPath(ctx context.Context, soundPath string, duration int64) (*sdk_struct.MsgStruct, error) {
+ dstFile := utils.FileTmpPath(soundPath, c.DataDir) //a->b
+ _, err := utils.CopyFile(soundPath, dstFile)
+ if err != nil {
+ //log.Error("internal", "open file failed: ", err, soundPath)
+ return nil, err
+ }
+
+ s := sdk_struct.MsgStruct{}
+ err = c.initBasicInfo(ctx, &s, constant.UserMsgType, constant.Sound)
+ if err != nil {
+ return nil, err
+ }
+ fi, err := os.Stat(soundPath)
+ if err != nil {
+ //log.Error("internal", "getSoundInfo err:", err.Error(), s.SoundElem.SoundPath)
+ return nil, err
+ }
+ s.SoundElem = &sdk_struct.SoundElem{
+ SoundPath: soundPath,
+ Duration: duration,
+ DataSize: fi.Size(),
+ SoundType: strings.Replace(filepath.Ext(fi.Name()), ".", "", 1),
+ }
+ return &s, nil
+}
+func (c *Conversation) CreateImageMessage(ctx context.Context, imagePath string) (*sdk_struct.MsgStruct, error) {
+ s := sdk_struct.MsgStruct{}
+ err := c.initBasicInfo(ctx, &s, constant.UserMsgType, constant.Picture)
+ if err != nil {
+ return nil, err
+ }
+ path := c.DataDir + imagePath
+ //path := imagePath
+ imageInfo, err := getImageInfo(path)
+ if err != nil {
+ //log.Error("internal", "get imageInfo err", err.Error())
+ return nil, err
+ }
+ s.PictureElem = &sdk_struct.PictureElem{
+ SourcePath: path,
+ SourcePicture: &sdk_struct.PictureBaseInfo{
+ Width: imageInfo.Width,
+ Height: imageInfo.Height,
+ Type: imageInfo.Type,
+ },
+ }
+ return &s, nil
+
+}
+func (c *Conversation) CreateImageMessageByURL(ctx context.Context, sourcePath string, sourcePicture, bigPicture, snapshotPicture sdk_struct.PictureBaseInfo) (*sdk_struct.MsgStruct, error) {
+ s := sdk_struct.MsgStruct{}
+ err := c.initBasicInfo(ctx, &s, constant.UserMsgType, constant.Picture)
+ if err != nil {
+ return nil, err
+ }
+ s.PictureElem = &sdk_struct.PictureElem{
+ SourcePath: sourcePath,
+ SourcePicture: &sourcePicture,
+ BigPicture: &bigPicture,
+ SnapshotPicture: &snapshotPicture,
+ }
+ return &s, nil
+}
+func (c *Conversation) CreateSoundMessageByURL(ctx context.Context, soundElem *sdk_struct.SoundBaseInfo) (*sdk_struct.MsgStruct, error) {
+ s := sdk_struct.MsgStruct{}
+ err := c.initBasicInfo(ctx, &s, constant.UserMsgType, constant.Sound)
+ if err != nil {
+ return nil, err
+ }
+ s.SoundElem = &sdk_struct.SoundElem{
+ UUID: soundElem.UUID,
+ SoundPath: soundElem.SoundPath,
+ SourceURL: soundElem.SourceURL,
+ DataSize: soundElem.DataSize,
+ Duration: soundElem.Duration,
+ SoundType: soundElem.SoundType,
+ }
+ return &s, nil
+}
+func (c *Conversation) CreateSoundMessage(ctx context.Context, soundPath string, duration int64) (*sdk_struct.MsgStruct, error) {
+ s := sdk_struct.MsgStruct{}
+ err := c.initBasicInfo(ctx, &s, constant.UserMsgType, constant.Sound)
+ if err != nil {
+ return nil, err
+ }
+ path := c.DataDir + soundPath
+ fi, err := os.Stat(path)
+ if err != nil {
+ //log.Error("internal", "get sound info err", err.Error())
+ return nil, err
+ }
+ s.SoundElem = &sdk_struct.SoundElem{
+ SoundPath: path,
+ Duration: duration,
+ DataSize: fi.Size(),
+ }
+ if typ := strings.Replace(filepath.Ext(fi.Name()), ".", "", 1); typ != "" {
+ s.SoundElem.SoundType = "audio/" + strings.ToLower(typ)
+ }
+ return &s, nil
+}
+func (c *Conversation) CreateVideoMessageByURL(ctx context.Context, videoElem sdk_struct.VideoBaseInfo) (*sdk_struct.MsgStruct, error) {
+ s := sdk_struct.MsgStruct{}
+ err := c.initBasicInfo(ctx, &s, constant.UserMsgType, constant.Video)
+ if err != nil {
+ return nil, err
+ }
+ s.VideoElem = &sdk_struct.VideoElem{
+ VideoPath: videoElem.VideoPath,
+ VideoUUID: videoElem.VideoUUID,
+ VideoURL: videoElem.VideoURL,
+ VideoType: videoElem.VideoType,
+ VideoSize: videoElem.VideoSize,
+ Duration: videoElem.Duration,
+ SnapshotPath: videoElem.SnapshotPath,
+ SnapshotUUID: videoElem.SnapshotUUID,
+ SnapshotSize: videoElem.SnapshotSize,
+ SnapshotURL: videoElem.SnapshotURL,
+ SnapshotWidth: videoElem.SnapshotWidth,
+ SnapshotHeight: videoElem.SnapshotHeight,
+ SnapshotType: videoElem.SnapshotType,
+ }
+ return &s, nil
+}
+func (c *Conversation) CreateVideoMessage(ctx context.Context, videoPath string, videoType string, duration int64, snapshotPath string) (*sdk_struct.MsgStruct, error) {
+ s := sdk_struct.MsgStruct{}
+ err := c.initBasicInfo(ctx, &s, constant.UserMsgType, constant.Video)
+ if err != nil {
+ return nil, err
+ }
+ s.VideoElem = &sdk_struct.VideoElem{}
+ s.VideoElem.VideoPath = c.DataDir + videoPath
+ s.VideoElem.VideoType = videoType
+ s.VideoElem.Duration = duration
+ if snapshotPath == "" {
+ s.VideoElem.SnapshotPath = ""
+ } else {
+ s.VideoElem.SnapshotPath = c.DataDir + snapshotPath
+ }
+ fi, err := os.Stat(s.VideoElem.VideoPath)
+ if err != nil {
+ log.ZDebug(ctx, "get video file error", "videoPath", videoPath, "snapshotPath", snapshotPath)
+ return nil, err
+ }
+ s.VideoElem.VideoSize = fi.Size()
+ if snapshotPath != "" {
+ imageInfo, err := getImageInfo(s.VideoElem.SnapshotPath)
+ if err != nil {
+ //log.Error("internal", "get snapshot info ", err.Error())
+ return nil, err
+ }
+ s.VideoElem.SnapshotHeight = imageInfo.Height
+ s.VideoElem.SnapshotWidth = imageInfo.Width
+ s.VideoElem.SnapshotSize = imageInfo.Size
+ }
+ return &s, nil
+}
+func (c *Conversation) CreateFileMessageByURL(ctx context.Context, fileElem sdk_struct.FileBaseInfo) (*sdk_struct.MsgStruct, error) {
+ s := sdk_struct.MsgStruct{}
+ err := c.initBasicInfo(ctx, &s, constant.UserMsgType, constant.File)
+ if err != nil {
+ return nil, err
+ }
+ s.FileElem = &sdk_struct.FileElem{
+ FilePath: fileElem.FilePath,
+ UUID: fileElem.UUID,
+ SourceURL: fileElem.SourceURL,
+ FileName: fileElem.FileName,
+ FileSize: fileElem.FileSize,
+ FileType: fileElem.FileType,
+ }
+ return &s, nil
+}
+func (c *Conversation) CreateFileMessage(ctx context.Context, filePath string, fileName string) (*sdk_struct.MsgStruct, error) {
+ s := sdk_struct.MsgStruct{FileElem: &sdk_struct.FileElem{}}
+ err := c.initBasicInfo(ctx, &s, constant.UserMsgType, constant.File)
+ if err != nil {
+ return nil, err
+ }
+ s.FileElem.FilePath = c.DataDir + filePath
+ s.FileElem.FileName = fileName
+ fi, err := os.Stat(s.FileElem.FilePath)
+ if err != nil {
+ //log.Error("internal", "get file message err", err.Error())
+ return nil, err
+ }
+ s.FileElem.FileSize = fi.Size()
+ s.Content = utils.StructToJsonString(s.FileElem)
+ return &s, nil
+}
+func (c *Conversation) CreateMergerMessage(ctx context.Context, messages []*sdk_struct.MsgStruct, title string, summaries []string) (*sdk_struct.MsgStruct, error) {
+ s := sdk_struct.MsgStruct{MergeElem: &sdk_struct.MergeElem{}}
+ err := c.initBasicInfo(ctx, &s, constant.UserMsgType, constant.Merger)
+ if err != nil {
+ return nil, err
+ }
+ s.MergeElem.AbstractList = summaries
+ s.MergeElem.Title = title
+ s.MergeElem.MultiMessage = messages
+ s.Content = utils.StructToJsonString(s.MergeElem)
+ return &s, nil
+}
+func (c *Conversation) CreateFaceMessage(ctx context.Context, index int, data string) (*sdk_struct.MsgStruct, error) {
+ s := sdk_struct.MsgStruct{FaceElem: &sdk_struct.FaceElem{}}
+ err := c.initBasicInfo(ctx, &s, constant.UserMsgType, constant.Face)
+ if err != nil {
+ return nil, err
+ }
+ s.FaceElem.Data = data
+ s.FaceElem.Index = index
+ s.Content = utils.StructToJsonString(s.FaceElem)
+ return &s, nil
+}
+
+func (c *Conversation) CreateForwardMessage(ctx context.Context, s *sdk_struct.MsgStruct) (*sdk_struct.MsgStruct, error) {
+ if s.Status != constant.MsgStatusSendSuccess {
+ log.ZError(ctx, "only send success message can be Forward",
+ errors.New("only send success message can be Forward"))
+ return nil, errors.New("only send success message can be Forward")
+ }
+ err := c.initBasicInfo(ctx, s, constant.UserMsgType, s.ContentType)
+ if err != nil {
+ return nil, err
+ }
+ //Forward message seq is set to 0
+ s.Seq = 0
+ s.Status = constant.MsgStatusSendSuccess
+ return s, nil
+}
diff --git a/go/chao-sdk-core/internal/conversation_msg/delete.go b/go/chao-sdk-core/internal/conversation_msg/delete.go
new file mode 100644
index 0000000..8cfa3e2
--- /dev/null
+++ b/go/chao-sdk-core/internal/conversation_msg/delete.go
@@ -0,0 +1,245 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package conversation_msg
+
+import (
+ "context"
+ "github.com/openimsdk/openim-sdk-core/v3/internal/util"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/common"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/sdkerrs"
+
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/sdk_struct"
+
+ "github.com/jinzhu/copier"
+ pbMsg "github.com/openimsdk/protocol/msg"
+ "github.com/openimsdk/protocol/sdkws"
+ "github.com/openimsdk/tools/log"
+)
+
+// Delete the local and server
+// Delete the local, do not change the server data
+// To delete the server, you need to change the local message status to delete
+func (c *Conversation) clearConversationFromLocalAndSvr(ctx context.Context, conversationID string, f func(ctx context.Context, conversationID string) error) error {
+ _, err := c.db.GetConversation(ctx, conversationID)
+ if err != nil {
+ return err
+ }
+ // Use conversationID to remove conversations and messages from the server first
+ err = c.clearConversationMsgFromSvr(ctx, conversationID)
+ if err != nil {
+ return err
+ }
+ if err := c.clearConversationAndDeleteAllMsg(ctx, conversationID, false, f); err != nil {
+ return err
+ }
+ c.doUpdateConversation(common.Cmd2Value{Value: common.UpdateConNode{Action: constant.ConChange, Args: []string{conversationID}}})
+ c.doUpdateConversation(common.Cmd2Value{Value: common.UpdateConNode{Action: constant.TotalUnreadMessageChanged}})
+ return nil
+}
+
+func (c *Conversation) clearConversationAndDeleteAllMsg(ctx context.Context, conversationID string, markDelete bool, f func(ctx context.Context, conversationID string) error) error {
+ err := c.getConversationMaxSeqAndSetHasRead(ctx, conversationID)
+ if err != nil {
+ return err
+ }
+ if markDelete {
+ err = c.db.MarkDeleteConversationAllMessages(ctx, conversationID)
+ } else {
+ err = c.db.DeleteConversationAllMessages(ctx, conversationID)
+ }
+ if err != nil {
+ return err
+ }
+ log.ZDebug(ctx, "reset conversation", "conversationID", conversationID)
+ err = f(ctx, conversationID)
+ if err != nil {
+ return err
+ }
+ return nil
+}
+
+// To delete session information, delete the server first, and then invoke the interface.
+// The client receives a callback to delete all local information.
+func (c *Conversation) clearConversationMsgFromSvr(ctx context.Context, conversationID string) error {
+ var apiReq pbMsg.ClearConversationsMsgReq
+ apiReq.UserID = c.loginUserID
+ apiReq.ConversationIDs = []string{conversationID}
+ return util.ApiPost(ctx, constant.ClearConversationMsgRouter, &apiReq, nil)
+}
+
+// Delete all messages
+func (c *Conversation) deleteAllMsgFromLocalAndSvr(ctx context.Context) error {
+ // Delete the server first (high error rate), then delete it.
+ err := c.deleteAllMessageFromSvr(ctx)
+ if err != nil {
+ return err
+ }
+ err = c.deleteAllMsgFromLocal(ctx, false)
+ if err != nil {
+ return err
+ }
+ c.doUpdateConversation(common.Cmd2Value{Value: common.UpdateConNode{Action: constant.TotalUnreadMessageChanged}})
+ return nil
+}
+
+// Delete all server messages
+func (c *Conversation) deleteAllMessageFromSvr(ctx context.Context) error {
+ var apiReq pbMsg.UserClearAllMsgReq
+ apiReq.UserID = c.loginUserID
+ err := util.ApiPost(ctx, constant.ClearAllMsgRouter, &apiReq, nil)
+ if err != nil {
+ return err
+ }
+ return nil
+}
+
+// Delete all messages from the local
+func (c *Conversation) deleteAllMsgFromLocal(ctx context.Context, markDelete bool) error {
+ conversations, err := c.db.GetAllConversationListDB(ctx)
+ if err != nil {
+ return err
+ }
+ var successCids []string
+ log.ZDebug(ctx, "deleteAllMsgFromLocal", "conversations", conversations, "markDelete", markDelete)
+ for _, v := range conversations {
+ if err := c.clearConversationAndDeleteAllMsg(ctx, v.ConversationID, markDelete, c.db.ClearConversation); err != nil {
+ log.ZError(ctx, "clearConversation err", err, "conversationID", v.ConversationID)
+ continue
+ }
+ successCids = append(successCids, v.ConversationID)
+ }
+ c.doUpdateConversation(common.Cmd2Value{Value: common.UpdateConNode{Action: constant.ConChange, Args: successCids}})
+ c.doUpdateConversation(common.Cmd2Value{Value: common.UpdateConNode{Action: constant.TotalUnreadMessageChanged}})
+ return nil
+
+}
+
+// Delete a message from the local
+func (c *Conversation) deleteMessage(ctx context.Context, conversationID string, clientMsgID string) error {
+ if err := c.deleteMessageFromSvr(ctx, conversationID, clientMsgID); err != nil {
+ return err
+ }
+ return c.deleteMessageFromLocal(ctx, conversationID, clientMsgID)
+}
+
+// The user deletes part of the message from the server
+func (c *Conversation) deleteMessageFromSvr(ctx context.Context, conversationID string, clientMsgID string) error {
+ _, err := c.db.GetMessage(ctx, conversationID, clientMsgID)
+ if err != nil {
+ return err
+ }
+ localMessage, err := c.db.GetMessage(ctx, conversationID, clientMsgID)
+ if err != nil {
+ return err
+ }
+ if localMessage.Status == constant.MsgStatusSendFailed {
+ log.ZInfo(ctx, "delete msg status is send failed, do not need delete", "msg", localMessage)
+ return nil
+ }
+ if localMessage.Seq == 0 {
+ log.ZInfo(ctx, "delete msg seq is 0, try again", "msg", localMessage)
+ return sdkerrs.ErrMsgHasNoSeq
+ }
+ var apiReq pbMsg.DeleteMsgsReq
+ apiReq.UserID = c.loginUserID
+ apiReq.Seqs = []int64{localMessage.Seq}
+ apiReq.ConversationID = conversationID
+ return util.ApiPost(ctx, constant.DeleteMsgsRouter, &apiReq, nil)
+}
+
+// Delete messages from local
+func (c *Conversation) deleteMessageFromLocal(ctx context.Context, conversationID string, clientMsgID string) error {
+ s, err := c.db.GetMessage(ctx, conversationID, clientMsgID)
+ if err != nil {
+ return err
+ }
+ if err := c.db.DeleteConversationMsgs(ctx, conversationID, []string{clientMsgID}); err != nil {
+ return err
+ }
+ if !s.IsRead && s.SendID != c.loginUserID {
+ if err := c.db.DecrConversationUnreadCount(ctx, conversationID, 1); err != nil {
+ return err
+ }
+ c.doUpdateConversation(common.Cmd2Value{Value: common.UpdateConNode{ConID: conversationID, Action: constant.ConChange, Args: []string{conversationID}}})
+ c.doUpdateConversation(common.Cmd2Value{Value: common.UpdateConNode{Action: constant.TotalUnreadMessageChanged}})
+ }
+ conversation, err := c.db.GetConversation(ctx, conversationID)
+ if err != nil {
+ return err
+ }
+ var latestMsg sdk_struct.MsgStruct
+ utils.JsonStringToStruct(conversation.LatestMsg, &latestMsg)
+ if latestMsg.ClientMsgID == clientMsgID {
+ log.ZDebug(ctx, "latesetMsg deleted", "seq", latestMsg.Seq, "clientMsgID", latestMsg.ClientMsgID)
+ msgs, err := c.db.GetMessageListNoTime(ctx, conversationID, 1, false)
+ if err != nil {
+ return err
+ }
+ latestMsgSendTime := latestMsg.SendTime
+ latestMsgStr := ""
+ if len(msgs) > 0 {
+ copier.Copy(&latestMsg, msgs[0])
+ err := c.msgConvert(&latestMsg)
+ if err != nil {
+ log.ZError(ctx, "parsing data error", err, latestMsg)
+ }
+ latestMsgStr = utils.StructToJsonString(latestMsg)
+ latestMsgSendTime = latestMsg.SendTime
+ }
+ if err := c.db.UpdateColumnsConversation(ctx, conversationID, map[string]interface{}{"latest_msg": latestMsgStr, "latest_msg_send_time": latestMsgSendTime}); err != nil {
+ return err
+ }
+ c.doUpdateConversation(common.Cmd2Value{Value: common.UpdateConNode{Action: constant.ConChange, Args: []string{conversationID}}})
+ }
+ c.msgListener().OnMsgDeleted(utils.StructToJsonString(s))
+ return nil
+}
+
+func (c *Conversation) doDeleteMsgs(ctx context.Context, msg *sdkws.MsgData) {
+ tips := sdkws.DeleteMsgsTips{}
+ utils.UnmarshalNotificationElem(msg.Content, &tips)
+ log.ZDebug(ctx, "doDeleteMsgs", "seqs", tips.Seqs)
+ for _, v := range tips.Seqs {
+ msg, err := c.db.GetMessageBySeq(ctx, tips.ConversationID, v)
+ if err != nil {
+ log.ZError(ctx, "GetMessageBySeq err", err, "conversationID", tips.ConversationID, "seq", v)
+ continue
+ }
+ var s sdk_struct.MsgStruct
+ copier.Copy(&s, msg)
+ err = c.msgConvert(&s)
+ if err != nil {
+ log.ZError(ctx, "parsing data error", err, "msg", msg)
+ }
+ if err := c.deleteMessageFromLocal(ctx, tips.ConversationID, msg.ClientMsgID); err != nil {
+ log.ZError(ctx, "deleteMessageFromLocal err", err, "conversationID", tips.ConversationID, "seq", v)
+ }
+ }
+}
+
+func (c *Conversation) doClearConversations(ctx context.Context, msg *sdkws.MsgData) {
+ tips := sdkws.ClearConversationTips{}
+ utils.UnmarshalNotificationElem(msg.Content, &tips)
+ log.ZDebug(ctx, "doClearConversations", "tips", tips)
+ for _, v := range tips.ConversationIDs {
+ if err := c.clearConversationAndDeleteAllMsg(ctx, v, false, c.db.ClearConversation); err != nil {
+ log.ZError(ctx, "clearConversation err", err, "conversationID", v)
+ }
+ }
+ c.doUpdateConversation(common.Cmd2Value{Value: common.UpdateConNode{Action: constant.ConChange, Args: tips.ConversationIDs}})
+ c.doUpdateConversation(common.Cmd2Value{Value: common.UpdateConNode{Action: constant.TotalUnreadMessageChanged}})
+}
diff --git a/go/chao-sdk-core/internal/conversation_msg/entering.go b/go/chao-sdk-core/internal/conversation_msg/entering.go
new file mode 100644
index 0000000..5db1055
--- /dev/null
+++ b/go/chao-sdk-core/internal/conversation_msg/entering.go
@@ -0,0 +1,217 @@
+package conversation_msg
+
+import (
+ "context"
+ "encoding/json"
+ "github.com/jinzhu/copier"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/sdk_struct"
+ "github.com/openimsdk/protocol/sdkws"
+ "github.com/openimsdk/tools/errs"
+ "github.com/openimsdk/tools/log"
+ "github.com/openimsdk/tools/utils/datautil"
+ "github.com/patrickmn/go-cache"
+ "time"
+)
+
+const (
+ _ int = iota
+ stateCodeSuccess
+ stateCodeEnd
+)
+
+const (
+ inputStatesSendTime = time.Second * 10 // input status sending interval time
+ inputStatesTimeout = inputStatesSendTime + inputStatesSendTime/2 // input status timeout
+ inputStatesMsgTimeout = inputStatesSendTime / 2 // message sending timeout
+)
+
+func newTyping(c *Conversation) *typing {
+ e := &typing{
+ conv: c,
+ send: cache.New(inputStatesSendTime, inputStatesTimeout),
+ state: cache.New(inputStatesTimeout, inputStatesTimeout),
+ }
+ e.platformIDs = make([]int32, 0, len(constant.PlatformID2Name))
+ e.platformIDSet = make(map[int32]struct{})
+ for id := range constant.PlatformID2Name {
+ e.platformIDSet[int32(id)] = struct{}{}
+ e.platformIDs = append(e.platformIDs, int32(id))
+ }
+ datautil.Sort(e.platformIDs, true)
+ e.state.OnEvicted(func(key string, val interface{}) {
+ var data inputStatesKey
+ if err := json.Unmarshal([]byte(key), &data); err != nil {
+ return
+ }
+ e.changes(data.ConversationID, data.UserID)
+ })
+ return e
+}
+
+type typing struct {
+ send *cache.Cache
+ state *cache.Cache
+
+ conv *Conversation
+
+ platformIDs []int32
+ platformIDSet map[int32]struct{}
+}
+
+func (e *typing) ChangeInputStates(ctx context.Context, conversationID string, focus bool) error {
+ if conversationID == "" {
+ return errs.ErrArgs.WrapMsg("conversationID can't be empty")
+ }
+ conversation, err := e.conv.db.GetConversation(ctx, conversationID)
+ if err != nil {
+ return err
+ }
+ key := conversation.ConversationID
+ if focus {
+ if val, ok := e.send.Get(key); ok {
+ if val.(int) == stateCodeSuccess {
+ log.ZDebug(ctx, "typing stateCodeSuccess", "conversationID", conversationID, "focus", focus)
+ return nil
+ }
+ }
+ e.send.SetDefault(key, stateCodeSuccess)
+ } else {
+ if val, ok := e.send.Get(key); ok {
+ if val.(int) == stateCodeEnd {
+ log.ZDebug(ctx, "typing stateCodeEnd", "conversationID", conversationID, "focus", focus)
+ return nil
+ }
+ e.send.SetDefault(key, stateCodeEnd)
+ } else {
+ log.ZDebug(ctx, "typing send not found", "conversationID", conversationID, "focus", focus)
+ return nil
+ }
+ }
+ ctx, cancel := context.WithTimeout(ctx, inputStatesMsgTimeout)
+ defer cancel()
+ if err := e.sendMsg(ctx, conversation, focus); err != nil {
+ e.send.Delete(key)
+ return err
+ }
+ return nil
+}
+
+func (e *typing) sendMsg(ctx context.Context, conversation *model_struct.LocalConversation, focus bool) error {
+ s := sdk_struct.MsgStruct{}
+ err := e.conv.initBasicInfo(ctx, &s, constant.UserMsgType, constant.Typing)
+ if err != nil {
+ return err
+ }
+ s.RecvID = conversation.UserID
+ s.GroupID = conversation.GroupID
+ s.SessionType = conversation.ConversationType
+ var typingElem sdk_struct.TypingElem
+ if focus {
+ typingElem.MsgTips = "yes"
+ } else {
+ typingElem.MsgTips = "no"
+ }
+ s.Content = utils.StructToJsonString(typingElem)
+ options := make(map[string]bool, 6)
+ utils.SetSwitchFromOptions(options, constant.IsHistory, false)
+ utils.SetSwitchFromOptions(options, constant.IsPersistent, false)
+ utils.SetSwitchFromOptions(options, constant.IsSenderSync, false)
+ utils.SetSwitchFromOptions(options, constant.IsConversationUpdate, false)
+ utils.SetSwitchFromOptions(options, constant.IsSenderConversationUpdate, false)
+ utils.SetSwitchFromOptions(options, constant.IsUnreadCount, false)
+ utils.SetSwitchFromOptions(options, constant.IsOfflinePush, false)
+ var wsMsgData sdkws.MsgData
+ copier.Copy(&wsMsgData, s)
+ wsMsgData.Content = []byte(s.Content)
+ wsMsgData.CreateTime = s.CreateTime
+ wsMsgData.Options = options
+ var sendMsgResp sdkws.UserSendMsgResp
+ err = e.conv.LongConnMgr.SendReqWaitResp(ctx, &wsMsgData, constant.SendMsg, &sendMsgResp)
+ if err != nil {
+ log.ZError(ctx, "typing msg to server failed", err, "message", s)
+ return err
+ }
+ return nil
+}
+
+type inputStatesKey struct {
+ ConversationID string `json:"cid,omitempty"`
+ UserID string `json:"uid,omitempty"`
+ PlatformID int32 `json:"pid,omitempty"`
+}
+
+func (e *typing) getStateKey(conversationID string, userID string, platformID int32) string {
+ data, err := json.Marshal(inputStatesKey{ConversationID: conversationID, UserID: userID, PlatformID: platformID})
+ if err != nil {
+ panic(err)
+ }
+ return string(data)
+}
+
+func (e *typing) onNewMsg(ctx context.Context, msg *sdkws.MsgData) {
+ var enteringElem sdk_struct.TypingElem
+ if err := json.Unmarshal(msg.Content, &enteringElem); err != nil {
+ log.ZError(ctx, "typing onNewMsg Unmarshal failed", err, "message", msg)
+ return
+ }
+ if msg.SendID == e.conv.loginUserID {
+ return
+ }
+ if _, ok := e.platformIDSet[msg.SenderPlatformID]; !ok {
+ return
+ }
+ now := time.Now().UnixMilli()
+ expirationTimestamp := msg.SendTime + int64(inputStatesSendTime/time.Millisecond)
+ if msg.SendTime > now || expirationTimestamp <= now {
+ return
+ }
+ var sourceID string
+ if msg.GroupID == "" {
+ sourceID = msg.SendID
+ } else {
+ sourceID = msg.GroupID
+ }
+ conversationID := e.conv.getConversationIDBySessionType(sourceID, int(msg.SessionType))
+ key := e.getStateKey(conversationID, msg.SendID, msg.SenderPlatformID)
+ if enteringElem.MsgTips == "yes" {
+ d := time.Duration(expirationTimestamp-now) * time.Millisecond
+ if v, t, ok := e.state.GetWithExpiration(key); ok {
+ if t.UnixMilli() >= expirationTimestamp {
+ return
+ }
+ e.state.Set(key, v, d)
+ } else {
+ e.state.Set(key, struct{}{}, d)
+ e.changes(conversationID, msg.SendID)
+ }
+ } else {
+ if _, ok := e.state.Get(key); ok {
+ e.state.Delete(key)
+ }
+ }
+}
+
+type InputStatesChangedData struct {
+ ConversationID string `json:"conversationID"`
+ UserID string `json:"userID"`
+ PlatformIDs []int32 `json:"platformIDs"`
+}
+
+func (e *typing) changes(conversationID string, userID string) {
+ data := InputStatesChangedData{ConversationID: conversationID, UserID: userID, PlatformIDs: e.GetInputStates(conversationID, userID)}
+ e.conv.ConversationListener().OnConversationUserInputStatusChanged(utils.StructToJsonString(data))
+}
+
+func (e *typing) GetInputStates(conversationID string, userID string) []int32 {
+ platformIDs := make([]int32, 0, 1)
+ for _, platformID := range e.platformIDs {
+ key := e.getStateKey(conversationID, userID, platformID)
+ if _, ok := e.state.Get(key); ok {
+ platformIDs = append(platformIDs, platformID)
+ }
+ }
+ return platformIDs
+}
diff --git a/go/chao-sdk-core/internal/conversation_msg/image.go b/go/chao-sdk-core/internal/conversation_msg/image.go
new file mode 100644
index 0000000..3097764
--- /dev/null
+++ b/go/chao-sdk-core/internal/conversation_msg/image.go
@@ -0,0 +1,32 @@
+package conversation_msg
+
+import (
+ "github.com/openimsdk/openim-sdk-core/v3/sdk_struct"
+ "github.com/openimsdk/tools/errs"
+ _ "golang.org/x/image/bmp"
+ _ "golang.org/x/image/tiff"
+ _ "golang.org/x/image/webp"
+ "image"
+ _ "image/gif"
+ _ "image/jpeg"
+ _ "image/png"
+ "os"
+)
+
+func getImageInfo(filePath string) (*sdk_struct.ImageInfo, error) {
+ file, err := os.Open(filePath)
+ if err != nil {
+ return nil, errs.WrapMsg(err, "image file open err")
+ }
+ defer file.Close()
+ info, err := file.Stat()
+ if err != nil {
+ return nil, err
+ }
+ img, format, err := image.Decode(file)
+ if err != nil {
+ return nil, errs.WrapMsg(err, "image file decode err")
+ }
+ size := img.Bounds().Max
+ return &sdk_struct.ImageInfo{Width: int32(size.X), Height: int32(size.Y), Type: "image/" + format, Size: info.Size()}, nil
+}
diff --git a/go/chao-sdk-core/internal/conversation_msg/max_seq_recorder.go b/go/chao-sdk-core/internal/conversation_msg/max_seq_recorder.go
new file mode 100644
index 0000000..97d7912
--- /dev/null
+++ b/go/chao-sdk-core/internal/conversation_msg/max_seq_recorder.go
@@ -0,0 +1,52 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package conversation_msg
+
+import "sync"
+
+type MaxSeqRecorder struct {
+ seqs map[string]int64
+ lock sync.RWMutex
+}
+
+func NewMaxSeqRecorder() MaxSeqRecorder {
+ m := make(map[string]int64)
+ return MaxSeqRecorder{seqs: m}
+}
+
+func (m *MaxSeqRecorder) Get(conversationID string) int64 {
+ m.lock.RLock()
+ defer m.lock.RUnlock()
+ return m.seqs[conversationID]
+}
+
+func (m *MaxSeqRecorder) Set(conversationID string, seq int64) {
+ m.lock.Lock()
+ defer m.lock.Unlock()
+ m.seqs[conversationID] = seq
+}
+
+func (m *MaxSeqRecorder) Incr(conversationID string, num int64) {
+ m.lock.Lock()
+ defer m.lock.Unlock()
+ m.seqs[conversationID] += num
+}
+
+func (m *MaxSeqRecorder) IsNewMsg(conversationID string, seq int64) bool {
+ m.lock.RLock()
+ defer m.lock.RUnlock()
+ currentSeq := m.seqs[conversationID]
+ return seq > currentSeq
+}
diff --git a/go/chao-sdk-core/internal/conversation_msg/message_check.go b/go/chao-sdk-core/internal/conversation_msg/message_check.go
new file mode 100644
index 0000000..3dd8208
--- /dev/null
+++ b/go/chao-sdk-core/internal/conversation_msg/message_check.go
@@ -0,0 +1,347 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package conversation_msg
+
+import (
+ "context"
+ "errors"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ sdk "github.com/openimsdk/openim-sdk-core/v3/pkg/sdk_params_callback"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/tools/utils/datautil"
+
+ "github.com/openimsdk/tools/log"
+
+ "github.com/openimsdk/protocol/sdkws"
+)
+
+// æŖæĩå
ļå
é¨čŋįģæ§īŧåĻæä¸čŋįģīŧåååčĄĨéŊ,čˇåčŋä¸įģæļæ¯įæå¤§æå°seqīŧäģĨåéčĻčĄĨéŊįseqå襨éŋåēĻ
+func (c *Conversation) messageBlocksInternalContinuityCheck(ctx context.Context, conversationID string, notStartTime, isReverse bool, count int,
+ startTime int64, list *[]*model_struct.LocalChatLog, messageListCallback *sdk.GetAdvancedHistoryMessageListCallback) (max, min int64, length int) {
+ var lostSeqListLength int
+ maxSeq, minSeq, haveSeqList := c.getMaxAndMinHaveSeqList(*list)
+ log.ZDebug(ctx, "getMaxAndMinHaveSeqList is:", "maxSeq", maxSeq, "minSeq", minSeq, "haveSeqList", haveSeqList)
+ if maxSeq != 0 && minSeq != 0 {
+ successiveSeqList := func(max, min int64) (seqList []int64) {
+ for i := min; i <= max; i++ {
+ seqList = append(seqList, i)
+ }
+ return seqList
+ }(maxSeq, minSeq)
+ lostSeqList := utils.DifferenceSubset(successiveSeqList, haveSeqList)
+ lostSeqListLength = len(lostSeqList)
+ log.ZDebug(ctx, "get lost seqList is :", "maxSeq", maxSeq, "minSeq", minSeq, "lostSeqList", lostSeqList, "length:", lostSeqListLength)
+ if lostSeqListLength > 0 {
+ var pullSeqList []int64
+ if lostSeqListLength <= constant.PullMsgNumForReadDiffusion {
+ pullSeqList = lostSeqList
+ } else {
+ pullSeqList = lostSeqList[lostSeqListLength-constant.PullMsgNumForReadDiffusion : lostSeqListLength]
+ }
+ c.pullMessageAndReGetHistoryMessages(ctx, conversationID, pullSeqList, notStartTime, isReverse, count, startTime, list, messageListCallback)
+ }
+
+ }
+ return maxSeq, minSeq, lostSeqListLength
+}
+
+// æŖæĩæļæ¯åäšé´įčŋįģæ§īŧåĻæä¸čŋįģīŧåååčĄĨéŊ,čŋååäšé´æ¯åĻčŋįģīŧbool
+func (c *Conversation) messageBlocksBetweenContinuityCheck(ctx context.Context, lastMinSeq, maxSeq int64, conversationID string,
+ notStartTime, isReverse bool, count int, startTime int64, list *[]*model_struct.LocalChatLog, messageListCallback *sdk.GetAdvancedHistoryMessageListCallback) bool {
+ if lastMinSeq != 0 {
+ log.ZDebug(ctx, "get lost LastMinSeq is :", "lastMinSeq", lastMinSeq, "thisMaxSeq", maxSeq)
+ if maxSeq != 0 {
+ if maxSeq+1 != lastMinSeq {
+ startSeq := int64(lastMinSeq) - constant.PullMsgNumForReadDiffusion
+ if startSeq <= maxSeq {
+ startSeq = int64(maxSeq) + 1
+ }
+ successiveSeqList := func(max, min int64) (seqList []int64) {
+ for i := min; i <= max; i++ {
+ seqList = append(seqList, i)
+ }
+ return seqList
+ }(lastMinSeq-1, startSeq)
+ log.ZDebug(ctx, "get lost successiveSeqList is :", "successiveSeqList", successiveSeqList, "length:", len(successiveSeqList))
+ if len(successiveSeqList) > 0 {
+ c.pullMessageAndReGetHistoryMessages(ctx, conversationID, successiveSeqList, notStartTime, isReverse, count, startTime, list, messageListCallback)
+ }
+ } else {
+ return true
+ }
+
+ } else {
+ return true
+ }
+
+ } else {
+ return true
+ }
+
+ return false
+}
+
+// æ šæŽæå°seqååčĄĨéŊæļæ¯īŧįąæåĄå¨å蝿åæļæ¯įģææ¯åĻå°åēīŧåĻæįŊįģīŧåååčĄĨéŊ,čˇåčŋä¸įģæļæ¯įæå¤§æå°seqīŧäģĨåéčĻčĄĨéŊįseqå襨éŋåēĻ
+func (c *Conversation) messageBlocksEndContinuityCheck(ctx context.Context, minSeq int64, conversationID string, notStartTime,
+ isReverse bool, count int, startTime int64, list *[]*model_struct.LocalChatLog, messageListCallback *sdk.GetAdvancedHistoryMessageListCallback) {
+ if minSeq != 0 {
+ seqList := func(seq int64) (seqList []int64) {
+ startSeq := seq - constant.PullMsgNumForReadDiffusion
+ if startSeq <= 0 {
+ startSeq = 1
+ }
+ log.ZDebug(ctx, "pull start is ", "start seq", startSeq)
+ for i := startSeq; i < seq; i++ {
+ seqList = append(seqList, i)
+ }
+ return seqList
+ }(minSeq)
+ log.ZDebug(ctx, "pull seqList is ", "seqList", seqList, "len", len(seqList))
+
+ if len(seqList) > 0 {
+ c.pullMessageAndReGetHistoryMessages(ctx, conversationID, seqList, notStartTime, isReverse, count, startTime, list, messageListCallback)
+ }
+
+ } else {
+ //local don't have messages,æŦå°æ æļæ¯īŧäŊæ¯æåĄå¨æå¤§æļæ¯ä¸ä¸ē0
+ seqList := []int64{0, 0}
+ c.pullMessageAndReGetHistoryMessages(ctx, conversationID, seqList, notStartTime, isReverse, count, startTime, list, messageListCallback)
+
+ }
+
+}
+func (c *Conversation) getMaxAndMinHaveSeqList(messages []*model_struct.LocalChatLog) (max, min int64, seqList []int64) {
+ for i := 0; i < len(messages); i++ {
+ if messages[i].Seq != 0 {
+ seqList = append(seqList, messages[i].Seq)
+ }
+ if messages[i].Seq != 0 && min == 0 && max == 0 {
+ min = messages[i].Seq
+ max = messages[i].Seq
+ }
+ if messages[i].Seq < min && messages[i].Seq != 0 {
+ min = messages[i].Seq
+ }
+ if messages[i].Seq > max {
+ max = messages[i].Seq
+
+ }
+ }
+ return max, min, seqList
+}
+
+// 1ãäŋč¯åæŦĄæåæļæ¯éäŊäēsdkåæŦĄäģæåĄå¨æåé
+// 2ãåä¸čŋįģæ§æŖæĩ
+// 3ãåäšé´čŋįģæ§æŖæĩ
+func (c *Conversation) pullMessageAndReGetHistoryMessages(ctx context.Context, conversationID string, seqList []int64,
+ notStartTime, isReverse bool, count int, startTime int64, list *[]*model_struct.LocalChatLog,
+ messageListCallback *sdk.GetAdvancedHistoryMessageListCallback) {
+ existedSeqList, err := c.db.GetAlreadyExistSeqList(ctx, conversationID, seqList)
+ if err != nil {
+ log.ZError(ctx, "GetAlreadyExistSeqList err", err, "conversationID", conversationID,
+ "seqList", seqList)
+ return
+ }
+ if len(existedSeqList) == len(seqList) {
+ log.ZDebug(ctx, "do not pull message", "seqList", seqList, "existedSeqList", existedSeqList)
+ return
+ }
+ newSeqList := utils.DifferenceSubset(seqList, existedSeqList)
+ if len(newSeqList) == 0 {
+ log.ZDebug(ctx, "do not pull message", "seqList", seqList, "existedSeqList", existedSeqList,
+ "newSeqList", newSeqList)
+ return
+ }
+ var pullMsgResp sdkws.PullMessageBySeqsResp
+ var pullMsgReq sdkws.PullMessageBySeqsReq
+ pullMsgReq.UserID = c.loginUserID
+ var seqRange sdkws.SeqRange
+ seqRange.ConversationID = conversationID
+ seqRange.Begin = newSeqList[0]
+ seqRange.End = newSeqList[len(newSeqList)-1]
+ seqRange.Num = int64(len(newSeqList))
+ pullMsgReq.SeqRanges = append(pullMsgReq.SeqRanges, &seqRange)
+ log.ZDebug(ctx, "conversation pull message, ", "req", pullMsgReq)
+ if notStartTime && !c.LongConnMgr.IsConnected() {
+ return
+ }
+ err = c.SendReqWaitResp(ctx, &pullMsgReq, constant.PullMsgBySeqList, &pullMsgResp)
+ if err != nil {
+ errHandle(newSeqList, list, err, messageListCallback)
+ log.ZDebug(ctx, "pullmsg SendReqWaitResp failed", err, "req")
+ } else {
+ log.ZDebug(ctx, "syncMsgFromServerSplit pull msg", "resp", pullMsgResp)
+ if pullMsgResp.Msgs == nil {
+ log.ZWarn(ctx, "syncMsgFromServerSplit pull msg is null", errors.New("pull message is null"),
+ "req", pullMsgReq)
+ return
+ }
+ if v, ok := pullMsgResp.Msgs[conversationID]; ok {
+ c.pullMessageIntoTable(ctx, pullMsgResp.Msgs, conversationID)
+ messageListCallback.IsEnd = v.IsEnd
+
+ if notStartTime {
+ *list, err = c.db.GetMessageListNoTime(ctx, conversationID, count, isReverse)
+ } else {
+ *list, err = c.db.GetMessageList(ctx, conversationID, count, startTime, isReverse)
+ }
+ }
+
+ }
+}
+func errHandle(seqList []int64, list *[]*model_struct.LocalChatLog, err error, messageListCallback *sdk.GetAdvancedHistoryMessageListCallback) {
+ messageListCallback.ErrCode = 100
+ messageListCallback.ErrMsg = err.Error()
+ var result []*model_struct.LocalChatLog
+ needPullMaxSeq := seqList[len(seqList)-1]
+ for _, chatLog := range *list {
+ if chatLog.Seq == 0 || chatLog.Seq > needPullMaxSeq {
+ temp := chatLog
+ result = append(result, temp)
+ } else {
+ if chatLog.Seq <= needPullMaxSeq {
+ break
+ }
+ }
+ }
+ *list = result
+}
+func (c *Conversation) pullMessageIntoTable(ctx context.Context, pullMsgData map[string]*sdkws.PullMsgs, conversationID string) {
+ insertMsg := make(map[string][]*model_struct.LocalChatLog, 20)
+ updateMsg := make(map[string][]*model_struct.LocalChatLog, 30)
+ var insertMessage, selfInsertMessage, othersInsertMessage []*model_struct.LocalChatLog
+ var updateMessage []*model_struct.LocalChatLog
+ var exceptionMsg []*model_struct.LocalErrChatLog
+
+ log.ZDebug(ctx, "do Msg come here, len: ", "msg length", len(pullMsgData))
+ for conversationID, msgs := range pullMsgData {
+ for _, v := range msgs.Msgs {
+ log.ZDebug(ctx, "msg detail", "msg", v, "conversationID", conversationID)
+ msg := c.msgDataToLocalChatLog(v)
+ //When the message has been marked and deleted by the cloud, it is directly inserted locally without any conversation and message update.
+ if msg.Status == constant.MsgStatusHasDeleted {
+ insertMessage = append(insertMessage, msg)
+ continue
+ }
+ msg.Status = constant.MsgStatusSendSuccess
+ // log.Info(operationID, "new msg, seq, ServerMsgID, ClientMsgID", msg.Seq, msg.ServerMsgID, msg.ClientMsgID)
+ //De-analyze data
+ if msg.ClientMsgID == "" {
+ exceptionMsg = append(exceptionMsg, c.msgDataToLocalErrChatLog(msg))
+ continue
+ }
+ if v.SendID == c.loginUserID { //seq
+ // Messages sent by myself //if sent through this terminal
+ m, err := c.db.GetMessage(ctx, conversationID, msg.ClientMsgID)
+ if err == nil {
+ log.ZInfo(ctx, "have message", "msg", msg)
+ if m.Seq == 0 {
+ updateMessage = append(updateMessage, msg)
+
+ } else {
+ exceptionMsg = append(exceptionMsg, c.msgDataToLocalErrChatLog(msg))
+ }
+ } else { // send through other terminal
+ log.ZInfo(ctx, "sync message", "msg", msg)
+ selfInsertMessage = append(selfInsertMessage, msg)
+ }
+ } else { //Sent by others
+ if oldMessage, err := c.db.GetMessage(ctx, conversationID, msg.ClientMsgID); err != nil { //Deduplication operation
+ othersInsertMessage = append(othersInsertMessage, msg)
+
+ } else {
+ if oldMessage.Seq == 0 {
+ updateMessage = append(updateMessage, msg)
+ }
+ }
+ }
+
+ insertMsg[conversationID] = append(insertMessage, c.faceURLAndNicknameHandle(ctx, selfInsertMessage, othersInsertMessage, conversationID)...)
+ updateMsg[conversationID] = updateMessage
+ }
+
+ //update message
+ if err6 := c.messageController.BatchUpdateMessageList(ctx, updateMsg); err6 != nil {
+ log.ZError(ctx, "sync seq normal message err :", err6)
+ }
+ b3 := utils.GetCurrentTimestampByMill()
+ //Normal message storage
+ _ = c.messageController.BatchInsertMessageList(ctx, insertMsg)
+ b4 := utils.GetCurrentTimestampByMill()
+ log.ZDebug(ctx, "BatchInsertMessageListController, ", "cost time", b4-b3)
+
+ //Exception message storage
+ for _, v := range exceptionMsg {
+ log.ZWarn(ctx, "exceptionMsg show: ", nil, "msg", *v)
+ }
+
+ }
+}
+
+// æåįæļæ¯éŊéčĻįģčŋåå
é¨čŋįģæ§æŖæĩäģĨåååä¸ä¸åäšé´įčŋįģæ§æŖæĩä¸čŋįģåčĄĨīŧčĄĨéŊįčŋį¨ä¸åĻæåēį°äģģäŊåŧ常åĒįģseqäģ大å°å°å°æåą
+// æåæļæ¯ä¸æģĄéīŧčˇåæåĄå¨ä¸č¯Ĩįž¤æå¤§seqäģĨå፿ˇå¯šäēæ¤įž¤æå°seqīŧæŦå°č¯Ĩįž¤įæå°seqīŧåĻææŦå°įä¸ä¸ē0åšļä¸å°äēįäēæåĄå¨æå°įīŧ蝴æåˇ˛įģå°åēé¨
+// åĻææŦå°įä¸ē0īŧå¯äģĨįč§Ŗä¸ēåå§åįæļåīŧæ°æŽčŋæĒåæĨīŧæč
åŧ常æ
åĩīŧåĻææåĄå¨æå¤§seq-æåĄå¨æå°seq>=0蝴æčŋæĒå°åēé¨īŧåĻåå°åēé¨
+
+func (c *Conversation) faceURLAndNicknameHandle(ctx context.Context, self, others []*model_struct.LocalChatLog, conversationID string) []*model_struct.LocalChatLog {
+ lc, err := c.db.GetConversation(ctx, conversationID)
+ if err != nil {
+ return append(self, others...)
+ }
+ switch lc.ConversationType {
+ case constant.SingleChatType:
+ c.singleHandle(ctx, self, others, lc)
+ case constant.SuperGroupChatType:
+ c.groupHandle(ctx, self, others, lc)
+ }
+ return append(self, others...)
+}
+func (c *Conversation) singleHandle(ctx context.Context, self, others []*model_struct.LocalChatLog, lc *model_struct.LocalConversation) {
+ userInfo, err := c.db.GetLoginUser(ctx, c.loginUserID)
+ if err == nil {
+ for _, chatLog := range self {
+ chatLog.SenderFaceURL = userInfo.FaceURL
+ chatLog.SenderNickname = userInfo.Nickname
+ }
+ }
+ if lc.FaceURL != "" && lc.ShowName != "" {
+ for _, chatLog := range others {
+ chatLog.SenderFaceURL = lc.FaceURL
+ chatLog.SenderNickname = lc.ShowName
+ }
+ }
+
+}
+func (c *Conversation) groupHandle(ctx context.Context, self, others []*model_struct.LocalChatLog, lc *model_struct.LocalConversation) {
+ allMessage := append(self, others...)
+ localGroupMemberInfo, err := c.group.GetSpecifiedGroupMembersInfo(ctx, lc.GroupID, datautil.Slice(allMessage, func(e *model_struct.LocalChatLog) string {
+ return e.SendID
+ }))
+ if err != nil {
+ log.ZError(ctx, "get group member info err", err)
+ return
+ }
+ groupMap := datautil.SliceToMap(localGroupMemberInfo, func(e *model_struct.LocalGroupMember) string {
+ return e.UserID
+ })
+ for _, chatLog := range allMessage {
+ if g, ok := groupMap[chatLog.SendID]; ok {
+ if g.FaceURL != "" && g.Nickname != "" {
+ chatLog.SenderFaceURL = g.FaceURL
+ chatLog.SenderNickname = g.Nickname
+ }
+ }
+ }
+}
diff --git a/go/chao-sdk-core/internal/conversation_msg/message_controller.go b/go/chao-sdk-core/internal/conversation_msg/message_controller.go
new file mode 100644
index 0000000..59678a3
--- /dev/null
+++ b/go/chao-sdk-core/internal/conversation_msg/message_controller.go
@@ -0,0 +1,124 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package conversation_msg
+
+import (
+ "context"
+ "encoding/json"
+ "github.com/openimsdk/openim-sdk-core/v3/internal/util"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/common"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/db_interface"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/sdk_struct"
+
+ "github.com/openimsdk/protocol/sdkws"
+ "github.com/openimsdk/tools/log"
+)
+
+type MessageController struct {
+ db db_interface.DataBase
+ ch chan common.Cmd2Value
+}
+
+func NewMessageController(db db_interface.DataBase, ch chan common.Cmd2Value) *MessageController {
+ return &MessageController{db: db, ch: ch}
+}
+func (m *MessageController) BatchUpdateMessageList(ctx context.Context, updateMsg map[string][]*model_struct.LocalChatLog) error {
+ if updateMsg == nil {
+ return nil
+ }
+ for conversationID, messages := range updateMsg {
+ conversation, err := m.db.GetConversation(ctx, conversationID)
+ if err != nil {
+ log.ZError(ctx, "GetConversation err", err, "conversationID", conversationID)
+ continue
+ }
+ latestMsg := &sdk_struct.MsgStruct{}
+ if err := json.Unmarshal([]byte(conversation.LatestMsg), latestMsg); err != nil {
+ log.ZError(ctx, "Unmarshal err", err, "conversationID",
+ conversationID, "latestMsg", conversation.LatestMsg)
+ continue
+ }
+ for _, v := range messages {
+ v1 := new(model_struct.LocalChatLog)
+ v1.ClientMsgID = v.ClientMsgID
+ v1.Seq = v.Seq
+ v1.Status = v.Status
+ v1.RecvID = v.RecvID
+ v1.SessionType = v.SessionType
+ v1.ServerMsgID = v.ServerMsgID
+ v1.SendTime = v.SendTime
+ err := m.db.UpdateMessage(ctx, conversationID, v1)
+ if err != nil {
+ return utils.Wrap(err, "BatchUpdateMessageList failed")
+ }
+ if latestMsg.ClientMsgID == v.ClientMsgID {
+ latestMsg.ServerMsgID = v.ServerMsgID
+ latestMsg.Seq = v.Seq
+ latestMsg.SendTime = v.SendTime
+ conversation.LatestMsg = utils.StructToJsonString(latestMsg)
+ _ = common.TriggerCmdUpdateConversation(ctx, common.UpdateConNode{ConID: conversation.ConversationID,
+ Action: constant.AddConOrUpLatMsg, Args: *conversation}, m.ch)
+
+ }
+ }
+
+ }
+ return nil
+}
+
+func (m *MessageController) BatchInsertMessageList(ctx context.Context, insertMsg map[string][]*model_struct.LocalChatLog) error {
+ if insertMsg == nil {
+ return nil
+ }
+ for conversationID, messages := range insertMsg {
+ if len(messages) == 0 {
+ continue
+ }
+ err := m.db.BatchInsertMessageList(ctx, conversationID, messages)
+ if err != nil {
+ log.ZError(ctx, "insert GetMessage detail err:", err, "conversationID", conversationID, "messages", messages)
+ for _, v := range messages {
+ e := m.db.InsertMessage(ctx, conversationID, v)
+ if e != nil {
+ log.ZError(ctx, "InsertMessage err", err, "conversationID", conversationID, "message", v)
+ }
+ }
+ }
+
+ }
+ return nil
+}
+
+func (c *Conversation) PullMessageBySeqs(ctx context.Context, seqs []*sdkws.SeqRange) (*sdkws.PullMessageBySeqsResp, error) {
+ return util.CallApi[sdkws.PullMessageBySeqsResp](ctx, constant.PullUserMsgBySeqRouter, sdkws.PullMessageBySeqsReq{UserID: c.loginUserID, SeqRanges: seqs})
+}
+func (m *MessageController) SearchMessageByContentTypeAndKeyword(ctx context.Context, contentType []int, keywordList []string,
+ keywordListMatchType int, startTime, endTime int64) (result []*model_struct.LocalChatLog, err error) {
+ var list []*model_struct.LocalChatLog
+ conversationIDList, err := m.db.GetAllConversationIDList(ctx)
+ for _, v := range conversationIDList {
+ sList, err := m.db.SearchMessageByContentTypeAndKeyword(ctx, contentType, v, keywordList, keywordListMatchType, startTime, endTime)
+ if err != nil {
+ // TODO: log.Error(operationID, "search message in group err", err.Error(), v)
+ continue
+ }
+ list = append(list, sList...)
+ }
+
+ return list, nil
+}
diff --git a/go/chao-sdk-core/internal/conversation_msg/progress.go b/go/chao-sdk-core/internal/conversation_msg/progress.go
new file mode 100644
index 0000000..c197982
--- /dev/null
+++ b/go/chao-sdk-core/internal/conversation_msg/progress.go
@@ -0,0 +1,102 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package conversation_msg
+
+import (
+ "context"
+ "encoding/json"
+ "github.com/openimsdk/openim-sdk-core/v3/internal/file"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/db_interface"
+ "github.com/openimsdk/openim-sdk-core/v3/sdk_struct"
+
+ "github.com/openimsdk/tools/log"
+)
+
+func NewUploadFileCallback(ctx context.Context, progress func(progress int), msg *sdk_struct.MsgStruct, conversationID string, db db_interface.DataBase) file.UploadFileCallback {
+ if msg.AttachedInfoElem == nil {
+ msg.AttachedInfoElem = &sdk_struct.AttachedInfoElem{}
+ }
+ if msg.AttachedInfoElem.Progress == nil {
+ msg.AttachedInfoElem.Progress = &sdk_struct.UploadProgress{}
+ }
+ return &msgUploadFileCallback{ctx: ctx, progress: progress, msg: msg, db: db, conversationID: conversationID}
+}
+
+type msgUploadFileCallback struct {
+ ctx context.Context
+ db db_interface.DataBase
+ msg *sdk_struct.MsgStruct
+ conversationID string
+ value int
+ progress func(progress int)
+}
+
+func (c *msgUploadFileCallback) Open(size int64) {
+}
+
+func (c *msgUploadFileCallback) PartSize(partSize int64, num int) {
+}
+
+func (c *msgUploadFileCallback) HashPartProgress(index int, size int64, partHash string) {
+}
+
+func (c *msgUploadFileCallback) HashPartComplete(partsHash string, fileHash string) {
+}
+
+func (c *msgUploadFileCallback) UploadID(uploadID string) {
+ c.msg.AttachedInfoElem.Progress.UploadID = uploadID
+ data, err := json.Marshal(c.msg.AttachedInfoElem)
+ if err != nil {
+ panic(err)
+ }
+ if err := c.db.UpdateColumnsMessage(c.ctx, c.conversationID, c.msg.ClientMsgID, map[string]any{"attached_info": string(data)}); err != nil {
+ log.ZError(c.ctx, "update PutProgress message attached info failed", err)
+ }
+}
+
+func (c *msgUploadFileCallback) UploadPartComplete(index int, partSize int64, partHash string) {
+}
+
+func (c *msgUploadFileCallback) UploadComplete(fileSize int64, streamSize int64, storageSize int64) {
+ c.msg.AttachedInfoElem.Progress.Save = storageSize
+ c.msg.AttachedInfoElem.Progress.Current = streamSize
+ c.msg.AttachedInfoElem.Progress.Total = fileSize
+ data, err := json.Marshal(c.msg.AttachedInfoElem)
+ if err != nil {
+ panic(err)
+ }
+ if err := c.db.UpdateColumnsMessage(c.ctx, c.conversationID, c.msg.ClientMsgID, map[string]any{"attached_info": string(data)}); err != nil {
+ log.ZError(c.ctx, "update PutProgress message attached info failed", err)
+ }
+ value := int(float64(streamSize) / float64(fileSize) * 100)
+ if c.value < value {
+ c.value = value
+ c.progress(value)
+ }
+}
+
+func (c *msgUploadFileCallback) Complete(size int64, url string, typ int) {
+ if c.value != 100 {
+ c.progress(100)
+ }
+ c.msg.AttachedInfoElem.Progress = nil
+ data, err := json.Marshal(c.msg.AttachedInfoElem)
+ if err != nil {
+ panic(err)
+ }
+ if err := c.db.UpdateColumnsMessage(c.ctx, c.conversationID, c.msg.ClientMsgID, map[string]any{"attached_info": string(data)}); err != nil {
+ log.ZError(c.ctx, "update PutComplete message attached info failed", err)
+ }
+}
diff --git a/go/chao-sdk-core/internal/conversation_msg/read_drawing.go b/go/chao-sdk-core/internal/conversation_msg/read_drawing.go
new file mode 100644
index 0000000..4ec825d
--- /dev/null
+++ b/go/chao-sdk-core/internal/conversation_msg/read_drawing.go
@@ -0,0 +1,281 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package conversation_msg
+
+import (
+ "context"
+ "encoding/json"
+ "errors"
+ "github.com/openimsdk/openim-sdk-core/v3/internal/util"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/common"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/sdkerrs"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/sdk_struct"
+ "github.com/openimsdk/tools/utils/datautil"
+
+ pbMsg "github.com/openimsdk/protocol/msg"
+ "github.com/openimsdk/protocol/sdkws"
+ "github.com/openimsdk/tools/log"
+)
+
+func (c *Conversation) markMsgAsRead2Svr(ctx context.Context, conversationID string, seqs []int64) error {
+ req := &pbMsg.MarkMsgsAsReadReq{UserID: c.loginUserID, ConversationID: conversationID, Seqs: seqs}
+ return util.ApiPost(ctx, constant.MarkMsgsAsReadRouter, req, nil)
+}
+
+func (c *Conversation) markConversationAsReadSvr(ctx context.Context, conversationID string, hasReadSeq int64, seqs []int64) error {
+ req := &pbMsg.MarkConversationAsReadReq{UserID: c.loginUserID, ConversationID: conversationID, HasReadSeq: hasReadSeq, Seqs: seqs}
+ return util.ApiPost(ctx, constant.MarkConversationAsRead, req, nil)
+}
+
+func (c *Conversation) setConversationHasReadSeq(ctx context.Context, conversationID string, hasReadSeq int64) error {
+ req := &pbMsg.SetConversationHasReadSeqReq{UserID: c.loginUserID, ConversationID: conversationID, HasReadSeq: hasReadSeq}
+ return util.ApiPost(ctx, constant.SetConversationHasReadSeq, req, nil)
+}
+
+func (c *Conversation) getConversationMaxSeqAndSetHasRead(ctx context.Context, conversationID string) error {
+ maxSeq, err := c.db.GetConversationNormalMsgSeq(ctx, conversationID)
+ if err != nil {
+ return err
+ }
+ if maxSeq == 0 {
+ return nil
+ }
+ if err := c.setConversationHasReadSeq(ctx, conversationID, maxSeq); err != nil {
+ return err
+ }
+ if err := c.db.UpdateColumnsConversation(ctx, conversationID, map[string]interface{}{"has_read_seq": maxSeq}); err != nil {
+ return err
+ }
+ return nil
+}
+
+// mark a conversation's all message as read
+func (c *Conversation) markConversationMessageAsRead(ctx context.Context, conversationID string) error {
+ conversation, err := c.db.GetConversation(ctx, conversationID)
+ if err != nil {
+ return err
+ }
+ if conversation.UnreadCount == 0 {
+ return sdkerrs.ErrUnreadCount
+ }
+ // get the maximum sequence number of messages in the table that are not sent by oneself
+ peerUserMaxSeq, err := c.db.GetConversationPeerNormalMsgSeq(ctx, conversationID)
+ if err != nil {
+ return err
+ }
+ // get the maximum sequence number of messages in the table
+ maxSeq, err := c.db.GetConversationNormalMsgSeq(ctx, conversationID)
+ if err != nil {
+ return err
+ }
+ switch conversation.ConversationType {
+ case constant.SingleChatType:
+ msgs, err := c.db.GetUnreadMessage(ctx, conversationID)
+ if err != nil {
+ return err
+ }
+ log.ZDebug(ctx, "get unread message", "msgs", len(msgs))
+ msgIDs, seqs := c.getAsReadMsgMapAndList(ctx, msgs)
+ if len(seqs) == 0 {
+ log.ZWarn(ctx, "seqs is empty", nil, "conversationID", conversationID)
+ return nil
+ }
+ log.ZDebug(ctx, "markConversationMessageAsRead", "conversationID", conversationID, "seqs",
+ seqs, "peerUserMaxSeq", peerUserMaxSeq, "maxSeq", maxSeq)
+ if err := c.markConversationAsReadSvr(ctx, conversationID, maxSeq, seqs); err != nil {
+ return err
+ }
+ _, err = c.db.MarkConversationMessageAsReadDB(ctx, conversationID, msgIDs)
+ if err != nil {
+ log.ZWarn(ctx, "MarkConversationMessageAsRead err", err, "conversationID", conversationID, "msgIDs", msgIDs)
+ }
+ case constant.SuperGroupChatType, constant.NotificationChatType:
+ log.ZDebug(ctx, "markConversationMessageAsRead", "conversationID", conversationID, "peerUserMaxSeq", peerUserMaxSeq, "maxSeq", maxSeq)
+ if err := c.markConversationAsReadSvr(ctx, conversationID, maxSeq, nil); err != nil {
+ return err
+ }
+ }
+
+ if err := c.db.UpdateColumnsConversation(ctx, conversationID, map[string]interface{}{"unread_count": 0}); err != nil {
+ log.ZError(ctx, "UpdateColumnsConversation err", err, "conversationID", conversationID)
+ }
+ log.ZDebug(ctx, "update columns sucess")
+ c.unreadChangeTrigger(ctx, conversationID, peerUserMaxSeq == maxSeq)
+ return nil
+}
+
+// mark a conversation's message as read by seqs
+func (c *Conversation) markMessagesAsReadByMsgID(ctx context.Context, conversationID string, msgIDs []string) error {
+ _, err := c.db.GetConversation(ctx, conversationID)
+ if err != nil {
+ return err
+ }
+ msgs, err := c.db.GetMessagesByClientMsgIDs(ctx, conversationID, msgIDs)
+ if err != nil {
+ return err
+ }
+ if len(msgs) == 0 {
+ return nil
+ }
+ var hasReadSeq = msgs[0].Seq
+ maxSeq, err := c.db.GetConversationNormalMsgSeq(ctx, conversationID)
+ if err != nil {
+ return err
+ }
+ markAsReadMsgIDs, seqs := c.getAsReadMsgMapAndList(ctx, msgs)
+ log.ZDebug(ctx, "msgs len", "markAsReadMsgIDs", len(markAsReadMsgIDs), "seqs", seqs)
+ if len(seqs) == 0 {
+ log.ZWarn(ctx, "seqs is empty", nil, "conversationID", conversationID)
+ return nil
+ }
+ if err := c.markMsgAsRead2Svr(ctx, conversationID, seqs); err != nil {
+ return err
+ }
+ decrCount, err := c.db.MarkConversationMessageAsReadDB(ctx, conversationID, markAsReadMsgIDs)
+ if err != nil {
+ return err
+ }
+ if err := c.db.DecrConversationUnreadCount(ctx, conversationID, decrCount); err != nil {
+ log.ZError(ctx, "decrConversationUnreadCount err", err, "conversationID", conversationID,
+ "decrCount", decrCount)
+ }
+ c.unreadChangeTrigger(ctx, conversationID, hasReadSeq == maxSeq && msgs[0].SendID != c.loginUserID)
+ return nil
+}
+
+func (c *Conversation) getAsReadMsgMapAndList(ctx context.Context,
+ msgs []*model_struct.LocalChatLog) (asReadMsgIDs []string, seqs []int64) {
+ for _, msg := range msgs {
+ if !msg.IsRead && msg.SendID != c.loginUserID {
+ if msg.Seq == 0 {
+ log.ZWarn(ctx, "exception seq", errors.New("exception message "), "msg", msg)
+ } else {
+ asReadMsgIDs = append(asReadMsgIDs, msg.ClientMsgID)
+ seqs = append(seqs, msg.Seq)
+ }
+ } else {
+ log.ZWarn(ctx, "msg can't marked as read", nil, "msg", msg)
+ }
+ }
+ return
+}
+
+func (c *Conversation) unreadChangeTrigger(ctx context.Context, conversationID string, latestMsgIsRead bool) {
+ if latestMsgIsRead {
+ c.doUpdateConversation(common.Cmd2Value{Value: common.UpdateConNode{ConID: conversationID,
+ Action: constant.UpdateLatestMessageChange, Args: []string{conversationID}}, Ctx: ctx})
+ }
+ c.doUpdateConversation(common.Cmd2Value{Value: common.UpdateConNode{ConID: conversationID,
+ Action: constant.ConChange, Args: []string{conversationID}}, Ctx: ctx})
+ c.doUpdateConversation(common.Cmd2Value{Value: common.UpdateConNode{Action: constant.TotalUnreadMessageChanged},
+ Ctx: ctx})
+}
+
+func (c *Conversation) doUnreadCount(ctx context.Context, conversation *model_struct.LocalConversation, hasReadSeq int64, seqs []int64) {
+ if conversation.ConversationType == constant.SingleChatType {
+ if len(seqs) != 0 {
+ _, err := c.db.MarkConversationMessageAsReadBySeqs(ctx, conversation.ConversationID, seqs)
+ if err != nil {
+ log.ZWarn(ctx, "MarkConversationMessageAsReadBySeqs err", err, "conversationID", conversation.ConversationID, "seqs", seqs)
+ }
+ } else {
+ log.ZWarn(ctx, "seqs is empty", nil, "conversationID", conversation.ConversationID, "hasReadSeq", hasReadSeq)
+ }
+ if hasReadSeq > conversation.HasReadSeq {
+ decrUnreadCount := hasReadSeq - conversation.HasReadSeq
+ if err := c.db.DecrConversationUnreadCount(ctx, conversation.ConversationID, decrUnreadCount); err != nil {
+ log.ZError(ctx, "DecrConversationUnreadCount err", err, "conversationID", conversation.ConversationID, "decrUnreadCount", decrUnreadCount)
+ }
+ if err := c.db.UpdateColumnsConversation(ctx, conversation.ConversationID, map[string]interface{}{"has_read_seq": hasReadSeq}); err != nil {
+ log.ZError(ctx, "UpdateColumnsConversation err", err, "conversationID", conversation.ConversationID)
+ }
+ }
+ latestMsg := &sdk_struct.MsgStruct{}
+ if err := json.Unmarshal([]byte(conversation.LatestMsg), latestMsg); err != nil {
+ log.ZError(ctx, "Unmarshal err", err, "conversationID", conversation.ConversationID, "latestMsg", conversation.LatestMsg)
+ }
+ if (!latestMsg.IsRead) && datautil.Contain(latestMsg.Seq, seqs...) {
+ latestMsg.IsRead = true
+ conversation.LatestMsg = utils.StructToJsonString(&latestMsg)
+ _ = common.TriggerCmdUpdateConversation(ctx, common.UpdateConNode{ConID: conversation.ConversationID, Action: constant.AddConOrUpLatMsg, Args: *conversation}, c.GetCh())
+ }
+ } else {
+ if err := c.db.UpdateColumnsConversation(ctx, conversation.ConversationID, map[string]interface{}{"unread_count": 0}); err != nil {
+ log.ZError(ctx, "UpdateColumnsConversation err", err, "conversationID", conversation.ConversationID)
+ }
+ }
+
+ c.doUpdateConversation(common.Cmd2Value{Value: common.UpdateConNode{ConID: conversation.ConversationID, Action: constant.ConChange, Args: []string{conversation.ConversationID}}})
+ c.doUpdateConversation(common.Cmd2Value{Value: common.UpdateConNode{Action: constant.TotalUnreadMessageChanged}})
+
+}
+
+func (c *Conversation) doReadDrawing(ctx context.Context, msg *sdkws.MsgData) {
+ tips := &sdkws.MarkAsReadTips{}
+ err := utils.UnmarshalNotificationElem(msg.Content, tips)
+ if err != nil {
+ log.ZWarn(ctx, "UnmarshalNotificationElem err", err, "msg", msg)
+ return
+ }
+ log.ZDebug(ctx, "do readDrawing", "tips", tips)
+ conversation, err := c.db.GetConversation(ctx, tips.ConversationID)
+ if err != nil {
+ log.ZError(ctx, "GetConversation err", err, "conversationID", tips.ConversationID)
+ return
+ }
+ if tips.MarkAsReadUserID != c.loginUserID {
+ if len(tips.Seqs) == 0 {
+ return
+ }
+ messages, err := c.db.GetMessagesBySeqs(ctx, tips.ConversationID, tips.Seqs)
+ if err != nil {
+ log.ZError(ctx, "GetMessagesBySeqs err", err, "conversationID", tips.ConversationID, "seqs", tips.Seqs)
+ return
+ }
+ if conversation.ConversationType == constant.SingleChatType {
+ latestMsg := &sdk_struct.MsgStruct{}
+ if err := json.Unmarshal([]byte(conversation.LatestMsg), latestMsg); err != nil {
+ log.ZError(ctx, "Unmarshal err", err, "conversationID", tips.ConversationID, "latestMsg", conversation.LatestMsg)
+ }
+ var successMsgIDs []string
+ for _, message := range messages {
+ attachInfo := sdk_struct.AttachedInfoElem{}
+ _ = utils.JsonStringToStruct(message.AttachedInfo, &attachInfo)
+ attachInfo.HasReadTime = msg.SendTime
+ message.AttachedInfo = utils.StructToJsonString(attachInfo)
+ message.IsRead = true
+ if err = c.db.UpdateMessage(ctx, tips.ConversationID, message); err != nil {
+ log.ZError(ctx, "UpdateMessage err", err, "conversationID", tips.ConversationID, "message", message)
+ } else {
+ if latestMsg.ClientMsgID == message.ClientMsgID {
+ latestMsg.IsRead = message.IsRead
+ conversation.LatestMsg = utils.StructToJsonString(latestMsg)
+ _ = common.TriggerCmdUpdateConversation(ctx, common.UpdateConNode{ConID: conversation.ConversationID, Action: constant.AddConOrUpLatMsg, Args: *conversation}, c.GetCh())
+
+ }
+ successMsgIDs = append(successMsgIDs, message.ClientMsgID)
+ }
+ }
+ var messageReceiptResp = []*sdk_struct.MessageReceipt{{UserID: tips.MarkAsReadUserID, MsgIDList: successMsgIDs,
+ SessionType: conversation.ConversationType, ReadTime: msg.SendTime}}
+ c.msgListener().OnRecvC2CReadReceipt(utils.StructToJsonString(messageReceiptResp))
+ }
+ } else {
+ c.doUnreadCount(ctx, conversation, tips.HasReadSeq, tips.Seqs)
+ }
+}
diff --git a/go/chao-sdk-core/internal/conversation_msg/revoke.go b/go/chao-sdk-core/internal/conversation_msg/revoke.go
new file mode 100644
index 0000000..d2743a3
--- /dev/null
+++ b/go/chao-sdk-core/internal/conversation_msg/revoke.go
@@ -0,0 +1,203 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package conversation_msg
+
+import (
+ "context"
+ "errors"
+ "github.com/openimsdk/openim-sdk-core/v3/internal/util"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/common"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/sdk_struct"
+ "github.com/openimsdk/tools/utils/timeutil"
+
+ "github.com/jinzhu/copier"
+ pbMsg "github.com/openimsdk/protocol/msg"
+ "github.com/openimsdk/protocol/sdkws"
+ "github.com/openimsdk/tools/log"
+)
+
+func (c *Conversation) doRevokeMsg(ctx context.Context, msg *sdkws.MsgData) {
+ var tips sdkws.RevokeMsgTips
+ if err := utils.UnmarshalNotificationElem(msg.Content, &tips); err != nil {
+ log.ZError(ctx, "unmarshal failed", err, "msg", msg)
+ return
+ }
+ log.ZDebug(ctx, "do revokeMessage", "tips", &tips)
+ c.revokeMessage(ctx, &tips)
+}
+
+func (c *Conversation) revokeMessage(ctx context.Context, tips *sdkws.RevokeMsgTips) {
+ revokedMsg, err := c.db.GetMessageBySeq(ctx, tips.ConversationID, tips.Seq)
+ if err != nil {
+ log.ZError(ctx, "GetMessageBySeq failed", err, "tips", &tips)
+ return
+ }
+ var revokerRole int32
+ var revokerNickname string
+ if tips.IsAdminRevoke || tips.SesstionType == constant.SingleChatType {
+ _, userName, err := c.getUserNameAndFaceURL(ctx, tips.RevokerUserID)
+ if err != nil {
+ log.ZError(ctx, "GetUserNameAndFaceURL failed", err, "tips", &tips)
+ } else {
+ log.ZDebug(ctx, "revoker user name", "userName", userName)
+ }
+ revokerNickname = userName
+ } else if tips.SesstionType == constant.SuperGroupChatType {
+ conversation, err := c.db.GetConversation(ctx, tips.ConversationID)
+ if err != nil {
+ log.ZError(ctx, "GetConversation failed", err, "conversationID", tips.ConversationID)
+ return
+ }
+ groupMember, err := c.db.GetGroupMemberInfoByGroupIDUserID(ctx, conversation.GroupID, tips.RevokerUserID)
+ if err != nil {
+ log.ZError(ctx, "GetGroupMemberInfoByGroupIDUserID failed", err, "tips", &tips)
+ } else {
+ log.ZDebug(ctx, "revoker member name", "groupMember", groupMember)
+ revokerRole = groupMember.RoleLevel
+ revokerNickname = groupMember.Nickname
+ }
+ }
+ m := sdk_struct.MessageRevoked{
+ RevokerID: tips.RevokerUserID,
+ RevokerRole: revokerRole,
+ ClientMsgID: revokedMsg.ClientMsgID,
+ RevokerNickname: revokerNickname,
+ RevokeTime: tips.RevokeTime,
+ SourceMessageSendTime: revokedMsg.SendTime,
+ SourceMessageSendID: revokedMsg.SendID,
+ SourceMessageSenderNickname: revokedMsg.SenderNickname,
+ SessionType: tips.SesstionType,
+ Seq: tips.Seq,
+ Ex: revokedMsg.Ex,
+ IsAdminRevoke: tips.IsAdminRevoke,
+ }
+ // log.ZDebug(ctx, "callback revokeMessage", "m", m)
+ var n sdk_struct.NotificationElem
+ n.Detail = utils.StructToJsonString(m)
+ if err := c.db.UpdateMessageBySeq(ctx, tips.ConversationID, &model_struct.LocalChatLog{Seq: tips.Seq,
+ Content: utils.StructToJsonString(n), ContentType: constant.RevokeNotification}); err != nil {
+ log.ZError(ctx, "UpdateMessageBySeq failed", err, "tips", &tips)
+ return
+ }
+ conversation, err := c.db.GetConversation(ctx, tips.ConversationID)
+ if err != nil {
+ log.ZError(ctx, "GetConversation failed", err, "tips", &tips)
+ return
+ }
+ var latestMsg sdk_struct.MsgStruct
+ utils.JsonStringToStruct(conversation.LatestMsg, &latestMsg)
+ log.ZDebug(ctx, "latestMsg", "latestMsg", &latestMsg, "seq", tips.Seq)
+ if latestMsg.Seq <= tips.Seq {
+ var newLatesetMsg sdk_struct.MsgStruct
+ msgs, err := c.db.GetMessageListNoTime(ctx, tips.ConversationID, 1, false)
+ if err != nil || len(msgs) == 0 {
+ log.ZError(ctx, "GetMessageListNoTime failed", err, "tips", &tips)
+ return
+ }
+ log.ZDebug(ctx, "latestMsg is revoked", "seq", tips.Seq, "msg", msgs[0])
+ copier.Copy(&newLatesetMsg, msgs[0])
+ err = c.msgConvert(&newLatesetMsg)
+ if err != nil {
+ log.ZError(ctx, "parsing data error", err, latestMsg)
+ } else {
+ log.ZDebug(ctx, "revoke update conversatoin", "msg", utils.StructToJsonString(newLatesetMsg))
+ if err := c.db.UpdateColumnsConversation(ctx, tips.ConversationID, map[string]interface{}{"latest_msg": utils.StructToJsonString(newLatesetMsg),
+ "latest_msg_send_time": newLatesetMsg.SendTime}); err != nil {
+ log.ZError(ctx, "UpdateColumnsConversation failed", err, "newLatesetMsg", newLatesetMsg)
+ } else {
+ c.doUpdateConversation(common.Cmd2Value{Value: common.UpdateConNode{Action: constant.ConChange, Args: []string{tips.ConversationID}}})
+ }
+ }
+ }
+ c.msgListener().OnNewRecvMessageRevoked(utils.StructToJsonString(m))
+ msgList, err := c.db.SearchAllMessageByContentType(ctx, conversation.ConversationID, constant.Quote)
+ if err != nil {
+ log.ZError(ctx, "SearchAllMessageByContentType failed", err, "tips", &tips)
+ return
+ }
+ for _, v := range msgList {
+ c.quoteMsgRevokeHandle(ctx, tips.ConversationID, v, m)
+ }
+}
+
+func (c *Conversation) quoteMsgRevokeHandle(ctx context.Context, conversationID string, v *model_struct.LocalChatLog, revokedMsg sdk_struct.MessageRevoked) {
+ s := sdk_struct.MsgStruct{}
+ _ = utils.JsonStringToStruct(v.Content, &s.QuoteElem)
+
+ if s.QuoteElem.QuoteMessage == nil {
+ return
+ }
+ if s.QuoteElem.QuoteMessage.ClientMsgID != revokedMsg.ClientMsgID {
+ return
+ }
+ s.QuoteElem.QuoteMessage.Content = utils.StructToJsonString(revokedMsg)
+ s.QuoteElem.QuoteMessage.ContentType = constant.RevokeNotification
+ v.Content = utils.StructToJsonString(s.QuoteElem)
+ if err := c.db.UpdateMessageBySeq(ctx, conversationID, v); err != nil {
+ log.ZError(ctx, "UpdateMessage failed", err, "v", v)
+ }
+}
+
+func (c *Conversation) revokeOneMessage(ctx context.Context, conversationID, clientMsgID string) error {
+ conversation, err := c.db.GetConversation(ctx, conversationID)
+ if err != nil {
+ return err
+ }
+ message, err := c.db.GetMessage(ctx, conversationID, clientMsgID)
+ if err != nil {
+ return err
+ }
+ if message.Status != constant.MsgStatusSendSuccess {
+ return errors.New("only send success message can be revoked")
+ }
+ switch conversation.ConversationType {
+ case constant.SingleChatType:
+ if message.SendID != c.loginUserID {
+ return errors.New("only send by yourself message can be revoked")
+ }
+ case constant.SuperGroupChatType:
+ if message.SendID != c.loginUserID {
+ groupAdmins, err := c.db.GetGroupMemberOwnerAndAdminDB(ctx, conversation.GroupID)
+ if err != nil {
+ return err
+ }
+ var isAdmin bool
+ for _, member := range groupAdmins {
+ if member.UserID == c.loginUserID {
+ isAdmin = true
+ break
+ }
+ }
+ if !isAdmin {
+ return errors.New("only group admin can revoke message")
+ }
+ }
+ }
+ if err := util.ApiPost(ctx, constant.RevokeMsgRouter, pbMsg.RevokeMsgReq{ConversationID: conversationID, Seq: message.Seq, UserID: c.loginUserID}, nil); err != nil {
+ return err
+ }
+ c.revokeMessage(ctx, &sdkws.RevokeMsgTips{
+ ConversationID: conversationID,
+ Seq: message.Seq,
+ RevokerUserID: c.loginUserID,
+ RevokeTime: timeutil.GetCurrentTimestampBySecond(),
+ SesstionType: conversation.ConversationType,
+ ClientMsgID: clientMsgID,
+ })
+ return nil
+}
diff --git a/go/chao-sdk-core/internal/conversation_msg/sdk.go b/go/chao-sdk-core/internal/conversation_msg/sdk.go
new file mode 100644
index 0000000..cb0d062
--- /dev/null
+++ b/go/chao-sdk-core/internal/conversation_msg/sdk.go
@@ -0,0 +1,1180 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package conversation_msg
+
+import (
+ "context"
+ "fmt"
+ "github.com/openimsdk/openim-sdk-core/v3/internal/file"
+ "github.com/openimsdk/openim-sdk-core/v3/open_im_sdk_callback"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/common"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/content_type"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/sdk_params_callback"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/sdkerrs"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/server_api_params"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/sdk_struct"
+ "net/url"
+ "os"
+ "path/filepath"
+ "sort"
+ "strings"
+ "sync"
+ "time"
+
+ "github.com/openimsdk/tools/log"
+
+ pbConversation "github.com/openimsdk/protocol/conversation"
+ "github.com/openimsdk/protocol/sdkws"
+ "github.com/openimsdk/protocol/wrapperspb"
+
+ "github.com/jinzhu/copier"
+)
+
+func (c *Conversation) GetAllConversationList(ctx context.Context) ([]*model_struct.LocalConversation, error) {
+ return c.db.GetAllConversationListDB(ctx)
+}
+
+func (c *Conversation) GetConversationListSplit(ctx context.Context, offset, count int) ([]*model_struct.LocalConversation, error) {
+ return c.db.GetConversationListSplitDB(ctx, offset, count)
+}
+
+func (c *Conversation) HideConversation(ctx context.Context, conversationID string) error {
+ err := c.db.ResetConversation(ctx, conversationID)
+ if err != nil {
+ return err
+ }
+ return nil
+}
+
+func (c *Conversation) GetAtAllTag(_ context.Context) string {
+ return constant.AtAllString
+}
+
+// deprecated
+func (c *Conversation) GetConversationRecvMessageOpt(ctx context.Context, conversationIDs []string) (resp []*server_api_params.GetConversationRecvMessageOptResp, err error) {
+ conversations, err := c.db.GetMultipleConversationDB(ctx, conversationIDs)
+ if err != nil {
+ return nil, err
+ }
+ for _, conversation := range conversations {
+ resp = append(resp, &server_api_params.GetConversationRecvMessageOptResp{
+ ConversationID: conversation.ConversationID,
+ Result: &conversation.RecvMsgOpt,
+ })
+ }
+ return resp, nil
+}
+
+// Method to set global message receiving options
+func (c *Conversation) GetOneConversation(ctx context.Context, sessionType int32, sourceID string) (*model_struct.LocalConversation, error) {
+ conversationID := c.getConversationIDBySessionType(sourceID, int(sessionType))
+ lc, err := c.db.GetConversation(ctx, conversationID)
+ if err == nil {
+ return lc, nil
+ } else {
+ var newConversation model_struct.LocalConversation
+ newConversation.ConversationID = conversationID
+ newConversation.ConversationType = sessionType
+ switch sessionType {
+ case constant.SingleChatType:
+ newConversation.UserID = sourceID
+ faceUrl, name, err := c.getUserNameAndFaceURL(ctx, sourceID)
+ if err != nil {
+ return nil, err
+ }
+ newConversation.ShowName = name
+ newConversation.FaceURL = faceUrl
+ case constant.GroupChatType, constant.SuperGroupChatType:
+ newConversation.GroupID = sourceID
+ g, err := c.full.GetGroupInfoFromLocal2Svr(ctx, sourceID, sessionType)
+ if err != nil {
+ return nil, err
+ }
+ newConversation.ShowName = g.GroupName
+ newConversation.FaceURL = g.FaceURL
+ }
+ time.Sleep(time.Millisecond * 500)
+ lc, errTemp := c.db.GetConversation(ctx, conversationID)
+ if errTemp == nil {
+ return lc, nil
+ }
+ err := c.db.InsertConversation(ctx, &newConversation)
+ if err != nil {
+ return nil, err
+ }
+ return &newConversation, nil
+ }
+}
+
+func (c *Conversation) GetMultipleConversation(ctx context.Context, conversationIDList []string) ([]*model_struct.LocalConversation, error) {
+ conversations, err := c.db.GetMultipleConversationDB(ctx, conversationIDList)
+ if err != nil {
+ return nil, err
+ }
+ return conversations, nil
+
+}
+
+func (c *Conversation) HideAllConversations(ctx context.Context) error {
+ err := c.db.ResetAllConversation(ctx)
+ if err != nil {
+ return err
+ }
+ return nil
+}
+
+func (c *Conversation) SetConversationDraft(ctx context.Context, conversationID, draftText string) error {
+ if draftText != "" {
+ err := c.db.SetConversationDraftDB(ctx, conversationID, draftText)
+ if err != nil {
+ return err
+ }
+ } else {
+ err := c.db.RemoveConversationDraft(ctx, conversationID, draftText)
+ if err != nil {
+ return err
+ }
+ }
+ _ = common.TriggerCmdUpdateConversation(ctx, common.UpdateConNode{Action: constant.ConChange, Args: []string{conversationID}}, c.GetCh())
+ return nil
+}
+
+func (c *Conversation) setConversationAndSync(ctx context.Context, conversationID string, req *pbConversation.ConversationReq) error {
+ lc, err := c.db.GetConversation(ctx, conversationID)
+ if err != nil {
+ return err
+ }
+ apiReq := &pbConversation.SetConversationsReq{Conversation: req}
+ err = c.setConversation(ctx, apiReq, lc)
+ if err != nil {
+ return err
+ }
+ c.SyncConversations(ctx, []string{conversationID})
+ return nil
+}
+
+func (c *Conversation) ResetConversationGroupAtType(ctx context.Context, conversationID string) error {
+ return c.setConversationAndSync(ctx, conversationID, &pbConversation.ConversationReq{GroupAtType: &wrapperspb.Int32Value{Value: 0}})
+}
+
+func (c *Conversation) PinConversation(ctx context.Context, conversationID string, isPinned bool) error {
+ return c.setConversationAndSync(ctx, conversationID, &pbConversation.ConversationReq{IsPinned: &wrapperspb.BoolValue{Value: isPinned}})
+}
+
+func (c *Conversation) SetOneConversationPrivateChat(ctx context.Context, conversationID string, isPrivate bool) error {
+ return c.setConversationAndSync(ctx, conversationID, &pbConversation.ConversationReq{IsPrivateChat: &wrapperspb.BoolValue{Value: isPrivate}})
+}
+
+func (c *Conversation) SetConversationMsgDestructTime(ctx context.Context, conversationID string, msgDestructTime int64) error {
+ return c.setConversationAndSync(ctx, conversationID, &pbConversation.ConversationReq{MsgDestructTime: &wrapperspb.Int64Value{Value: msgDestructTime}})
+}
+
+func (c *Conversation) SetConversationIsMsgDestruct(ctx context.Context, conversationID string, isMsgDestruct bool) error {
+ return c.setConversationAndSync(ctx, conversationID, &pbConversation.ConversationReq{IsMsgDestruct: &wrapperspb.BoolValue{Value: isMsgDestruct}})
+}
+
+func (c *Conversation) SetOneConversationBurnDuration(ctx context.Context, conversationID string, burnDuration int32) error {
+ return c.setConversationAndSync(ctx, conversationID, &pbConversation.ConversationReq{BurnDuration: &wrapperspb.Int32Value{Value: burnDuration}})
+}
+
+func (c *Conversation) SetOneConversationRecvMessageOpt(ctx context.Context, conversationID string, opt int) error {
+ return c.setConversationAndSync(ctx, conversationID, &pbConversation.ConversationReq{RecvMsgOpt: &wrapperspb.Int32Value{Value: int32(opt)}})
+}
+func (c *Conversation) SetOneConversationEx(ctx context.Context, conversationID string, ex string) error {
+ return c.setConversationAndSync(ctx, conversationID, &pbConversation.ConversationReq{Ex: &wrapperspb.StringValue{
+ Value: ex,
+ }})
+}
+func (c *Conversation) GetTotalUnreadMsgCount(ctx context.Context) (totalUnreadCount int32, err error) {
+ return c.db.GetTotalUnreadMsgCountDB(ctx)
+}
+
+func (c *Conversation) SetConversationListener(listener func() open_im_sdk_callback.OnConversationListener) {
+ c.ConversationListener = listener
+}
+
+func (c *Conversation) msgStructToLocalChatLog(src *sdk_struct.MsgStruct) *model_struct.LocalChatLog {
+ var lc model_struct.LocalChatLog
+ copier.Copy(&lc, src)
+ switch src.ContentType {
+ case constant.Text:
+ lc.Content = utils.StructToJsonString(src.TextElem)
+ case constant.Picture:
+ lc.Content = utils.StructToJsonString(src.PictureElem)
+ case constant.Sound:
+ lc.Content = utils.StructToJsonString(src.SoundElem)
+ case constant.Video:
+ lc.Content = utils.StructToJsonString(src.VideoElem)
+ case constant.File:
+ lc.Content = utils.StructToJsonString(src.FileElem)
+ case constant.AtText:
+ lc.Content = utils.StructToJsonString(src.AtTextElem)
+ case constant.Merger:
+ lc.Content = utils.StructToJsonString(src.MergeElem)
+ case constant.Card:
+ lc.Content = utils.StructToJsonString(src.CardElem)
+ case constant.Location:
+ lc.Content = utils.StructToJsonString(src.LocationElem)
+ case constant.Custom:
+ lc.Content = utils.StructToJsonString(src.CustomElem)
+ case constant.Quote:
+ lc.Content = utils.StructToJsonString(src.QuoteElem)
+ case constant.Face:
+ lc.Content = utils.StructToJsonString(src.FaceElem)
+ case constant.AdvancedText:
+ lc.Content = utils.StructToJsonString(src.AdvancedTextElem)
+ default:
+ lc.Content = utils.StructToJsonString(src.NotificationElem)
+ }
+ if src.SessionType == constant.GroupChatType || src.SessionType == constant.SuperGroupChatType {
+ lc.RecvID = src.GroupID
+ }
+ lc.AttachedInfo = utils.StructToJsonString(src.AttachedInfoElem)
+ return &lc
+}
+func (c *Conversation) msgDataToLocalChatLog(src *sdkws.MsgData) *model_struct.LocalChatLog {
+ var lc model_struct.LocalChatLog
+ copier.Copy(&lc, src)
+ lc.Content = string(src.Content)
+ if src.SessionType == constant.GroupChatType || src.SessionType == constant.SuperGroupChatType {
+ lc.RecvID = src.GroupID
+
+ }
+ return &lc
+
+}
+func (c *Conversation) msgDataToLocalErrChatLog(src *model_struct.LocalChatLog) *model_struct.LocalErrChatLog {
+ var lc model_struct.LocalErrChatLog
+ copier.Copy(&lc, src)
+ return &lc
+
+}
+
+func localChatLogToMsgStruct(dst *sdk_struct.NewMsgList, src []*model_struct.LocalChatLog) {
+ copier.Copy(dst, &src)
+
+}
+
+func (c *Conversation) updateMsgStatusAndTriggerConversation(ctx context.Context, clientMsgID, serverMsgID string, sendTime int64, status int32, s *sdk_struct.MsgStruct,
+ lc *model_struct.LocalConversation, isOnlineOnly bool) {
+ log.ZDebug(ctx, "this is test send message ", "sendTime", sendTime, "status", status, "clientMsgID", clientMsgID, "serverMsgID", serverMsgID)
+ if isOnlineOnly {
+ return
+ }
+ s.SendTime = sendTime
+ s.Status = status
+ s.ServerMsgID = serverMsgID
+ err := c.db.UpdateMessageTimeAndStatus(ctx, lc.ConversationID, clientMsgID, serverMsgID, sendTime, status)
+ if err != nil {
+ log.ZWarn(ctx, "send message update message status error", err,
+ "sendTime", sendTime, "status", status, "clientMsgID", clientMsgID, "serverMsgID", serverMsgID)
+ }
+ err = c.db.DeleteSendingMessage(ctx, lc.ConversationID, clientMsgID)
+ if err != nil {
+ log.ZWarn(ctx, "send message delete sending message error", err)
+ }
+ lc.LatestMsg = utils.StructToJsonString(s)
+ lc.LatestMsgSendTime = sendTime
+ // log.Info("", "2 send message come here", *lc)
+ _ = common.TriggerCmdUpdateConversation(ctx, common.UpdateConNode{ConID: lc.ConversationID, Action: constant.AddConOrUpLatMsg, Args: *lc}, c.GetCh())
+}
+
+func (c *Conversation) fileName(ftype string, id string) string {
+ return fmt.Sprintf("msg_%s_%s", ftype, id)
+}
+
+func (c *Conversation) checkID(ctx context.Context, s *sdk_struct.MsgStruct,
+ recvID, groupID string, options map[string]bool) (*model_struct.LocalConversation, error) {
+ if recvID == "" && groupID == "" {
+ return nil, sdkerrs.ErrArgs
+ }
+ s.SendID = c.loginUserID
+ s.SenderPlatformID = c.platformID
+ lc := &model_struct.LocalConversation{LatestMsgSendTime: s.CreateTime}
+ //æ šæŽåčįž¤čįąģåįģčŖ
æļæ¯åäŧč¯
+ if recvID == "" {
+ g, err := c.full.GetGroupInfoByGroupID(ctx, groupID)
+ if err != nil {
+ return nil, err
+ }
+ lc.ShowName = g.GroupName
+ lc.FaceURL = g.FaceURL
+ switch g.GroupType {
+ case constant.NormalGroup:
+ s.SessionType = constant.GroupChatType
+ lc.ConversationType = constant.GroupChatType
+ lc.ConversationID = c.getConversationIDBySessionType(groupID, constant.GroupChatType)
+ case constant.SuperGroup, constant.WorkingGroup:
+ s.SessionType = constant.SuperGroupChatType
+ lc.ConversationID = c.getConversationIDBySessionType(groupID, constant.SuperGroupChatType)
+ lc.ConversationType = constant.SuperGroupChatType
+ }
+ s.GroupID = groupID
+ lc.GroupID = groupID
+ gm, err := c.db.GetGroupMemberInfoByGroupIDUserID(ctx, groupID, c.loginUserID)
+ if err == nil && gm != nil {
+ if gm.Nickname != "" {
+ s.SenderNickname = gm.Nickname
+ }
+ }
+ var attachedInfo sdk_struct.AttachedInfoElem
+ attachedInfo.GroupHasReadInfo.GroupMemberCount = g.MemberCount
+ s.AttachedInfoElem = &attachedInfo
+ } else {
+ s.SessionType = constant.SingleChatType
+ s.RecvID = recvID
+ lc.ConversationID = utils.GetConversationIDByMsg(s)
+ lc.UserID = recvID
+ lc.ConversationType = constant.SingleChatType
+ oldLc, err := c.db.GetConversation(ctx, lc.ConversationID)
+ if err == nil && oldLc.IsPrivateChat {
+ options[constant.IsNotPrivate] = false
+ var attachedInfo sdk_struct.AttachedInfoElem
+ attachedInfo.IsPrivateChat = true
+ attachedInfo.BurnDuration = oldLc.BurnDuration
+ s.AttachedInfoElem = &attachedInfo
+ }
+ if err != nil {
+ t := time.Now()
+ faceUrl, name, err := c.getUserNameAndFaceURL(ctx, recvID)
+ log.ZDebug(ctx, "GetUserNameAndFaceURL", "cost time", time.Since(t))
+ if err != nil {
+ return nil, err
+ }
+ lc.FaceURL = faceUrl
+ lc.ShowName = name
+ }
+
+ }
+ return lc, nil
+}
+func (c *Conversation) getConversationIDBySessionType(sourceID string, sessionType int) string {
+ switch sessionType {
+ case constant.SingleChatType:
+ l := []string{c.loginUserID, sourceID}
+ sort.Strings(l)
+ return "si_" + strings.Join(l, "_") // single chat
+ case constant.GroupChatType:
+ return "g_" + sourceID // group chat
+ case constant.SuperGroupChatType:
+ return "sg_" + sourceID // super group chat
+ case constant.NotificationChatType:
+ return "sn_" + sourceID + "_" + c.loginUserID // server notification chat
+ }
+ return ""
+}
+func (c *Conversation) GetConversationIDBySessionType(_ context.Context, sourceID string, sessionType int) string {
+ return c.getConversationIDBySessionType(sourceID, sessionType)
+}
+func (c *Conversation) SendMessage(ctx context.Context, s *sdk_struct.MsgStruct, recvID, groupID string, p *sdkws.OfflinePushInfo, isOnlineOnly bool) (*sdk_struct.MsgStruct, error) {
+ filepathExt := func(name ...string) string {
+ for _, path := range name {
+ if ext := filepath.Ext(path); ext != "" {
+ return ext
+ }
+ }
+ return ""
+ }
+ options := make(map[string]bool, 2)
+ lc, err := c.checkID(ctx, s, recvID, groupID, options)
+ if err != nil {
+ return nil, err
+ }
+ callback, _ := ctx.Value("callback").(open_im_sdk_callback.SendMsgCallBack)
+ log.ZDebug(ctx, "before insert message is", "message", *s)
+ if !isOnlineOnly {
+ oldMessage, err := c.db.GetMessage(ctx, lc.ConversationID, s.ClientMsgID)
+ if err != nil {
+ localMessage := c.msgStructToLocalChatLog(s)
+ err := c.db.InsertMessage(ctx, lc.ConversationID, localMessage)
+ if err != nil {
+ return nil, err
+ }
+ err = c.db.InsertSendingMessage(ctx, &model_struct.LocalSendingMessages{
+ ConversationID: lc.ConversationID,
+ ClientMsgID: localMessage.ClientMsgID,
+ })
+ if err != nil {
+ return nil, err
+ }
+ } else {
+ if oldMessage.Status != constant.MsgStatusSendFailed {
+ return nil, sdkerrs.ErrMsgRepeated
+ } else {
+ s.Status = constant.MsgStatusSending
+ err = c.db.InsertSendingMessage(ctx, &model_struct.LocalSendingMessages{
+ ConversationID: lc.ConversationID,
+ ClientMsgID: s.ClientMsgID,
+ })
+ if err != nil {
+ return nil, err
+ }
+ }
+ }
+ lc.LatestMsg = utils.StructToJsonString(s)
+ log.ZDebug(ctx, "send message come here", "conversion", *lc)
+ _ = common.TriggerCmdUpdateConversation(ctx, common.UpdateConNode{ConID: lc.ConversationID, Action: constant.AddConOrUpLatMsg, Args: *lc}, c.GetCh())
+ }
+
+ var delFile []string
+ //media file handle
+ switch s.ContentType {
+ case constant.Picture:
+ if s.Status == constant.MsgStatusSendSuccess {
+ s.Content = utils.StructToJsonString(s.PictureElem)
+ break
+ }
+ var sourcePath string
+ if utils.FileExist(s.PictureElem.SourcePath) {
+ sourcePath = s.PictureElem.SourcePath
+ delFile = append(delFile, utils.FileTmpPath(s.PictureElem.SourcePath, c.DataDir))
+ } else {
+ sourcePath = utils.FileTmpPath(s.PictureElem.SourcePath, c.DataDir)
+ delFile = append(delFile, sourcePath)
+ }
+ // log.Info("", "file", sourcePath, delFile)
+ log.ZDebug(ctx, "send picture", "path", sourcePath)
+
+ res, err := c.file.UploadFile(ctx, &file.UploadFileReq{
+ ContentType: s.PictureElem.SourcePicture.Type,
+ Filepath: sourcePath,
+ Uuid: s.PictureElem.SourcePicture.UUID,
+ Name: c.fileName("picture", s.ClientMsgID) + filepathExt(s.PictureElem.SourcePicture.UUID, sourcePath),
+ Cause: "msg-picture",
+ }, NewUploadFileCallback(ctx, callback.OnProgress, s, lc.ConversationID, c.db))
+ if err != nil {
+ c.updateMsgStatusAndTriggerConversation(ctx, s.ClientMsgID, "", s.CreateTime, constant.MsgStatusSendFailed, s, lc, isOnlineOnly)
+ return nil, err
+ }
+ s.PictureElem.SourcePicture.Url = res.URL
+ s.PictureElem.BigPicture = s.PictureElem.SourcePicture
+ u, err := url.Parse(res.URL)
+ if err == nil {
+ snapshot := u.Query()
+ snapshot.Set("type", "image")
+ snapshot.Set("width", "640")
+ snapshot.Set("height", "640")
+ u.RawQuery = snapshot.Encode()
+ s.PictureElem.SnapshotPicture = &sdk_struct.PictureBaseInfo{
+ Width: 640,
+ Height: 640,
+ Url: u.String(),
+ }
+ } else {
+ log.ZError(ctx, "parse url failed", err, "url", res.URL, "err", err)
+ s.PictureElem.SnapshotPicture = s.PictureElem.SourcePicture
+ }
+ s.Content = utils.StructToJsonString(s.PictureElem)
+ case constant.Sound:
+ if s.Status == constant.MsgStatusSendSuccess {
+ s.Content = utils.StructToJsonString(s.SoundElem)
+ break
+ }
+ var sourcePath string
+ if utils.FileExist(s.SoundElem.SoundPath) {
+ sourcePath = s.SoundElem.SoundPath
+ delFile = append(delFile, utils.FileTmpPath(s.SoundElem.SoundPath, c.DataDir))
+ } else {
+ sourcePath = utils.FileTmpPath(s.SoundElem.SoundPath, c.DataDir)
+ delFile = append(delFile, sourcePath)
+ }
+ // log.Info("", "file", sourcePath, delFile)
+
+ res, err := c.file.UploadFile(ctx, &file.UploadFileReq{
+ ContentType: s.SoundElem.SoundType,
+ Filepath: sourcePath,
+ Uuid: s.SoundElem.UUID,
+ Name: c.fileName("voice", s.ClientMsgID) + filepathExt(s.SoundElem.UUID, sourcePath),
+ Cause: "msg-voice",
+ }, NewUploadFileCallback(ctx, callback.OnProgress, s, lc.ConversationID, c.db))
+ if err != nil {
+ c.updateMsgStatusAndTriggerConversation(ctx, s.ClientMsgID, "", s.CreateTime, constant.MsgStatusSendFailed, s, lc, isOnlineOnly)
+ return nil, err
+ }
+ s.SoundElem.SourceURL = res.URL
+ s.Content = utils.StructToJsonString(s.SoundElem)
+ case constant.Video:
+ if s.Status == constant.MsgStatusSendSuccess {
+ s.Content = utils.StructToJsonString(s.VideoElem)
+ break
+ }
+ var videoPath string
+ var snapPath string
+ if utils.FileExist(s.VideoElem.VideoPath) {
+ videoPath = s.VideoElem.VideoPath
+ snapPath = s.VideoElem.SnapshotPath
+ delFile = append(delFile, utils.FileTmpPath(s.VideoElem.VideoPath, c.DataDir))
+ delFile = append(delFile, utils.FileTmpPath(s.VideoElem.SnapshotPath, c.DataDir))
+ } else {
+ videoPath = utils.FileTmpPath(s.VideoElem.VideoPath, c.DataDir)
+ snapPath = utils.FileTmpPath(s.VideoElem.SnapshotPath, c.DataDir)
+ delFile = append(delFile, videoPath)
+ delFile = append(delFile, snapPath)
+ }
+ log.ZDebug(ctx, "file", "videoPath", videoPath, "snapPath", snapPath, "delFile", delFile)
+
+ var wg sync.WaitGroup
+ wg.Add(2)
+ var putErrs error
+ go func() {
+ defer wg.Done()
+ snapRes, err := c.file.UploadFile(ctx, &file.UploadFileReq{
+ ContentType: s.VideoElem.SnapshotType,
+ Filepath: snapPath,
+ Uuid: s.VideoElem.SnapshotUUID,
+ Name: c.fileName("videoSnapshot", s.ClientMsgID) + filepathExt(s.VideoElem.SnapshotUUID, snapPath),
+ Cause: "msg-video-snapshot",
+ }, nil)
+ if err != nil {
+ log.ZWarn(ctx, "upload video snapshot failed", err)
+ return
+ }
+ s.VideoElem.SnapshotURL = snapRes.URL
+ }()
+
+ go func() {
+ defer wg.Done()
+ res, err := c.file.UploadFile(ctx, &file.UploadFileReq{
+ ContentType: content_type.GetType(s.VideoElem.VideoType, filepath.Ext(s.VideoElem.VideoPath)),
+ Filepath: videoPath,
+ Uuid: s.VideoElem.VideoUUID,
+ Name: c.fileName("video", s.ClientMsgID) + filepathExt(s.VideoElem.VideoUUID, videoPath),
+ Cause: "msg-video",
+ }, NewUploadFileCallback(ctx, callback.OnProgress, s, lc.ConversationID, c.db))
+ if err != nil {
+ c.updateMsgStatusAndTriggerConversation(ctx, s.ClientMsgID, "", s.CreateTime, constant.MsgStatusSendFailed, s, lc, isOnlineOnly)
+ putErrs = err
+ }
+ if res != nil {
+ s.VideoElem.VideoURL = res.URL
+ }
+ }()
+ wg.Wait()
+ if err := putErrs; err != nil {
+ return nil, err
+ }
+ s.Content = utils.StructToJsonString(s.VideoElem)
+ case constant.File:
+ if s.Status == constant.MsgStatusSendSuccess {
+ s.Content = utils.StructToJsonString(s.FileElem)
+ break
+ }
+ name := s.FileElem.FileName
+ if name == "" {
+ name = s.FileElem.FilePath
+ }
+ if name == "" {
+ name = fmt.Sprintf("msg_file_%s.unknown", s.ClientMsgID)
+ }
+ res, err := c.file.UploadFile(ctx, &file.UploadFileReq{
+ ContentType: content_type.GetType(s.FileElem.FileType, filepath.Ext(s.FileElem.FilePath), filepath.Ext(s.FileElem.FileName)),
+ Filepath: s.FileElem.FilePath,
+ Uuid: s.FileElem.UUID,
+ Name: c.fileName("file", s.ClientMsgID) + "/" + filepath.Base(name),
+ Cause: "msg-file",
+ }, NewUploadFileCallback(ctx, callback.OnProgress, s, lc.ConversationID, c.db))
+ if err != nil {
+ c.updateMsgStatusAndTriggerConversation(ctx, s.ClientMsgID, "", s.CreateTime, constant.MsgStatusSendFailed, s, lc, isOnlineOnly)
+ return nil, err
+ }
+ s.FileElem.SourceURL = res.URL
+ s.Content = utils.StructToJsonString(s.FileElem)
+ case constant.Text:
+ s.Content = utils.StructToJsonString(s.TextElem)
+ case constant.AtText:
+ s.Content = utils.StructToJsonString(s.AtTextElem)
+ case constant.Location:
+ s.Content = utils.StructToJsonString(s.LocationElem)
+ case constant.Custom:
+ s.Content = utils.StructToJsonString(s.CustomElem)
+ case constant.Merger:
+ s.Content = utils.StructToJsonString(s.MergeElem)
+ case constant.Quote:
+ s.Content = utils.StructToJsonString(s.QuoteElem)
+ case constant.Card:
+ s.Content = utils.StructToJsonString(s.CardElem)
+ case constant.Face:
+ s.Content = utils.StructToJsonString(s.FaceElem)
+ case constant.AdvancedText:
+ s.Content = utils.StructToJsonString(s.AdvancedTextElem)
+ default:
+ return nil, sdkerrs.ErrMsgContentTypeNotSupport
+ }
+ if utils.IsContainInt(int(s.ContentType), []int{constant.Picture, constant.Sound, constant.Video, constant.File}) {
+ if !isOnlineOnly {
+ localMessage := c.msgStructToLocalChatLog(s)
+ log.ZDebug(ctx, "update message is ", "localMessage", localMessage)
+ err = c.db.UpdateMessage(ctx, lc.ConversationID, localMessage)
+ if err != nil {
+ return nil, err
+ }
+ }
+ }
+
+ return c.sendMessageToServer(ctx, s, lc, callback, delFile, p, options, isOnlineOnly)
+
+}
+func (c *Conversation) SendMessageNotOss(ctx context.Context, s *sdk_struct.MsgStruct, recvID, groupID string,
+ p *sdkws.OfflinePushInfo, isOnlineOnly bool) (*sdk_struct.MsgStruct, error) {
+ options := make(map[string]bool, 2)
+ lc, err := c.checkID(ctx, s, recvID, groupID, options)
+ if err != nil {
+ return nil, err
+ }
+ callback, _ := ctx.Value("callback").(open_im_sdk_callback.SendMsgCallBack)
+ if !isOnlineOnly {
+ oldMessage, err := c.db.GetMessage(ctx, lc.ConversationID, s.ClientMsgID)
+ if err != nil {
+ localMessage := c.msgStructToLocalChatLog(s)
+ err := c.db.InsertMessage(ctx, lc.ConversationID, localMessage)
+ if err != nil {
+ return nil, err
+ }
+ err = c.db.InsertSendingMessage(ctx, &model_struct.LocalSendingMessages{
+ ConversationID: lc.ConversationID,
+ ClientMsgID: localMessage.ClientMsgID,
+ })
+ if err != nil {
+ return nil, err
+ }
+ } else {
+ if oldMessage.Status != constant.MsgStatusSendFailed {
+ return nil, sdkerrs.ErrMsgRepeated
+ } else {
+ s.Status = constant.MsgStatusSending
+ err = c.db.InsertSendingMessage(ctx, &model_struct.LocalSendingMessages{
+ ConversationID: lc.ConversationID,
+ ClientMsgID: s.ClientMsgID,
+ })
+ if err != nil {
+ return nil, err
+ }
+ }
+ }
+ }
+ lc.LatestMsg = utils.StructToJsonString(s)
+ var delFile []string
+ switch s.ContentType {
+ case constant.Picture:
+ s.Content = utils.StructToJsonString(s.PictureElem)
+ case constant.Sound:
+ s.Content = utils.StructToJsonString(s.SoundElem)
+ case constant.Video:
+ s.Content = utils.StructToJsonString(s.VideoElem)
+ case constant.File:
+ s.Content = utils.StructToJsonString(s.FileElem)
+ case constant.Text:
+ s.Content = utils.StructToJsonString(s.TextElem)
+ case constant.AtText:
+ s.Content = utils.StructToJsonString(s.AtTextElem)
+ case constant.Location:
+ s.Content = utils.StructToJsonString(s.LocationElem)
+ case constant.Custom:
+ s.Content = utils.StructToJsonString(s.CustomElem)
+ case constant.Merger:
+ s.Content = utils.StructToJsonString(s.MergeElem)
+ case constant.Quote:
+ s.Content = utils.StructToJsonString(s.QuoteElem)
+ case constant.Card:
+ s.Content = utils.StructToJsonString(s.CardElem)
+ case constant.Face:
+ s.Content = utils.StructToJsonString(s.FaceElem)
+ case constant.AdvancedText:
+ s.Content = utils.StructToJsonString(s.AdvancedTextElem)
+ default:
+ return nil, sdkerrs.ErrMsgContentTypeNotSupport
+ }
+ if utils.IsContainInt(int(s.ContentType), []int{constant.Picture, constant.Sound, constant.Video, constant.File}) {
+ if isOnlineOnly {
+ localMessage := c.msgStructToLocalChatLog(s)
+ err = c.db.UpdateMessage(ctx, lc.ConversationID, localMessage)
+ if err != nil {
+ return nil, err
+ }
+ }
+ }
+ return c.sendMessageToServer(ctx, s, lc, callback, delFile, p, options, isOnlineOnly)
+}
+
+func (c *Conversation) sendMessageToServer(ctx context.Context, s *sdk_struct.MsgStruct, lc *model_struct.LocalConversation, callback open_im_sdk_callback.SendMsgCallBack,
+ delFile []string, offlinePushInfo *sdkws.OfflinePushInfo, options map[string]bool, isOnlineOnly bool) (*sdk_struct.MsgStruct, error) {
+ if isOnlineOnly {
+ utils.SetSwitchFromOptions(options, constant.IsHistory, false)
+ utils.SetSwitchFromOptions(options, constant.IsPersistent, false)
+ utils.SetSwitchFromOptions(options, constant.IsSenderSync, false)
+ utils.SetSwitchFromOptions(options, constant.IsConversationUpdate, false)
+ utils.SetSwitchFromOptions(options, constant.IsSenderConversationUpdate, false)
+ utils.SetSwitchFromOptions(options, constant.IsUnreadCount, false)
+ utils.SetSwitchFromOptions(options, constant.IsOfflinePush, false)
+ }
+ //Protocol conversion
+ var wsMsgData sdkws.MsgData
+ copier.Copy(&wsMsgData, s)
+ wsMsgData.AttachedInfo = utils.StructToJsonString(s.AttachedInfoElem)
+ wsMsgData.Content = []byte(s.Content)
+ wsMsgData.CreateTime = s.CreateTime
+ wsMsgData.SendTime = 0
+ wsMsgData.Options = options
+ if wsMsgData.ContentType == constant.AtText {
+ wsMsgData.AtUserIDList = s.AtTextElem.AtUserList
+ }
+ wsMsgData.OfflinePushInfo = offlinePushInfo
+ s.Content = ""
+ var sendMsgResp sdkws.UserSendMsgResp
+
+ err := c.LongConnMgr.SendReqWaitResp(ctx, &wsMsgData, constant.SendMsg, &sendMsgResp)
+ if err != nil {
+ //if send message network timeout need to double-check message has received by db.
+ if sdkerrs.ErrNetworkTimeOut.Is(err) && !isOnlineOnly {
+ oldMessage, _ := c.db.GetMessage(ctx, lc.ConversationID, s.ClientMsgID)
+ if oldMessage.Status == constant.MsgStatusSendSuccess {
+ sendMsgResp.SendTime = oldMessage.SendTime
+ sendMsgResp.ClientMsgID = oldMessage.ClientMsgID
+ sendMsgResp.ServerMsgID = oldMessage.ServerMsgID
+ } else {
+ log.ZError(ctx, "send msg to server failed", err, "message", s)
+ c.updateMsgStatusAndTriggerConversation(ctx, s.ClientMsgID, "", s.CreateTime,
+ constant.MsgStatusSendFailed, s, lc, isOnlineOnly)
+ return s, err
+ }
+ } else {
+ log.ZError(ctx, "send msg to server failed", err, "message", s)
+ c.updateMsgStatusAndTriggerConversation(ctx, s.ClientMsgID, "", s.CreateTime,
+ constant.MsgStatusSendFailed, s, lc, isOnlineOnly)
+ return s, err
+ }
+ }
+ s.SendTime = sendMsgResp.SendTime
+ s.Status = constant.MsgStatusSendSuccess
+ s.ServerMsgID = sendMsgResp.ServerMsgID
+ go func() {
+ //remove media cache file
+ for _, v := range delFile {
+ err := os.Remove(v)
+ if err != nil {
+ // log.Error("", "remove failed,", err.Error(), v)
+ }
+ // log.Debug("", "remove file: ", v)
+ }
+ c.updateMsgStatusAndTriggerConversation(ctx, sendMsgResp.ClientMsgID, sendMsgResp.ServerMsgID, sendMsgResp.SendTime, constant.MsgStatusSendSuccess, s, lc, isOnlineOnly)
+ }()
+ return s, nil
+
+}
+
+func (c *Conversation) FindMessageList(ctx context.Context, req []*sdk_params_callback.ConversationArgs) (*sdk_params_callback.FindMessageListCallback, error) {
+ var r sdk_params_callback.FindMessageListCallback
+ type tempConversationAndMessageList struct {
+ conversation *model_struct.LocalConversation
+ msgIDList []string
+ }
+ var s []*tempConversationAndMessageList
+ for _, conversationsArgs := range req {
+ localConversation, err := c.db.GetConversation(ctx, conversationsArgs.ConversationID)
+ if err != nil {
+ log.ZError(ctx, "GetConversation err", err, "conversationsArgs", conversationsArgs)
+ } else {
+ t := new(tempConversationAndMessageList)
+ t.conversation = localConversation
+ t.msgIDList = conversationsArgs.ClientMsgIDList
+ s = append(s, t)
+ }
+ }
+ for _, v := range s {
+ messages, err := c.db.GetMessagesByClientMsgIDs(ctx, v.conversation.ConversationID, v.msgIDList)
+ if err == nil {
+ var tempMessageList []*sdk_struct.MsgStruct
+ for _, message := range messages {
+ temp := sdk_struct.MsgStruct{}
+ temp.ClientMsgID = message.ClientMsgID
+ temp.ServerMsgID = message.ServerMsgID
+ temp.CreateTime = message.CreateTime
+ temp.SendTime = message.SendTime
+ temp.SessionType = message.SessionType
+ temp.SendID = message.SendID
+ temp.RecvID = message.RecvID
+ temp.MsgFrom = message.MsgFrom
+ temp.ContentType = message.ContentType
+ temp.SenderPlatformID = message.SenderPlatformID
+ temp.SenderNickname = message.SenderNickname
+ temp.SenderFaceURL = message.SenderFaceURL
+ temp.Content = message.Content
+ temp.Seq = message.Seq
+ temp.IsRead = message.IsRead
+ temp.Status = message.Status
+ temp.AttachedInfo = message.AttachedInfo
+ temp.Ex = message.Ex
+ temp.LocalEx = message.LocalEx
+ err := c.msgHandleByContentType(&temp)
+ if err != nil {
+ log.ZError(ctx, "msgHandleByContentType err", err, "message", temp)
+ continue
+ }
+ switch message.SessionType {
+ case constant.GroupChatType:
+ fallthrough
+ case constant.SuperGroupChatType:
+ temp.GroupID = temp.RecvID
+ temp.RecvID = c.loginUserID
+ }
+ tempMessageList = append(tempMessageList, &temp)
+ }
+ findResultItem := sdk_params_callback.SearchByConversationResult{}
+ findResultItem.ConversationID = v.conversation.ConversationID
+ findResultItem.FaceURL = v.conversation.FaceURL
+ findResultItem.ShowName = v.conversation.ShowName
+ findResultItem.ConversationType = v.conversation.ConversationType
+ findResultItem.MessageList = tempMessageList
+ findResultItem.MessageCount = len(findResultItem.MessageList)
+ r.FindResultItems = append(r.FindResultItems, &findResultItem)
+ r.TotalCount += findResultItem.MessageCount
+ } else {
+ log.ZError(ctx, "GetMessagesByClientMsgIDs err", err, "conversationID", v.conversation.ConversationID, "msgIDList", v.msgIDList)
+ }
+ }
+ return &r, nil
+
+}
+
+func (c *Conversation) GetAdvancedHistoryMessageList(ctx context.Context, req sdk_params_callback.GetAdvancedHistoryMessageListParams) (*sdk_params_callback.GetAdvancedHistoryMessageListCallback, error) {
+ result, err := c.getAdvancedHistoryMessageList(ctx, req, false)
+ if err != nil {
+ return nil, err
+ }
+ if len(result.MessageList) == 0 {
+ s := make([]*sdk_struct.MsgStruct, 0)
+ result.MessageList = s
+ }
+ return result, nil
+}
+
+func (c *Conversation) GetAdvancedHistoryMessageListReverse(ctx context.Context, req sdk_params_callback.GetAdvancedHistoryMessageListParams) (*sdk_params_callback.GetAdvancedHistoryMessageListCallback, error) {
+ result, err := c.getAdvancedHistoryMessageList(ctx, req, true)
+ if err != nil {
+ return nil, err
+ }
+ if len(result.MessageList) == 0 {
+ s := make([]*sdk_struct.MsgStruct, 0)
+ result.MessageList = s
+ }
+ return result, nil
+}
+
+func (c *Conversation) RevokeMessage(ctx context.Context, conversationID, clientMsgID string) error {
+ return c.revokeOneMessage(ctx, conversationID, clientMsgID)
+}
+
+func (c *Conversation) TypingStatusUpdate(ctx context.Context, recvID, msgTip string) error {
+ return c.typingStatusUpdate(ctx, recvID, msgTip)
+}
+
+// funcation (c *Conversation) MarkMessageAsReadByConID(ctx context.Context, conversationID string, msgIDList []string) error {
+// if len(msgIDList) == 0 {
+// _ = c.setOneConversationUnread(ctx, conversationID, 0)
+// _ = common.TriggerCmdUpdateConversation(ctx, common.UpdateConNode{ConID: conversationID, Action: constant.UnreadCountSetZero}, c.GetCh())
+// _ = common.TriggerCmdUpdateConversation(ctx, common.UpdateConNode{ConID: conversationID, Action: constant.ConChange, Args: []string{conversationID}}, c.GetCh())
+// return nil
+// }
+// return nil
+
+// }
+
+// deprecated
+// funcation (c *Conversation) MarkGroupMessageHasRead(ctx context.Context, groupID string) {
+// conversationID := c.getConversationIDBySessionType(groupID, constant.GroupChatType)
+// _ = c.setOneConversationUnread(ctx, conversationID, 0)
+// _ = common.TriggerCmdUpdateConversation(ctx, common.UpdateConNode{ConID: conversationID, Action: constant.UnreadCountSetZero}, c.GetCh())
+// _ = common.TriggerCmdUpdateConversation(ctx, common.UpdateConNode{ConID: conversationID, Action: constant.ConChange, Args: []string{conversationID}}, c.GetCh())
+// }
+
+// read draw
+func (c *Conversation) MarkConversationMessageAsRead(ctx context.Context, conversationID string) error {
+ return c.markConversationMessageAsRead(ctx, conversationID)
+}
+
+func (c *Conversation) MarkMessagesAsReadByMsgID(ctx context.Context, conversationID string, clientMsgIDs []string) error {
+ return c.markMessagesAsReadByMsgID(ctx, conversationID, clientMsgIDs)
+}
+
+// delete
+func (c *Conversation) DeleteMessageFromLocalStorage(ctx context.Context, conversationID string, clientMsgID string) error {
+ return c.deleteMessageFromLocal(ctx, conversationID, clientMsgID)
+}
+
+func (c *Conversation) DeleteMessage(ctx context.Context, conversationID string, clientMsgID string) error {
+ return c.deleteMessage(ctx, conversationID, clientMsgID)
+}
+
+func (c *Conversation) DeleteAllMsgFromLocalAndSvr(ctx context.Context) error {
+ return c.deleteAllMsgFromLocalAndSvr(ctx)
+}
+
+func (c *Conversation) DeleteAllMessageFromLocalStorage(ctx context.Context) error {
+ return c.deleteAllMsgFromLocal(ctx, true)
+}
+
+func (c *Conversation) ClearConversationAndDeleteAllMsg(ctx context.Context, conversationID string) error {
+ return c.clearConversationFromLocalAndSvr(ctx, conversationID, c.db.ClearConversation)
+}
+
+func (c *Conversation) DeleteConversationAndDeleteAllMsg(ctx context.Context, conversationID string) error {
+ return c.clearConversationFromLocalAndSvr(ctx, conversationID, c.db.ResetConversation)
+}
+
+// insert
+func (c *Conversation) InsertSingleMessageToLocalStorage(ctx context.Context, s *sdk_struct.MsgStruct, recvID, sendID string) (*sdk_struct.MsgStruct, error) {
+ if recvID == "" || sendID == "" {
+ return nil, sdkerrs.ErrArgs
+ }
+ var conversation model_struct.LocalConversation
+ if sendID != c.loginUserID {
+ faceUrl, name, err := c.getUserNameAndFaceURL(ctx, sendID)
+ if err != nil {
+ //log.Error(operationID, "GetUserNameAndFaceURL err", err.Error(), sendID)
+ }
+ s.SenderFaceURL = faceUrl
+ s.SenderNickname = name
+ conversation.FaceURL = faceUrl
+ conversation.ShowName = name
+ conversation.UserID = sendID
+ conversation.ConversationID = c.getConversationIDBySessionType(sendID, constant.SingleChatType)
+
+ } else {
+ conversation.UserID = recvID
+ conversation.ConversationID = c.getConversationIDBySessionType(recvID, constant.SingleChatType)
+ _, err := c.db.GetConversation(ctx, conversation.ConversationID)
+ if err != nil {
+ faceUrl, name, err := c.getUserNameAndFaceURL(ctx, recvID)
+ if err != nil {
+ return nil, err
+ }
+ conversation.FaceURL = faceUrl
+ conversation.ShowName = name
+ }
+ }
+
+ s.SendID = sendID
+ s.RecvID = recvID
+ s.ClientMsgID = utils.GetMsgID(s.SendID)
+ s.SendTime = utils.GetCurrentTimestampByMill()
+ s.SessionType = constant.SingleChatType
+ s.Status = constant.MsgStatusSendSuccess
+ localMessage := c.msgStructToLocalChatLog(s)
+ conversation.LatestMsg = utils.StructToJsonString(s)
+ conversation.ConversationType = constant.SingleChatType
+ conversation.LatestMsgSendTime = s.SendTime
+ err := c.insertMessageToLocalStorage(ctx, conversation.ConversationID, localMessage)
+ if err != nil {
+ return nil, err
+ }
+ _ = common.TriggerCmdUpdateConversation(ctx, common.UpdateConNode{ConID: conversation.ConversationID, Action: constant.AddConOrUpLatMsg, Args: conversation}, c.GetCh())
+ return s, nil
+
+}
+
+func (c *Conversation) InsertGroupMessageToLocalStorage(ctx context.Context, s *sdk_struct.MsgStruct, groupID, sendID string) (*sdk_struct.MsgStruct, error) {
+ if groupID == "" || sendID == "" {
+ return nil, sdkerrs.ErrArgs
+ }
+ var conversation model_struct.LocalConversation
+ var err error
+ _, conversation.ConversationType, err = c.getConversationTypeByGroupID(ctx, groupID)
+ if err != nil {
+ return nil, err
+ }
+
+ conversation.ConversationID = c.getConversationIDBySessionType(groupID, int(conversation.ConversationType))
+ if sendID != c.loginUserID {
+ faceUrl, name, err := c.getUserNameAndFaceURL(ctx, sendID)
+ if err != nil {
+ // log.Error("", "getUserNameAndFaceUrlByUid err", err.Error(), sendID)
+ }
+ s.SenderFaceURL = faceUrl
+ s.SenderNickname = name
+ }
+ s.SendID = sendID
+ s.RecvID = groupID
+ s.GroupID = groupID
+ s.ClientMsgID = utils.GetMsgID(s.SendID)
+ s.SendTime = utils.GetCurrentTimestampByMill()
+ s.SessionType = conversation.ConversationType
+ s.Status = constant.MsgStatusSendSuccess
+ localMessage := c.msgStructToLocalChatLog(s)
+ conversation.LatestMsg = utils.StructToJsonString(s)
+ conversation.LatestMsgSendTime = s.SendTime
+ conversation.FaceURL = s.SenderFaceURL
+ conversation.ShowName = s.SenderNickname
+ err = c.insertMessageToLocalStorage(ctx, conversation.ConversationID, localMessage)
+ if err != nil {
+ return nil, err
+ }
+ _ = common.TriggerCmdUpdateConversation(ctx, common.UpdateConNode{ConID: conversation.ConversationID, Action: constant.AddConOrUpLatMsg, Args: conversation}, c.GetCh())
+ return s, nil
+
+}
+
+func (c *Conversation) SearchLocalMessages(ctx context.Context, searchParam *sdk_params_callback.SearchLocalMessagesParams) (*sdk_params_callback.SearchLocalMessagesCallback, error) {
+ searchParam.KeywordList = utils.TrimStringList(searchParam.KeywordList)
+ return c.searchLocalMessages(ctx, searchParam)
+
+}
+func (c *Conversation) SetMessageLocalEx(ctx context.Context, conversationID string, clientMsgID string, localEx string) error {
+ return c.db.UpdateColumnsMessage(ctx, conversationID, clientMsgID, map[string]interface{}{"local_ex": localEx})
+}
+
+func (c *Conversation) initBasicInfo(ctx context.Context, message *sdk_struct.MsgStruct, msgFrom, contentType int32) error {
+ message.CreateTime = utils.GetCurrentTimestampByMill()
+ message.SendTime = message.CreateTime
+ message.IsRead = false
+ message.Status = constant.MsgStatusSending
+ message.SendID = c.loginUserID
+ userInfo, err := c.db.GetLoginUser(ctx, c.loginUserID)
+ if err != nil {
+ return err
+ } else {
+ message.SenderFaceURL = userInfo.FaceURL
+ message.SenderNickname = userInfo.Nickname
+ }
+ ClientMsgID := utils.GetMsgID(message.SendID)
+ message.ClientMsgID = ClientMsgID
+ message.MsgFrom = msgFrom
+ message.ContentType = contentType
+ message.SenderPlatformID = c.platformID
+ message.IsExternalExtensions = c.IsExternalExtensions
+ return nil
+}
+
+//// å 餿Ŧå°åæåĄå¨
+//// å 餿Ŧå°įč¯ä¸į¨æšæåĄå¨įæ°æŽ
+//// å 餿åĄå¨įč¯īŧéčĻææŦå°įæļæ¯įļææšæå é¤
+//funcation (c *Conversation) DeleteConversationFromLocalAndSvr(ctx context.Context, conversationID string) error {
+// // Use conversationID to remove conversations and messages from the server first
+// err := c.clearConversationFromSvr(ctx, conversationID)
+// if err != nil {
+// return err
+// }
+// return c.deleteConversation(ctx, conversationID)
+//}
+
+func (c *Conversation) getConversationTypeByGroupID(ctx context.Context, groupID string) (conversationID string, conversationType int32, err error) {
+ g, err := c.full.GetGroupInfoByGroupID(ctx, groupID)
+ if err != nil {
+ return "", 0, utils.Wrap(err, "get group info error")
+ }
+ switch g.GroupType {
+ case constant.NormalGroup:
+ return c.getConversationIDBySessionType(groupID, constant.GroupChatType), constant.GroupChatType, nil
+ case constant.SuperGroup, constant.WorkingGroup:
+ return c.getConversationIDBySessionType(groupID, constant.SuperGroupChatType), constant.SuperGroupChatType, nil
+ default:
+ return "", 0, sdkerrs.ErrGroupType
+ }
+}
+
+func (c *Conversation) SetMessageReactionExtensions(ctx context.Context, s *sdk_struct.MsgStruct, req []*server_api_params.KeyValue) ([]*server_api_params.ExtensionResult, error) {
+ return c.setMessageReactionExtensions(ctx, s, req)
+
+}
+
+func (c *Conversation) AddMessageReactionExtensions(ctx context.Context, s *sdk_struct.MsgStruct, reactionExtensionList []*server_api_params.KeyValue) ([]*server_api_params.ExtensionResult, error) {
+ return c.addMessageReactionExtensions(ctx, s, reactionExtensionList)
+
+}
+
+func (c *Conversation) DeleteMessageReactionExtensions(ctx context.Context, s *sdk_struct.MsgStruct, reactionExtensionKeyList []string) ([]*server_api_params.ExtensionResult, error) {
+ return c.deleteMessageReactionExtensions(ctx, s, reactionExtensionKeyList)
+}
+
+func (c *Conversation) GetMessageListReactionExtensions(ctx context.Context, conversationID string, messageList []*sdk_struct.MsgStruct) ([]*server_api_params.SingleMessageExtensionResult, error) {
+ return c.getMessageListReactionExtensions(ctx, conversationID, messageList)
+
+}
+func (c *Conversation) SearchConversation(ctx context.Context, searchParam string) ([]*server_api_params.Conversation, error) {
+ // Check if search parameter is empty
+ if searchParam == "" {
+ return nil, sdkerrs.ErrArgs.WrapMsg("search parameter cannot be empty")
+ }
+
+ // Perform the search in your database or data source
+ // This is a placeholder for the actual database call
+ conversations, err := c.db.SearchConversations(ctx, searchParam)
+ if err != nil {
+ // Handle any errors that occurred during the search
+ return nil, err
+ }
+ apiConversations := make([]*server_api_params.Conversation, len(conversations))
+ for i, localConv := range conversations {
+ // Create new server_api_params.Conversation and map fields from localConv
+ apiConv := &server_api_params.Conversation{
+ ConversationID: localConv.ConversationID,
+ ConversationType: localConv.ConversationType,
+ UserID: localConv.UserID,
+ GroupID: localConv.GroupID,
+ RecvMsgOpt: localConv.RecvMsgOpt,
+ UnreadCount: localConv.UnreadCount,
+ DraftTextTime: localConv.DraftTextTime,
+ IsPinned: localConv.IsPinned,
+ IsPrivateChat: localConv.IsPrivateChat,
+ BurnDuration: localConv.BurnDuration,
+ GroupAtType: localConv.GroupAtType,
+ IsNotInGroup: localConv.IsNotInGroup,
+ UpdateUnreadCountTime: localConv.UpdateUnreadCountTime,
+ AttachedInfo: localConv.AttachedInfo,
+ Ex: localConv.Ex,
+ }
+ apiConversations[i] = apiConv
+ }
+ // Return the list of conversations
+ return apiConversations, nil
+}
+
+/**
+**Get some reaction extensions in reactionExtensionKeyList of message list
+ */
+//funcation (c *Conversation) GetMessageListSomeReactionExtensions(ctx context.Context, messageList, reactionExtensionKeyList, operationID string) {
+// var messagelist []*sdk_struct.MsgStruct
+// common.JsonUnmarshalAndArgsValidate(messageList, &messagelist, callback, operationID)
+// var list []string
+// common.JsonUnmarshalAndArgsValidate(reactionExtensionKeyList, &list, callback, operationID)
+// result := c.getMessageListSomeReactionExtensions(callback, messagelist, list, operationID)
+// callback.OnSuccess(utils.StructToJsonString(result))
+// log.NewInfo(operationID, utils.GetSelfFuncName(), "callback: ", utils.StructToJsonString(result))
+//}
+//funcation (c *Conversation) SetTypeKeyInfo(ctx context.Context, message, typeKey, ex string, isCanRepeat bool, operationID string) {
+// s := sdk_struct.MsgStruct{}
+// common.JsonUnmarshalAndArgsValidate(message, &s, callback, operationID)
+// result := c.setTypeKeyInfo(callback, &s, typeKey, ex, isCanRepeat, operationID)
+// callback.OnSuccess(utils.StructToJsonString(result))
+// log.NewInfo(operationID, utils.GetSelfFuncName(), "callback: ", utils.StructToJsonString(result))
+//}
+//funcation (c *Conversation) GetTypeKeyListInfo(ctx context.Context, message, typeKeyList, operationID string) {
+// s := sdk_struct.MsgStruct{}
+// common.JsonUnmarshalAndArgsValidate(message, &s, callback, operationID)
+// var list []string
+// common.JsonUnmarshalAndArgsValidate(typeKeyList, &list, callback, operationID)
+// result := c.getTypeKeyListInfo(callback, &s, list, operationID)
+// callback.OnSuccess(utils.StructToJsonString(result))
+// log.NewInfo(operationID, utils.GetSelfFuncName(), "callback: ", utils.StructToJsonString(result))
+//}
+//funcation (c *Conversation) GetAllTypeKeyInfo(ctx context.Context, message, operationID string) {
+// s := sdk_struct.MsgStruct{}
+// common.JsonUnmarshalAndArgsValidate(message, &s, callback, operationID)
+// result := c.getAllTypeKeyInfo(callback, &s, operationID)
+// callback.OnSuccess(utils.StructToJsonString(result))
+// log.NewInfo(operationID, utils.GetSelfFuncName(), "callback: ", utils.StructToJsonString(result))
+//}
diff --git a/go/chao-sdk-core/internal/conversation_msg/sync.go b/go/chao-sdk-core/internal/conversation_msg/sync.go
new file mode 100644
index 0000000..b2a2896
--- /dev/null
+++ b/go/chao-sdk-core/internal/conversation_msg/sync.go
@@ -0,0 +1,148 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package conversation_msg
+
+import (
+ "context"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/common"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/syncer"
+ "github.com/openimsdk/tools/utils/datautil"
+ "time"
+
+ "github.com/openimsdk/tools/log"
+)
+
+func (c *Conversation) SyncConversationsAndTriggerCallback(ctx context.Context, conversationsOnServer []*model_struct.LocalConversation) error {
+ conversationsOnLocal, err := c.db.GetAllConversations(ctx)
+ if err != nil {
+ return err
+ }
+ if err := c.batchAddFaceURLAndName(ctx, conversationsOnServer...); err != nil {
+ return err
+ }
+ if err = c.conversationSyncer.Sync(ctx, conversationsOnServer, conversationsOnLocal, func(ctx context.Context, state int, server, local *model_struct.LocalConversation) error {
+ if state == syncer.Update || state == syncer.Insert {
+ c.doUpdateConversation(common.Cmd2Value{Value: common.UpdateConNode{ConID: server.ConversationID, Action: constant.ConChange, Args: []string{server.ConversationID}}})
+ }
+ return nil
+ }, true); err != nil {
+ return err
+ }
+ return nil
+}
+
+func (c *Conversation) SyncConversations(ctx context.Context, conversationIDs []string) error {
+ conversationsOnServer, err := c.getServerConversationsByIDs(ctx, conversationIDs)
+ if err != nil {
+ return err
+ }
+ return c.SyncConversationsAndTriggerCallback(ctx, conversationsOnServer)
+}
+
+func (c *Conversation) SyncAllConversations(ctx context.Context) error {
+ ccTime := time.Now()
+ conversationsOnServer, err := c.getServerConversationList(ctx)
+ if err != nil {
+ return err
+ }
+ log.ZDebug(ctx, "get server cost time", "cost time", time.Since(ccTime), "conversation on server", conversationsOnServer)
+ return c.SyncConversationsAndTriggerCallback(ctx, conversationsOnServer)
+}
+
+func (c *Conversation) SyncAllConversationHashReadSeqs(ctx context.Context) error {
+ log.ZDebug(ctx, "start SyncConversationHashReadSeqs")
+ seqs, err := c.getServerHasReadAndMaxSeqs(ctx)
+ if err != nil {
+ return err
+ }
+ if len(seqs) == 0 {
+ return nil
+ }
+ var conversationChangedIDs []string
+ var conversationIDsNeedSync []string
+
+ conversationsOnLocal, err := c.db.GetAllConversations(ctx)
+ if err != nil {
+ log.ZWarn(ctx, "get all conversations err", err)
+ return err
+ }
+ conversationsOnLocalMap := datautil.SliceToMap(conversationsOnLocal, func(e *model_struct.LocalConversation) string {
+ return e.ConversationID
+ })
+ for conversationID, v := range seqs {
+ var unreadCount int32
+ c.maxSeqRecorder.Set(conversationID, v.MaxSeq)
+ if v.MaxSeq-v.HasReadSeq < 0 {
+ unreadCount = 0
+ log.ZWarn(ctx, "unread count is less than 0", nil, "conversationID",
+ conversationID, "maxSeq", v.MaxSeq, "hasReadSeq", v.HasReadSeq)
+ } else {
+ unreadCount = int32(v.MaxSeq - v.HasReadSeq)
+ }
+ if conversation, ok := conversationsOnLocalMap[conversationID]; ok {
+ if conversation.UnreadCount != unreadCount || conversation.HasReadSeq != v.HasReadSeq {
+ if err := c.db.UpdateColumnsConversation(ctx, conversationID, map[string]interface{}{"unread_count": unreadCount, "has_read_seq": v.HasReadSeq}); err != nil {
+ log.ZWarn(ctx, "UpdateColumnsConversation err", err, "conversationID", conversationID)
+ continue
+ }
+ conversationChangedIDs = append(conversationChangedIDs, conversationID)
+ }
+ } else {
+ conversationIDsNeedSync = append(conversationIDsNeedSync, conversationID)
+ }
+
+ }
+ if len(conversationIDsNeedSync) > 0 {
+ conversationsOnServer, err := c.getServerConversationsByIDs(ctx, conversationIDsNeedSync)
+ if err != nil {
+ log.ZWarn(ctx, "getServerConversationsByIDs err", err, "conversationIDs", conversationIDsNeedSync)
+ return err
+ }
+ if err := c.batchAddFaceURLAndName(ctx, conversationsOnServer...); err != nil {
+ log.ZWarn(ctx, "batchAddFaceURLAndName err", err, "conversationsOnServer", conversationsOnServer)
+ return err
+ }
+
+ for _, conversation := range conversationsOnServer {
+ var unreadCount int32
+ v, ok := seqs[conversation.ConversationID]
+ if !ok {
+ continue
+ }
+ if v.MaxSeq-v.HasReadSeq < 0 {
+ unreadCount = 0
+ log.ZWarn(ctx, "unread count is less than 0", nil, "server seq", v, "conversation", conversation)
+ } else {
+ unreadCount = int32(v.MaxSeq - v.HasReadSeq)
+ }
+ conversation.UnreadCount = unreadCount
+ conversation.HasReadSeq = v.HasReadSeq
+ }
+ err = c.db.BatchInsertConversationList(ctx, conversationsOnServer)
+ if err != nil {
+ log.ZWarn(ctx, "BatchInsertConversationList err", err, "conversationsOnServer", conversationsOnServer)
+ }
+
+ }
+
+ log.ZDebug(ctx, "update conversations", "conversations", conversationChangedIDs)
+ if len(conversationChangedIDs) > 0 {
+ common.TriggerCmdUpdateConversation(ctx, common.UpdateConNode{Action: constant.ConChange, Args: conversationChangedIDs}, c.GetCh())
+ common.TriggerCmdUpdateConversation(ctx, common.UpdateConNode{Action: constant.TotalUnreadMessageChanged}, c.GetCh())
+ }
+ return nil
+}
diff --git a/go/chao-sdk-core/internal/file/bitmap.go b/go/chao-sdk-core/internal/file/bitmap.go
new file mode 100644
index 0000000..edd0ab1
--- /dev/null
+++ b/go/chao-sdk-core/internal/file/bitmap.go
@@ -0,0 +1,89 @@
+// Copyright Š 2023 OpenIM open source community. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package file
+
+func NewBitmap(size int) *Bitmap {
+ data := make([]uint64, (size+63)/64)
+ return &Bitmap{data: data, size: size}
+}
+
+func ParseBitmap(p []byte, size int) *Bitmap {
+ data := make([]uint64, len(p)/8)
+ for i := range data {
+ data[i] = uint64(p[i*8])<<56 |
+ uint64(p[i*8+1])<<48 |
+ uint64(p[i*8+2])<<40 |
+ uint64(p[i*8+3])<<32 |
+ uint64(p[i*8+4])<<24 |
+ uint64(p[i*8+5])<<16 |
+ uint64(p[i*8+6])<<8 |
+ uint64(p[i*8+7])
+ }
+ return &Bitmap{
+ data: data,
+ size: size,
+ }
+}
+
+type Bitmap struct {
+ data []uint64
+ size int
+}
+
+func (b *Bitmap) Set(index int) {
+ if index < 0 || index >= b.size {
+ panic("out of range")
+ }
+ wordIndex := index / 64
+ bitIndex := uint(index % 64)
+ b.data[wordIndex] |= 1 << bitIndex
+}
+
+func (b *Bitmap) Clear(index int) {
+ if index < 0 || index >= b.size {
+ panic("out of range")
+ }
+ wordIndex := index / 64
+ bitIndex := uint(index % 64)
+ b.data[wordIndex] &= ^(1 << bitIndex)
+}
+
+func (b *Bitmap) Get(index int) bool {
+ if index < 0 || index >= b.size {
+ panic("out of range")
+ }
+ wordIndex := index / 64
+ bitIndex := uint(index % 64)
+ return (b.data[wordIndex] & (1 << bitIndex)) != 0
+}
+
+func (b *Bitmap) Size() int {
+ return b.size
+}
+
+func (b *Bitmap) Serialize() []byte {
+ p := make([]byte, len(b.data)*8)
+ for i, word := range b.data {
+ p[i*8] = byte(word >> 56)
+ p[i*8+1] = byte(word >> 48)
+ p[i*8+2] = byte(word >> 40)
+ p[i*8+3] = byte(word >> 32)
+ p[i*8+4] = byte(word >> 24)
+ p[i*8+5] = byte(word >> 16)
+ p[i*8+6] = byte(word >> 8)
+ p[i*8+7] = byte(word)
+ }
+ return p
+}
diff --git a/go/chao-sdk-core/internal/file/cb.go b/go/chao-sdk-core/internal/file/cb.go
new file mode 100644
index 0000000..f7cb062
--- /dev/null
+++ b/go/chao-sdk-core/internal/file/cb.go
@@ -0,0 +1,62 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package file
+
+import "fmt"
+
+type UploadFileCallback interface {
+ Open(size int64) // æäģļæåŧį大å°
+ PartSize(partSize int64, num int) // åį大å°,æ°é
+ HashPartProgress(index int, size int64, partHash string) // æ¯ååįįhashåŧ
+ HashPartComplete(partsHash string, fileHash string) // åååŽæīŧæåĄį̝æ 莰hashåæäģļæįģhash
+ UploadID(uploadID string) // ä¸äŧ ID
+ UploadPartComplete(index int, partSize int64, partHash string) // ä¸äŧ åįčŋåēĻ
+ UploadComplete(fileSize int64, streamSize int64, storageSize int64) // æ´äŊčŋåēĻ
+ Complete(size int64, url string, typ int) // ä¸äŧ åŽæ
+}
+
+type emptyUploadCallback struct{}
+
+func (e emptyUploadCallback) Open(size int64) {
+ fmt.Println("Callback Open:", size)
+}
+
+func (e emptyUploadCallback) PartSize(partSize int64, num int) {
+ fmt.Println("Callback PartSize:", partSize, num)
+}
+
+func (e emptyUploadCallback) HashPartProgress(index int, size int64, partHash string) {
+ //fmt.Println("Callback HashPartProgress:", index, size, partHash)
+}
+
+func (e emptyUploadCallback) HashPartComplete(partsHash string, fileHash string) {
+ fmt.Println("Callback HashPartComplete:", partsHash, fileHash)
+}
+
+func (e emptyUploadCallback) UploadID(uploadID string) {
+ fmt.Println("Callback UploadID:", uploadID)
+}
+
+func (e emptyUploadCallback) UploadPartComplete(index int, partSize int64, partHash string) {
+ fmt.Println("Callback UploadPartComplete:", index, partSize, partHash)
+}
+
+func (e emptyUploadCallback) UploadComplete(fileSize int64, streamSize int64, storageSize int64) {
+ fmt.Println("Callback UploadComplete:", fileSize, streamSize, storageSize)
+}
+
+func (e emptyUploadCallback) Complete(size int64, url string, typ int) {
+ fmt.Println("Callback Complete:", size, url, typ)
+}
diff --git a/go/chao-sdk-core/internal/file/file.go b/go/chao-sdk-core/internal/file/file.go
new file mode 100644
index 0000000..ea81213
--- /dev/null
+++ b/go/chao-sdk-core/internal/file/file.go
@@ -0,0 +1,24 @@
+// Copyright Š 2023 OpenIM open source community. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package file
+
+import "io"
+
+type ReadFile interface {
+ io.Reader
+ io.Closer
+ Size() int64
+ StartSeek(whence int) error
+}
diff --git a/go/chao-sdk-core/internal/file/file_default.go b/go/chao-sdk-core/internal/file/file_default.go
new file mode 100644
index 0000000..0bcc259
--- /dev/null
+++ b/go/chao-sdk-core/internal/file/file_default.go
@@ -0,0 +1,73 @@
+// Copyright Š 2023 OpenIM open source community. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build !js
+
+package file
+
+import (
+ "bufio"
+ "io"
+ "os"
+)
+
+const readBufferSize = 1024 * 1024 * 5 // 5mb
+
+func Open(req *UploadFileReq) (ReadFile, error) {
+ file, err := os.Open(req.Filepath)
+ if err != nil {
+ return nil, err
+ }
+ info, err := file.Stat()
+ if err != nil {
+ _ = file.Close()
+ return nil, err
+ }
+ df := &defaultFile{
+ file: file,
+ info: info,
+ }
+ df.resetReaderBuffer()
+ return df, nil
+}
+
+type defaultFile struct {
+ file *os.File
+ info os.FileInfo
+ reader io.Reader
+}
+
+func (d *defaultFile) resetReaderBuffer() {
+ d.reader = bufio.NewReaderSize(d.file, readBufferSize)
+}
+
+func (d *defaultFile) Read(p []byte) (n int, err error) {
+ return d.reader.Read(p)
+}
+
+func (d *defaultFile) Close() error {
+ return d.file.Close()
+}
+
+func (d *defaultFile) StartSeek(whence int) error {
+ if _, err := d.file.Seek(io.SeekStart, whence); err != nil {
+ return err
+ }
+ d.resetReaderBuffer()
+ return nil
+}
+
+func (d *defaultFile) Size() int64 {
+ return d.info.Size()
+}
diff --git a/go/chao-sdk-core/internal/file/file_js.go b/go/chao-sdk-core/internal/file/file_js.go
new file mode 100644
index 0000000..2f73ccd
--- /dev/null
+++ b/go/chao-sdk-core/internal/file/file_js.go
@@ -0,0 +1,156 @@
+// Copyright Š 2023 OpenIM open source community. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build js && wasm
+// +build js,wasm
+
+package file
+
+import (
+ "bufio"
+ "errors"
+ "github.com/openimsdk/openim-sdk-core/v3/wasm/exec"
+ "io"
+ "syscall/js"
+)
+
+const readBufferSize = 1024 * 1024 * 5 // 5mb
+
+func Open(req *UploadFileReq) (ReadFile, error) {
+ file := newJsCallFile(req.Uuid)
+ size, err := file.Open()
+ if err != nil {
+ return nil, err
+ }
+ jf := &jsFile{
+ size: size,
+ file: file,
+ }
+ jf.resetReaderBuffer()
+ return jf, nil
+}
+
+type jsFile struct {
+ size int64
+ file *jsCallFile
+ whence int
+ reader io.Reader
+}
+
+func (j *jsFile) resetReaderBuffer() {
+ j.reader = bufio.NewReaderSize(&reader{fn: j.read}, readBufferSize)
+}
+
+func (j *jsFile) read(p []byte) (n int, err error) {
+ length := len(p)
+ if length == 0 {
+ return 0, errors.New("read buffer is empty")
+ }
+ if j.whence >= int(j.size) {
+ return 0, io.EOF
+ }
+ if j.whence+length > int(j.size) {
+ length = int(j.size) - j.whence
+ }
+ data, err := j.file.Read(int64(j.whence), int64(length))
+ if err != nil {
+ return 0, err
+ }
+ if len(data) > len(p) {
+ return 0, errors.New("js read data > length")
+ }
+ j.whence += len(data)
+ copy(p, data)
+ return len(data), nil
+}
+
+func (j *jsFile) Read(p []byte) (n int, err error) {
+ return j.reader.Read(p)
+}
+
+func (j *jsFile) Close() error {
+ return j.file.Close()
+}
+
+func (j *jsFile) Size() int64 {
+ return j.size
+}
+
+func (j *jsFile) StartSeek(whence int) error {
+ if whence < 0 || whence > int(j.size) {
+ return errors.New("seek whence is out of range")
+ }
+ j.whence = whence
+ j.resetReaderBuffer()
+ return nil
+}
+
+type reader struct {
+ fn func(p []byte) (n int, err error)
+}
+
+func (r *reader) Read(p []byte) (n int, err error) {
+ return r.fn(p)
+}
+
+type jsCallFile struct {
+ uuid string
+}
+
+func newJsCallFile(uuid string) *jsCallFile {
+ return &jsCallFile{uuid: uuid}
+}
+
+func (j *jsCallFile) Open() (int64, error) {
+ return WasmOpen(j.uuid)
+}
+
+func (j *jsCallFile) Read(offset int64, length int64) ([]byte, error) {
+ return WasmRead(j.uuid, offset, length)
+}
+
+func (j *jsCallFile) Close() error {
+ return WasmClose(j.uuid)
+}
+
+func WasmOpen(uuid string) (int64, error) {
+ result, err := exec.Exec(uuid)
+ if err != nil {
+ return 0, err
+ }
+ if v, ok := result.(float64); ok {
+ size := int64(v)
+ if size < 0 {
+ return 0, errors.New("file size < 0")
+ }
+ return size, nil
+ }
+ return 0, exec.ErrType
+}
+func WasmRead(uuid string, offset int64, length int64) ([]byte, error) {
+ result, err := exec.Exec(uuid, offset, length)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := result.(js.Value); ok {
+ return exec.ExtractArrayBuffer(v), nil
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+func WasmClose(uuid string) error {
+ _, err := exec.Exec(uuid)
+ return err
+}
diff --git a/go/chao-sdk-core/internal/file/file_test.go b/go/chao-sdk-core/internal/file/file_test.go
new file mode 100644
index 0000000..a10bbc6
--- /dev/null
+++ b/go/chao-sdk-core/internal/file/file_test.go
@@ -0,0 +1,40 @@
+package file
+
+import (
+ "context"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/ccontext"
+ "github.com/openimsdk/openim-sdk-core/v3/sdk_struct"
+ "path/filepath"
+ "testing"
+)
+
+func TestUpload(t *testing.T) {
+ conf := &ccontext.GlobalConfig{
+ UserID: `4931176757`,
+ Token: `eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJVc2VySUQiOiI0OTMxMTc2NzU3IiwiUGxhdGZvcm1JRCI6MSwiZXhwIjoxNzA3MTE0MjIyLCJuYmYiOjE2OTkzMzc5MjIsImlhdCI6MTY5OTMzODIyMn0.AyNvrMGEdXD5rkvn7ZLHCNs-lNbDCb2otn97yLXia5Y`,
+ IMConfig: sdk_struct.IMConfig{
+ ApiAddr: `http://203.56.175.233:10002`,
+ },
+ }
+ ctx := ccontext.WithInfo(context.WithValue(context.Background(), "operationID", "OP123456"), conf)
+ f := NewFile(nil, conf.UserID)
+
+ //fp := `C:\Users\openIM\Desktop\垎äŋĄæĒåž_20231025170714.png`
+ //fp := `C:\Users\openIM\Desktop\my_image (2).tar`
+ //fp := `C:\Users\openIM\Desktop\1234.zip`
+ //fp := `C:\Users\openIM\Desktop\openIM.wasm`
+ //fp := `C:\Users\openIM\Desktop\ubuntu.7z`
+ //fp := `C:\Users\openIM\Desktop\log2023-10-31.log`
+ fp := `C:\Users\openIM\Desktop\protoc.zip`
+
+ resp, err := f.UploadFile(ctx, &UploadFileReq{
+ Filepath: fp,
+ Name: filepath.Base(fp),
+ Cause: "test",
+ }, nil)
+ if err != nil {
+ t.Fatal("failed", err)
+ }
+ t.Log("success", resp.URL)
+
+}
diff --git a/go/chao-sdk-core/internal/file/md5.go b/go/chao-sdk-core/internal/file/md5.go
new file mode 100644
index 0000000..53f201b
--- /dev/null
+++ b/go/chao-sdk-core/internal/file/md5.go
@@ -0,0 +1,43 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package file
+
+import (
+ "crypto/md5"
+ "encoding/hex"
+ "hash"
+ "io"
+)
+
+func NewMd5Reader(r io.Reader) *Md5Reader {
+ return &Md5Reader{h: md5.New(), r: r}
+}
+
+type Md5Reader struct {
+ h hash.Hash
+ r io.Reader
+}
+
+func (r *Md5Reader) Read(p []byte) (n int, err error) {
+ n, err = r.r.Read(p)
+ if err == nil && n > 0 {
+ r.h.Write(p[:n])
+ }
+ return
+}
+
+func (r *Md5Reader) Md5() string {
+ return hex.EncodeToString(r.h.Sum(nil))
+}
diff --git a/go/chao-sdk-core/internal/file/progress.go b/go/chao-sdk-core/internal/file/progress.go
new file mode 100644
index 0000000..7d722de
--- /dev/null
+++ b/go/chao-sdk-core/internal/file/progress.go
@@ -0,0 +1,44 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package file
+
+import (
+ "io"
+)
+
+func NewProgressReader(r io.Reader, fn func(current int64)) io.Reader {
+ if r == nil || fn == nil {
+ return r
+ }
+ return &Reader{
+ r: r,
+ fn: fn,
+ }
+}
+
+type Reader struct {
+ r io.Reader
+ read int64
+ fn func(current int64)
+}
+
+func (r *Reader) Read(p []byte) (n int, err error) {
+ n, err = r.r.Read(p)
+ if err == nil && n > 0 {
+ r.read += int64(n)
+ r.fn(r.read)
+ }
+ return n, err
+}
diff --git a/go/chao-sdk-core/internal/file/upload.go b/go/chao-sdk-core/internal/file/upload.go
new file mode 100644
index 0000000..4c9714e
--- /dev/null
+++ b/go/chao-sdk-core/internal/file/upload.go
@@ -0,0 +1,576 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package file
+
+import (
+ "context"
+ "crypto/md5"
+ "encoding/base64"
+ "encoding/hex"
+ "errors"
+ "fmt"
+ "github.com/openimsdk/openim-sdk-core/v3/internal/util"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/db_interface"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/tools/errs"
+ "io"
+ "net/http"
+ "net/url"
+ "strings"
+ "sync"
+ "sync/atomic"
+ "time"
+
+ "github.com/openimsdk/protocol/third"
+ "github.com/openimsdk/tools/log"
+)
+
+type UploadFileReq struct {
+ Filepath string `json:"filepath"`
+ Name string `json:"name"`
+ ContentType string `json:"contentType"`
+ Cause string `json:"cause"`
+ Uuid string `json:"uuid"`
+}
+
+type UploadFileResp struct {
+ URL string `json:"url"`
+}
+
+type partInfo struct {
+ ContentType string
+ PartSize int64
+ PartNum int
+ FileMd5 string
+ PartMd5 string
+ PartSizes []int64
+ PartMd5s []string
+}
+
+func NewFile(database db_interface.DataBase, loginUserID string) *File {
+ return &File{database: database, loginUserID: loginUserID, confLock: &sync.Mutex{}, mapLocker: &sync.Mutex{}, uploading: make(map[string]*lockInfo)}
+}
+
+type File struct {
+ database db_interface.DataBase
+ loginUserID string
+ confLock sync.Locker
+ partLimit *third.PartLimitResp
+ mapLocker sync.Locker
+ uploading map[string]*lockInfo
+}
+
+type lockInfo struct {
+ count int32
+ locker sync.Locker
+}
+
+func (f *File) lockHash(hash string) {
+ f.mapLocker.Lock()
+ locker, ok := f.uploading[hash]
+ if !ok {
+ locker = &lockInfo{count: 0, locker: &sync.Mutex{}}
+ f.uploading[hash] = locker
+ }
+ atomic.AddInt32(&locker.count, 1)
+ f.mapLocker.Unlock()
+ locker.locker.Lock()
+}
+
+func (f *File) unlockHash(hash string) {
+ f.mapLocker.Lock()
+ locker, ok := f.uploading[hash]
+ if !ok {
+ f.mapLocker.Unlock()
+ return
+ }
+ if atomic.AddInt32(&locker.count, -1) == 0 {
+ delete(f.uploading, hash)
+ }
+ f.mapLocker.Unlock()
+ locker.locker.Unlock()
+}
+
+func (f *File) UploadFile(ctx context.Context, req *UploadFileReq, cb UploadFileCallback) (*UploadFileResp, error) {
+ if cb == nil {
+ cb = emptyUploadCallback{}
+ }
+ if req.Name == "" {
+ return nil, errors.New("name is empty")
+ }
+ if req.Name[0] == '/' {
+ req.Name = req.Name[1:]
+ }
+ if prefix := f.loginUserID + "/"; !strings.HasPrefix(req.Name, prefix) {
+ req.Name = prefix + req.Name
+ }
+ file, err := Open(req)
+ if err != nil {
+ return nil, err
+ }
+ defer file.Close()
+ fileSize := file.Size()
+ cb.Open(fileSize)
+ info, err := f.getPartInfo(ctx, file, fileSize, cb)
+ if err != nil {
+ return nil, err
+ }
+ if req.ContentType == "" {
+ req.ContentType = info.ContentType
+ }
+ partSize := info.PartSize
+ partSizes := info.PartSizes
+ partMd5s := info.PartMd5s
+ partMd5Val := info.PartMd5
+ if err := file.StartSeek(0); err != nil {
+ return nil, err
+ }
+ f.lockHash(partMd5Val)
+ defer f.unlockHash(partMd5Val)
+ maxParts := 20
+ if maxParts > len(partSizes) {
+ maxParts = len(partSizes)
+ }
+ uploadInfo, err := f.getUpload(ctx, &third.InitiateMultipartUploadReq{
+ Hash: partMd5Val,
+ Size: fileSize,
+ PartSize: partSize,
+ MaxParts: int32(maxParts), // 䏿ŦĄæ§čˇåįžåæ°é
+ Cause: req.Cause,
+ Name: req.Name,
+ ContentType: req.ContentType,
+ })
+ if err != nil {
+ return nil, err
+ }
+ if uploadInfo.Resp.Upload == nil {
+ cb.Complete(fileSize, uploadInfo.Resp.Url, 0)
+ return &UploadFileResp{
+ URL: uploadInfo.Resp.Url,
+ }, nil
+ }
+ if uploadInfo.Resp.Upload.PartSize != partSize {
+ f.cleanPartLimit()
+ return nil, fmt.Errorf("part fileSize not match, expect %d, got %d", partSize, uploadInfo.Resp.Upload.PartSize)
+ }
+ cb.UploadID(uploadInfo.Resp.Upload.UploadID)
+ uploadedSize := fileSize
+ for i := 0; i < len(partSizes); i++ {
+ if !uploadInfo.Bitmap.Get(i) {
+ uploadedSize -= partSizes[i]
+ }
+ }
+ continueUpload := uploadedSize > 0
+ for i, currentPartSize := range partSizes {
+ partNumber := int32(i + 1)
+ md5Reader := NewMd5Reader(io.LimitReader(file, currentPartSize))
+ if uploadInfo.Bitmap.Get(i) {
+ if _, err := io.Copy(io.Discard, md5Reader); err != nil {
+ return nil, err
+ }
+ } else {
+ reader := NewProgressReader(md5Reader, func(current int64) {
+ cb.UploadComplete(fileSize, uploadedSize+current, uploadedSize)
+ })
+ urlval, header, err := uploadInfo.GetPartSign(ctx, partNumber)
+ if err != nil {
+ return nil, err
+ }
+ if err := f.doPut(ctx, http.DefaultClient, urlval, header, reader, currentPartSize); err != nil {
+ log.ZError(ctx, "doPut", err, "partMd5Val", partMd5Val, "name", req.Name, "partNumber", partNumber)
+ return nil, err
+ }
+ uploadedSize += currentPartSize
+ if uploadInfo.DBInfo != nil && uploadInfo.Bitmap != nil {
+ uploadInfo.Bitmap.Set(i)
+ uploadInfo.DBInfo.UploadInfo = base64.StdEncoding.EncodeToString(uploadInfo.Bitmap.Serialize())
+ if err := f.database.UpdateUpload(ctx, uploadInfo.DBInfo); err != nil {
+ log.ZError(ctx, "SetUploadPartPush", err, "partMd5Val", partMd5Val, "name", req.Name, "partNumber", partNumber)
+ }
+ }
+ }
+ md5val := md5Reader.Md5()
+ if md5val != partMd5s[i] {
+ return nil, fmt.Errorf("upload part %d failed, md5 not match, expect %s, got %s", i, partMd5s[i], md5val)
+ }
+ cb.UploadPartComplete(i, currentPartSize, partMd5s[i])
+ log.ZDebug(ctx, "upload part success", "partMd5Val", md5val, "name", req.Name, "partNumber", partNumber)
+ }
+ log.ZDebug(ctx, "upload all part success", "partHash", partMd5Val, "name", req.Name)
+ resp, err := f.completeMultipartUpload(ctx, &third.CompleteMultipartUploadReq{
+ UploadID: uploadInfo.Resp.Upload.UploadID,
+ Parts: partMd5s,
+ Name: req.Name,
+ ContentType: req.ContentType,
+ Cause: req.Cause,
+ })
+ if err != nil {
+ return nil, err
+ }
+ typ := 1
+ if continueUpload {
+ typ++
+ }
+ cb.Complete(fileSize, resp.Url, typ)
+ if uploadInfo.DBInfo != nil {
+ if err := f.database.DeleteUpload(ctx, info.PartMd5); err != nil {
+ log.ZError(ctx, "DeleteUpload", err, "partMd5Val", info.PartMd5, "name", req.Name)
+ }
+ }
+ return &UploadFileResp{
+ URL: resp.Url,
+ }, nil
+}
+
+func (f *File) cleanPartLimit() {
+ f.confLock.Lock()
+ defer f.confLock.Unlock()
+ f.partLimit = nil
+}
+
+func (f *File) initiateMultipartUploadResp(ctx context.Context, req *third.InitiateMultipartUploadReq) (*third.InitiateMultipartUploadResp, error) {
+ return util.CallApi[third.InitiateMultipartUploadResp](ctx, constant.ObjectInitiateMultipartUpload, req)
+}
+
+func (f *File) authSign(ctx context.Context, req *third.AuthSignReq) (*third.AuthSignResp, error) {
+ if len(req.PartNumbers) == 0 {
+ return nil, errs.ErrArgs.WrapMsg("partNumbers is empty")
+ }
+ return util.CallApi[third.AuthSignResp](ctx, constant.ObjectAuthSign, req)
+}
+
+func (f *File) completeMultipartUpload(ctx context.Context, req *third.CompleteMultipartUploadReq) (*third.CompleteMultipartUploadResp, error) {
+ return util.CallApi[third.CompleteMultipartUploadResp](ctx, constant.ObjectCompleteMultipartUpload, req)
+}
+
+func (f *File) getPartNum(fileSize int64, partSize int64) int {
+ partNum := fileSize / partSize
+ if fileSize%partSize != 0 {
+ partNum++
+ }
+ return int(partNum)
+}
+
+func (f *File) partSize(ctx context.Context, size int64) (int64, error) {
+ f.confLock.Lock()
+ defer f.confLock.Unlock()
+ if f.partLimit == nil {
+ resp, err := util.CallApi[third.PartLimitResp](ctx, constant.ObjectPartLimit, &third.PartLimitReq{})
+ if err != nil {
+ return 0, err
+ }
+ f.partLimit = resp
+ }
+ if size <= 0 {
+ return 0, errors.New("size must be greater than 0")
+ }
+ if size > f.partLimit.MaxPartSize*int64(f.partLimit.MaxNumSize) {
+ return 0, fmt.Errorf("size must be less than %db", f.partLimit.MaxPartSize*int64(f.partLimit.MaxNumSize))
+ }
+ if size <= f.partLimit.MinPartSize*int64(f.partLimit.MaxNumSize) {
+ return f.partLimit.MinPartSize, nil
+ }
+ partSize := size / int64(f.partLimit.MaxNumSize)
+ if size%int64(f.partLimit.MaxNumSize) != 0 {
+ partSize++
+ }
+ return partSize, nil
+}
+
+func (f *File) accessURL(ctx context.Context, req *third.AccessURLReq) (*third.AccessURLResp, error) {
+ return util.CallApi[third.AccessURLResp](ctx, constant.ObjectAccessURL, req)
+}
+
+func (f *File) doHttpReq(req *http.Request) ([]byte, *http.Response, error) {
+ resp, err := http.DefaultClient.Do(req)
+ if err != nil {
+ return nil, nil, err
+ }
+ defer resp.Body.Close()
+ data, err := io.ReadAll(resp.Body)
+ if err != nil {
+ return nil, nil, err
+ }
+ return data, resp, nil
+}
+
+func (f *File) partMD5(parts []string) string {
+ s := strings.Join(parts, ",")
+ md5Sum := md5.Sum([]byte(s))
+ return hex.EncodeToString(md5Sum[:])
+}
+
+type AuthSignParts struct {
+ Sign *third.SignPart
+ Times []time.Time
+}
+
+type UploadInfo struct {
+ PartNum int
+ Bitmap *Bitmap
+ DBInfo *model_struct.LocalUpload
+ Resp *third.InitiateMultipartUploadResp
+ //Signs *AuthSignParts
+ CreateTime time.Time
+ BatchSignNum int32
+ f *File
+}
+
+func (u *UploadInfo) getIndex(partNumber int32) int {
+ if u.Resp.Upload.Sign == nil {
+ return -1
+ } else {
+ if u.CreateTime.IsZero() {
+ return -1
+ } else {
+ if time.Since(u.CreateTime) > time.Minute {
+ return -1
+ }
+ }
+ }
+ for i, part := range u.Resp.Upload.Sign.Parts {
+ if part.PartNumber == partNumber {
+ return i
+ }
+ }
+ return -1
+}
+
+func (u *UploadInfo) buildRequest(i int) (*url.URL, http.Header, error) {
+ sign := u.Resp.Upload.Sign
+ part := sign.Parts[i]
+ rawURL := sign.Url
+ if part.Url != "" {
+ rawURL = part.Url
+ }
+ urlval, err := url.Parse(rawURL)
+ if err != nil {
+ return nil, nil, err
+ }
+ if len(sign.Query)+len(part.Query) > 0 {
+ query := urlval.Query()
+ for i := range sign.Query {
+ v := sign.Query[i]
+ query[v.Key] = v.Values
+ }
+ for i := range part.Query {
+ v := part.Query[i]
+ query[v.Key] = v.Values
+ }
+ urlval.RawQuery = query.Encode()
+ }
+ header := make(http.Header)
+ for i := range sign.Header {
+ v := sign.Header[i]
+ header[v.Key] = v.Values
+ }
+ for i := range part.Header {
+ v := part.Header[i]
+ header[v.Key] = v.Values
+ }
+ return urlval, header, nil
+}
+
+func (u *UploadInfo) GetPartSign(ctx context.Context, partNumber int32) (*url.URL, http.Header, error) {
+ if partNumber < 1 || int(partNumber) > u.PartNum {
+ return nil, nil, errors.New("invalid partNumber")
+ }
+ if index := u.getIndex(partNumber); index >= 0 {
+ return u.buildRequest(index)
+ }
+ partNumbers := make([]int32, 0, u.BatchSignNum)
+ for i := int32(0); i < u.BatchSignNum; i++ {
+ if int(partNumber+i) > u.PartNum {
+ break
+ }
+ partNumbers = append(partNumbers, partNumber+i)
+ }
+ authSignResp, err := u.f.authSign(ctx, &third.AuthSignReq{
+ UploadID: u.Resp.Upload.UploadID,
+ PartNumbers: partNumbers,
+ })
+ if err != nil {
+ return nil, nil, err
+ }
+ u.Resp.Upload.Sign.Url = authSignResp.Url
+ u.Resp.Upload.Sign.Query = authSignResp.Query
+ u.Resp.Upload.Sign.Header = authSignResp.Header
+ u.Resp.Upload.Sign.Parts = authSignResp.Parts
+ u.CreateTime = time.Now()
+ index := u.getIndex(partNumber)
+ if index < 0 {
+ return nil, nil, errs.ErrInternalServer.WrapMsg("server part sign invalid")
+ }
+ return u.buildRequest(index)
+}
+
+func (f *File) getUpload(ctx context.Context, req *third.InitiateMultipartUploadReq) (*UploadInfo, error) {
+ partNum := f.getPartNum(req.Size, req.PartSize)
+ var bitmap *Bitmap
+ if f.database != nil {
+ dbUpload, err := f.database.GetUpload(ctx, req.Hash)
+ if err == nil {
+ bitmapBytes, err := base64.StdEncoding.DecodeString(dbUpload.UploadInfo)
+ if err != nil || len(bitmapBytes) == 0 || partNum <= 1 || dbUpload.ExpireTime-3600*1000 < time.Now().UnixMilli() {
+ if err := f.database.DeleteUpload(ctx, req.Hash); err != nil {
+ return nil, err
+ }
+ dbUpload = nil
+ }
+ if dbUpload == nil {
+ bitmap = NewBitmap(partNum)
+ } else {
+ bitmap = ParseBitmap(bitmapBytes, partNum)
+ }
+ tUpInfo := &third.UploadInfo{
+ PartSize: req.PartSize,
+ Sign: &third.AuthSignParts{},
+ }
+ if dbUpload != nil {
+ tUpInfo.UploadID = dbUpload.UploadID
+ tUpInfo.ExpireTime = dbUpload.ExpireTime
+ }
+ return &UploadInfo{
+ PartNum: partNum,
+ Bitmap: bitmap,
+ DBInfo: dbUpload,
+ Resp: &third.InitiateMultipartUploadResp{
+ Upload: tUpInfo,
+ },
+ BatchSignNum: req.MaxParts,
+ f: f,
+ }, nil
+ }
+ log.ZError(ctx, "get upload db", err, "pratsMd5", req.Hash)
+ }
+ resp, err := f.initiateMultipartUploadResp(ctx, req)
+ if err != nil {
+ return nil, err
+ }
+ if resp.Upload == nil {
+ return &UploadInfo{
+ Resp: resp,
+ }, nil
+ }
+ bitmap = NewBitmap(partNum)
+ var dbUpload *model_struct.LocalUpload
+ if f.database != nil {
+ dbUpload = &model_struct.LocalUpload{
+ PartHash: req.Hash,
+ UploadID: resp.Upload.UploadID,
+ UploadInfo: base64.StdEncoding.EncodeToString(bitmap.Serialize()),
+ ExpireTime: resp.Upload.ExpireTime,
+ CreateTime: time.Now().UnixMilli(),
+ }
+ if err := f.database.InsertUpload(ctx, dbUpload); err != nil {
+ log.ZError(ctx, "insert upload db", err, "pratsHash", req.Hash, "name", req.Name)
+ }
+ }
+ if req.MaxParts >= 0 && len(resp.Upload.Sign.Parts) != int(req.MaxParts) {
+ resp.Upload.Sign.Parts = nil
+ }
+ return &UploadInfo{
+ PartNum: partNum,
+ Bitmap: bitmap,
+ DBInfo: dbUpload,
+ Resp: resp,
+ CreateTime: time.Now(),
+ BatchSignNum: req.MaxParts,
+ f: f,
+ }, nil
+}
+
+func (f *File) doPut(ctx context.Context, client *http.Client, url *url.URL, header http.Header, reader io.Reader, size int64) error {
+ rawURL := url.String()
+ req, err := http.NewRequestWithContext(ctx, http.MethodPut, rawURL, reader)
+ if err != nil {
+ return err
+ }
+ for key := range header {
+ req.Header[key] = header[key]
+ }
+ req.ContentLength = size
+ log.ZDebug(ctx, "do put req", "url", rawURL, "contentLength", size, "header", req.Header)
+ resp, err := client.Do(req)
+ if err != nil {
+ return err
+ }
+ defer func() {
+ _ = resp.Body.Close()
+ }()
+ log.ZDebug(ctx, "do put resp status", "url", rawURL, "status", resp.Status, "contentLength", resp.ContentLength, "header", resp.Header)
+ body, err := io.ReadAll(resp.Body)
+ if err != nil {
+ return err
+ }
+ log.ZDebug(ctx, "do put resp body", "url", rawURL, "body", string(body))
+ if resp.StatusCode/200 != 1 {
+ return fmt.Errorf("PUT %s failed, status code %d, body %s", rawURL, resp.StatusCode, string(body))
+ }
+ return nil
+}
+
+func (f *File) getPartInfo(ctx context.Context, r io.Reader, fileSize int64, cb UploadFileCallback) (*partInfo, error) {
+ partSize, err := f.partSize(ctx, fileSize)
+ if err != nil {
+ return nil, err
+ }
+ partNum := int(fileSize / partSize)
+ if fileSize%partSize != 0 {
+ partNum++
+ }
+ cb.PartSize(partSize, partNum)
+ partSizes := make([]int64, partNum)
+ for i := 0; i < partNum; i++ {
+ partSizes[i] = partSize
+ }
+ partSizes[partNum-1] = fileSize - partSize*(int64(partNum)-1)
+ partMd5s := make([]string, partNum)
+ buf := make([]byte, 1024*8)
+ fileMd5 := md5.New()
+ var contentType string
+ for i := 0; i < partNum; i++ {
+ h := md5.New()
+ r := io.LimitReader(r, partSize)
+ for {
+ if n, err := r.Read(buf); err == nil {
+ if contentType == "" {
+ contentType = http.DetectContentType(buf[:n])
+ }
+ h.Write(buf[:n])
+ fileMd5.Write(buf[:n])
+ } else if err == io.EOF {
+ break
+ } else {
+ return nil, err
+ }
+ }
+ partMd5s[i] = hex.EncodeToString(h.Sum(nil))
+ cb.HashPartProgress(i, partSizes[i], partMd5s[i])
+ }
+ partMd5Val := f.partMD5(partMd5s)
+ fileMd5val := hex.EncodeToString(fileMd5.Sum(nil))
+ cb.HashPartComplete(f.partMD5(partMd5s), hex.EncodeToString(fileMd5.Sum(nil)))
+ return &partInfo{
+ ContentType: contentType,
+ PartSize: partSize,
+ PartNum: partNum,
+ FileMd5: fileMd5val,
+ PartMd5: partMd5Val,
+ PartSizes: partSizes,
+ PartMd5s: partMd5s,
+ }, nil
+}
diff --git a/go/chao-sdk-core/internal/friend/conversion.go b/go/chao-sdk-core/internal/friend/conversion.go
new file mode 100644
index 0000000..0466bb4
--- /dev/null
+++ b/go/chao-sdk-core/internal/friend/conversion.go
@@ -0,0 +1,71 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package friend
+
+import (
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/protocol/sdkws"
+)
+
+func ServerFriendRequestToLocalFriendRequest(info *sdkws.FriendRequest) *model_struct.LocalFriendRequest {
+ return &model_struct.LocalFriendRequest{
+ FromUserID: info.FromUserID,
+ FromNickname: info.FromNickname,
+ FromFaceURL: info.FromFaceURL,
+ //FromGender: info.FromGender,
+ ToUserID: info.ToUserID,
+ ToNickname: info.ToNickname,
+ ToFaceURL: info.ToFaceURL,
+ //ToGender: info.ToGender,
+ HandleResult: info.HandleResult,
+ ReqMsg: info.ReqMsg,
+ CreateTime: info.CreateTime,
+ HandlerUserID: info.HandlerUserID,
+ HandleMsg: info.HandleMsg,
+ HandleTime: info.HandleTime,
+ Ex: info.Ex,
+ //AttachedInfo: info.AttachedInfo,
+ }
+}
+
+func ServerFriendToLocalFriend(info *sdkws.FriendInfo) *model_struct.LocalFriend {
+ return &model_struct.LocalFriend{
+ OwnerUserID: info.OwnerUserID,
+ FriendUserID: info.FriendUser.UserID,
+ Remark: info.Remark,
+ CreateTime: info.CreateTime,
+ AddSource: info.AddSource,
+ OperatorUserID: info.OperatorUserID,
+ Nickname: info.FriendUser.Nickname,
+ FaceURL: info.FriendUser.FaceURL,
+ Ex: info.Ex,
+ //AttachedInfo: info.FriendUser.AttachedInfo,
+ IsPinned: info.IsPinned,
+ }
+}
+
+func ServerBlackToLocalBlack(info *sdkws.BlackInfo) *model_struct.LocalBlack {
+ return &model_struct.LocalBlack{
+ OwnerUserID: info.OwnerUserID,
+ BlockUserID: info.BlackUserInfo.UserID,
+ CreateTime: info.CreateTime,
+ AddSource: info.AddSource,
+ OperatorUserID: info.OperatorUserID,
+ Nickname: info.BlackUserInfo.Nickname,
+ FaceURL: info.BlackUserInfo.FaceURL,
+ Ex: info.Ex,
+ //AttachedInfo: info.FriendUser.AttachedInfo,
+ }
+}
diff --git a/go/chao-sdk-core/internal/friend/friend.go b/go/chao-sdk-core/internal/friend/friend.go
new file mode 100644
index 0000000..33fe3f4
--- /dev/null
+++ b/go/chao-sdk-core/internal/friend/friend.go
@@ -0,0 +1,199 @@
+// Copyright 2021 OpenIM Corporation
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package friend
+
+import (
+ "context"
+
+ "github.com/openimsdk/openim-sdk-core/v3/internal/user"
+ "github.com/openimsdk/openim-sdk-core/v3/open_im_sdk_callback"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/common"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/db_interface"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/page"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/syncer"
+ friend "github.com/openimsdk/protocol/relation"
+ "github.com/openimsdk/tools/utils/datautil"
+
+ "github.com/openimsdk/protocol/sdkws"
+ "github.com/openimsdk/tools/log"
+)
+
+func NewFriend(loginUserID string, db db_interface.DataBase, user *user.User, conversationCh chan common.Cmd2Value) *Friend {
+ f := &Friend{loginUserID: loginUserID, db: db, user: user, conversationCh: conversationCh}
+ f.initSyncer()
+ return f
+}
+
+type Friend struct {
+ friendListener open_im_sdk_callback.OnFriendshipListenerSdk
+ loginUserID string
+ db db_interface.DataBase
+ user *user.User
+ friendSyncer *syncer.Syncer[*model_struct.LocalFriend, friend.GetPaginationFriendsResp, [2]string]
+ blockSyncer *syncer.Syncer[*model_struct.LocalBlack, syncer.NoResp, [2]string]
+ requestRecvSyncer *syncer.Syncer[*model_struct.LocalFriendRequest, syncer.NoResp, [2]string]
+ requestSendSyncer *syncer.Syncer[*model_struct.LocalFriendRequest, syncer.NoResp, [2]string]
+ conversationCh chan common.Cmd2Value
+ listenerForService open_im_sdk_callback.OnListenerForService
+}
+
+func (f *Friend) initSyncer() {
+ f.friendSyncer = syncer.New2[*model_struct.LocalFriend, friend.GetPaginationFriendsResp, [2]string](
+ syncer.WithInsert[*model_struct.LocalFriend, friend.GetPaginationFriendsResp, [2]string](func(ctx context.Context, value *model_struct.LocalFriend) error {
+ return f.db.InsertFriend(ctx, value)
+ }),
+ syncer.WithDelete[*model_struct.LocalFriend, friend.GetPaginationFriendsResp, [2]string](func(ctx context.Context, value *model_struct.LocalFriend) error {
+ return f.db.DeleteFriendDB(ctx, value.FriendUserID)
+ }),
+ syncer.WithUpdate[*model_struct.LocalFriend, friend.GetPaginationFriendsResp, [2]string](func(ctx context.Context, server, local *model_struct.LocalFriend) error {
+ return f.db.UpdateFriend(ctx, server)
+ }),
+ syncer.WithUUID[*model_struct.LocalFriend, friend.GetPaginationFriendsResp, [2]string](func(value *model_struct.LocalFriend) [2]string {
+ return [...]string{value.OwnerUserID, value.FriendUserID}
+ }),
+ syncer.WithNotice[*model_struct.LocalFriend, friend.GetPaginationFriendsResp, [2]string](func(ctx context.Context, state int, server, local *model_struct.LocalFriend) error {
+ switch state {
+ case syncer.Insert:
+ f.friendListener.OnFriendAdded(*server)
+ case syncer.Delete:
+ log.ZDebug(ctx, "syncer OnFriendDeleted", "local", local)
+ f.friendListener.OnFriendDeleted(*local)
+ case syncer.Update:
+ f.friendListener.OnFriendInfoChanged(*server)
+ if local.Nickname != server.Nickname || local.FaceURL != server.FaceURL || local.Remark != server.Remark {
+ if server.Remark != "" {
+ server.Nickname = server.Remark
+ }
+ _ = common.TriggerCmdUpdateConversation(ctx, common.UpdateConNode{
+ Action: constant.UpdateConFaceUrlAndNickName,
+ Args: common.SourceIDAndSessionType{
+ SourceID: server.FriendUserID,
+ SessionType: constant.SingleChatType,
+ FaceURL: server.FaceURL,
+ Nickname: server.Nickname,
+ },
+ }, f.conversationCh)
+ _ = common.TriggerCmdUpdateMessage(ctx, common.UpdateMessageNode{
+ Action: constant.UpdateMsgFaceUrlAndNickName,
+ Args: common.UpdateMessageInfo{
+ SessionType: constant.SingleChatType,
+ UserID: server.FriendUserID,
+ FaceURL: server.FaceURL,
+ Nickname: server.Nickname,
+ },
+ }, f.conversationCh)
+ }
+ }
+ return nil
+ }),
+ syncer.WithBatchInsert[*model_struct.LocalFriend, friend.GetPaginationFriendsResp, [2]string](func(ctx context.Context, values []*model_struct.LocalFriend) error {
+ log.ZDebug(ctx, "BatchInsertFriend", "length", len(values))
+ return f.db.BatchInsertFriend(ctx, values)
+ }),
+ syncer.WithDeleteAll[*model_struct.LocalFriend, friend.GetPaginationFriendsResp, [2]string](func(ctx context.Context, _ string) error {
+ return f.db.DeleteAllFriend(ctx)
+ }),
+ syncer.WithBatchPageReq[*model_struct.LocalFriend, friend.GetPaginationFriendsResp, [2]string](func(entityID string) page.PageReq {
+ return &friend.GetPaginationFriendsReq{UserID: entityID,
+ Pagination: &sdkws.RequestPagination{ShowNumber: 100}}
+ }),
+ syncer.WithBatchPageRespConvertFunc[*model_struct.LocalFriend, friend.GetPaginationFriendsResp, [2]string](func(resp *friend.GetPaginationFriendsResp) []*model_struct.LocalFriend {
+ return datautil.Batch(ServerFriendToLocalFriend, resp.FriendsInfo)
+ }),
+ syncer.WithReqApiRouter[*model_struct.LocalFriend, friend.GetPaginationFriendsResp, [2]string](constant.GetFriendListRouter),
+ )
+
+ f.blockSyncer = syncer.New[*model_struct.LocalBlack, syncer.NoResp, [2]string](func(ctx context.Context, value *model_struct.LocalBlack) error {
+ return f.db.InsertBlack(ctx, value)
+ }, func(ctx context.Context, value *model_struct.LocalBlack) error {
+ return f.db.DeleteBlack(ctx, value.BlockUserID)
+ }, func(ctx context.Context, server *model_struct.LocalBlack, local *model_struct.LocalBlack) error {
+ return f.db.UpdateBlack(ctx, server)
+ }, func(value *model_struct.LocalBlack) [2]string {
+ return [...]string{value.OwnerUserID, value.BlockUserID}
+ }, nil, func(ctx context.Context, state int, server, local *model_struct.LocalBlack) error {
+ switch state {
+ case syncer.Insert:
+ f.friendListener.OnBlackAdded(*server)
+ case syncer.Delete:
+ f.friendListener.OnBlackDeleted(*local)
+ }
+ return nil
+ })
+ f.requestRecvSyncer = syncer.New[*model_struct.LocalFriendRequest, syncer.NoResp, [2]string](func(ctx context.Context, value *model_struct.LocalFriendRequest) error {
+ return f.db.InsertFriendRequest(ctx, value)
+ }, func(ctx context.Context, value *model_struct.LocalFriendRequest) error {
+ return f.db.DeleteFriendRequestBothUserID(ctx, value.FromUserID, value.ToUserID)
+ }, func(ctx context.Context, server *model_struct.LocalFriendRequest, local *model_struct.LocalFriendRequest) error {
+ return f.db.UpdateFriendRequest(ctx, server)
+ }, func(value *model_struct.LocalFriendRequest) [2]string {
+ return [...]string{value.FromUserID, value.ToUserID}
+ }, nil, func(ctx context.Context, state int, server, local *model_struct.LocalFriendRequest) error {
+ switch state {
+ case syncer.Insert:
+ f.friendListener.OnFriendApplicationAdded(*server)
+ case syncer.Delete:
+ f.friendListener.OnFriendApplicationDeleted(*local)
+ case syncer.Update:
+ switch server.HandleResult {
+ case constant.FriendResponseAgree:
+ f.friendListener.OnFriendApplicationAccepted(*server)
+ case constant.FriendResponseRefuse:
+ f.friendListener.OnFriendApplicationRejected(*server)
+ case constant.FriendResponseDefault:
+ f.friendListener.OnFriendApplicationAdded(*server)
+ }
+ }
+ return nil
+ })
+ f.requestSendSyncer = syncer.New[*model_struct.LocalFriendRequest, syncer.NoResp, [2]string](func(ctx context.Context, value *model_struct.LocalFriendRequest) error {
+ return f.db.InsertFriendRequest(ctx, value)
+ }, func(ctx context.Context, value *model_struct.LocalFriendRequest) error {
+ return f.db.DeleteFriendRequestBothUserID(ctx, value.FromUserID, value.ToUserID)
+ }, func(ctx context.Context, server *model_struct.LocalFriendRequest, local *model_struct.LocalFriendRequest) error {
+ return f.db.UpdateFriendRequest(ctx, server)
+ }, func(value *model_struct.LocalFriendRequest) [2]string {
+ return [...]string{value.FromUserID, value.ToUserID}
+ }, nil, func(ctx context.Context, state int, server, local *model_struct.LocalFriendRequest) error {
+ switch state {
+ case syncer.Insert:
+ f.friendListener.OnFriendApplicationAdded(*server)
+ case syncer.Delete:
+ f.friendListener.OnFriendApplicationDeleted(*local)
+ case syncer.Update:
+ switch server.HandleResult {
+ case constant.FriendResponseAgree:
+ f.friendListener.OnFriendApplicationAccepted(*server)
+ case constant.FriendResponseRefuse:
+ f.friendListener.OnFriendApplicationRejected(*server)
+ }
+ }
+ return nil
+ })
+}
+
+func (f *Friend) Db() db_interface.DataBase {
+ return f.db
+}
+
+func (f *Friend) SetListener(listener func() open_im_sdk_callback.OnFriendshipListener) {
+ f.friendListener = open_im_sdk_callback.NewOnFriendshipListenerSdk(listener)
+}
+
+func (f *Friend) SetListenerForService(listener open_im_sdk_callback.OnListenerForService) {
+ f.listenerForService = listener
+}
diff --git a/go/chao-sdk-core/internal/friend/hash.go b/go/chao-sdk-core/internal/friend/hash.go
new file mode 100644
index 0000000..7e53138
--- /dev/null
+++ b/go/chao-sdk-core/internal/friend/hash.go
@@ -0,0 +1,33 @@
+package friend
+
+import (
+ "crypto/md5"
+ "encoding/binary"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/protocol/constant"
+ "github.com/openimsdk/tools/utils/datautil"
+ "strconv"
+ "strings"
+)
+
+func (f *Friend) CalculateHash(friends []*model_struct.LocalFriend) uint64 {
+ datautil.SortAny(friends, func(a, b *model_struct.LocalFriend) bool {
+ return a.CreateTime > b.CreateTime
+ })
+ if len(friends) > constant.MaxSyncPullNumber {
+ friends = friends[:constant.MaxSyncPullNumber]
+ }
+ hashStr := strings.Join(datautil.Slice(friends, func(f *model_struct.LocalFriend) string {
+ return strings.Join([]string{
+ f.FriendUserID,
+ f.Remark,
+ strconv.FormatInt(f.CreateTime, 10),
+ strconv.Itoa(int(f.AddSource)),
+ f.OperatorUserID,
+ f.Ex,
+ strconv.FormatBool(f.IsPinned),
+ }, ",")
+ }), ";")
+ sum := md5.Sum([]byte(hashStr))
+ return binary.BigEndian.Uint64(sum[:])
+}
diff --git a/go/chao-sdk-core/internal/friend/notification.go b/go/chao-sdk-core/internal/friend/notification.go
new file mode 100644
index 0000000..743ecdc
--- /dev/null
+++ b/go/chao-sdk-core/internal/friend/notification.go
@@ -0,0 +1,136 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package friend
+
+import (
+ "context"
+ "fmt"
+
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/protocol/sdkws"
+ "github.com/openimsdk/tools/log"
+)
+
+func (f *Friend) DoNotification(ctx context.Context, msg *sdkws.MsgData) {
+ go func() {
+ if err := f.doNotification(ctx, msg); err != nil {
+ log.ZError(ctx, "doNotification error", err, "msg", msg)
+ }
+ }()
+}
+
+func (f *Friend) doNotification(ctx context.Context, msg *sdkws.MsgData) error {
+ switch msg.ContentType {
+ case constant.FriendApplicationNotification:
+ tips := sdkws.FriendApplicationTips{}
+ if err := utils.UnmarshalNotificationElem(msg.Content, &tips); err != nil {
+ return err
+ }
+ return f.SyncBothFriendRequest(ctx,
+ tips.FromToUserID.FromUserID, tips.FromToUserID.ToUserID)
+ case constant.FriendApplicationApprovedNotification:
+ var tips sdkws.FriendApplicationApprovedTips
+ err := utils.UnmarshalNotificationElem(msg.Content, &tips)
+ if err != nil {
+ return err
+ }
+
+ if tips.FromToUserID.FromUserID == f.loginUserID {
+ err = f.SyncFriends(ctx, []string{tips.FromToUserID.ToUserID})
+ } else if tips.FromToUserID.ToUserID == f.loginUserID {
+ err = f.SyncFriends(ctx, []string{tips.FromToUserID.FromUserID})
+ }
+ if err != nil {
+ return err
+ }
+ return f.SyncBothFriendRequest(ctx, tips.FromToUserID.FromUserID, tips.FromToUserID.ToUserID)
+ case constant.FriendApplicationRejectedNotification:
+ var tips sdkws.FriendApplicationRejectedTips
+ if err := utils.UnmarshalNotificationElem(msg.Content, &tips); err != nil {
+ return err
+ }
+ return f.SyncBothFriendRequest(ctx, tips.FromToUserID.FromUserID, tips.FromToUserID.ToUserID)
+ case constant.FriendAddedNotification:
+ var tips sdkws.FriendAddedTips
+ if err := utils.UnmarshalNotificationElem(msg.Content, &tips); err != nil {
+ return err
+ }
+ if tips.Friend != nil && tips.Friend.FriendUser != nil {
+ if tips.Friend.FriendUser.UserID == f.loginUserID {
+ return f.SyncFriends(ctx, []string{tips.Friend.OwnerUserID})
+ } else if tips.Friend.OwnerUserID == f.loginUserID {
+ return f.SyncFriends(ctx, []string{tips.Friend.FriendUser.UserID})
+ }
+ }
+ case constant.FriendDeletedNotification:
+ var tips sdkws.FriendDeletedTips
+ if err := utils.UnmarshalNotificationElem(msg.Content, &tips); err != nil {
+ return err
+ }
+ if tips.FromToUserID != nil {
+ if tips.FromToUserID.FromUserID == f.loginUserID {
+ return f.deleteFriend(ctx, tips.FromToUserID.ToUserID)
+ }
+ }
+ case constant.FriendRemarkSetNotification:
+ var tips sdkws.FriendInfoChangedTips
+ if err := utils.UnmarshalNotificationElem(msg.Content, &tips); err != nil {
+ return err
+ }
+ if tips.FromToUserID != nil {
+ if tips.FromToUserID.FromUserID == f.loginUserID {
+ return f.SyncFriends(ctx, []string{tips.FromToUserID.ToUserID})
+ }
+ }
+ case constant.FriendInfoUpdatedNotification:
+ var tips sdkws.UserInfoUpdatedTips
+ if err := utils.UnmarshalNotificationElem(msg.Content, &tips); err != nil {
+ return err
+ }
+ if tips.UserID != f.loginUserID {
+ return f.SyncFriends(ctx, []string{tips.UserID})
+ }
+ case constant.BlackAddedNotification:
+ var tips sdkws.BlackAddedTips
+ if err := utils.UnmarshalNotificationElem(msg.Content, &tips); err != nil {
+ return err
+ }
+ if tips.FromToUserID.FromUserID == f.loginUserID {
+ return f.SyncAllBlackList(ctx)
+ }
+ case constant.BlackDeletedNotification:
+ var tips sdkws.BlackDeletedTips
+ if err := utils.UnmarshalNotificationElem(msg.Content, &tips); err != nil {
+ return err
+ }
+ if tips.FromToUserID.FromUserID == f.loginUserID {
+ return f.SyncAllBlackList(ctx)
+ }
+ case constant.FriendsInfoUpdateNotification:
+
+ var tips sdkws.FriendsInfoUpdateTips
+
+ if err := utils.UnmarshalNotificationElem(msg.Content, &tips); err != nil {
+ return err
+ }
+ if tips.FromToUserID.ToUserID == f.loginUserID {
+ return f.SyncFriends(ctx, tips.FriendIDs)
+ }
+ default:
+ return fmt.Errorf("type failed %d", msg.ContentType)
+ }
+ return nil
+}
diff --git a/go/chao-sdk-core/internal/friend/sdk.go b/go/chao-sdk-core/internal/friend/sdk.go
new file mode 100644
index 0000000..c71dd24
--- /dev/null
+++ b/go/chao-sdk-core/internal/friend/sdk.go
@@ -0,0 +1,344 @@
+// Copyright 2021 OpenIM Corporation
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package friend
+
+import (
+ "context"
+
+ friend "github.com/openimsdk/protocol/relation"
+ "github.com/openimsdk/protocol/wrapperspb"
+ "github.com/openimsdk/tools/errs"
+ "github.com/openimsdk/tools/utils/datautil"
+
+ "github.com/openimsdk/openim-sdk-core/v3/internal/util"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/datafetcher"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ sdk "github.com/openimsdk/openim-sdk-core/v3/pkg/sdk_params_callback"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/sdkerrs"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/server_api_params"
+
+ "github.com/openimsdk/tools/log"
+)
+
+func (f *Friend) GetSpecifiedFriendsInfo(ctx context.Context, friendUserIDList []string) ([]*server_api_params.FullUserInfo, error) {
+ datafetcher := datafetcher.NewDataFetcher(
+ f.db,
+ f.friendListTableName(),
+ f.loginUserID,
+ func(localFriend *model_struct.LocalFriend) string {
+ return localFriend.FriendUserID
+ },
+ func(ctx context.Context, values []*model_struct.LocalFriend) error {
+ return f.db.BatchInsertFriend(ctx, values)
+ },
+ func(ctx context.Context, userIDs []string) ([]*model_struct.LocalFriend, error) {
+ return f.db.GetFriendInfoList(ctx, userIDs)
+ },
+ func(ctx context.Context, userIDs []string) ([]*model_struct.LocalFriend, error) {
+ serverFriend, err := f.GetDesignatedFriends(ctx, userIDs)
+ if err != nil {
+ return nil, err
+ }
+ return datautil.Batch(ServerFriendToLocalFriend, serverFriend), nil
+ },
+ )
+ localFriendList, err := datafetcher.FetchMissingAndFillLocal(ctx, friendUserIDList)
+ if err != nil {
+ return nil, err
+ }
+
+ log.ZDebug(ctx, "GetDesignatedFriendsInfo", "localFriendList", localFriendList)
+ blackList, err := f.db.GetBlackInfoList(ctx, friendUserIDList)
+ if err != nil {
+ return nil, err
+ }
+ log.ZDebug(ctx, "GetDesignatedFriendsInfo", "blackList", blackList)
+ m := make(map[string]*model_struct.LocalBlack)
+ for i, black := range blackList {
+ m[black.BlockUserID] = blackList[i]
+ }
+ res := make([]*server_api_params.FullUserInfo, 0, len(localFriendList))
+ for _, localFriend := range localFriendList {
+ res = append(res, &server_api_params.FullUserInfo{
+ PublicInfo: nil,
+ FriendInfo: localFriend,
+ BlackInfo: m[localFriend.FriendUserID],
+ })
+ }
+ return res, nil
+}
+
+func (f *Friend) AddFriend(ctx context.Context, userIDReqMsg *friend.ApplyToAddFriendReq) error {
+ if userIDReqMsg.FromUserID == "" {
+ userIDReqMsg.FromUserID = f.loginUserID
+ }
+ if err := util.ApiPost(ctx, constant.AddFriendRouter, userIDReqMsg, nil); err != nil {
+ return err
+ }
+ return f.SyncAllFriendApplication(ctx)
+}
+
+func (f *Friend) GetFriendApplicationListAsRecipient(ctx context.Context) ([]*model_struct.LocalFriendRequest, error) {
+ return f.db.GetRecvFriendApplication(ctx)
+}
+
+func (f *Friend) GetFriendApplicationListAsApplicant(ctx context.Context) ([]*model_struct.LocalFriendRequest, error) {
+ return f.db.GetSendFriendApplication(ctx)
+}
+
+func (f *Friend) AcceptFriendApplication(ctx context.Context, userIDHandleMsg *sdk.ProcessFriendApplicationParams) error {
+ return f.RespondFriendApply(ctx, &friend.RespondFriendApplyReq{FromUserID: userIDHandleMsg.ToUserID, ToUserID: f.loginUserID, HandleResult: constant.FriendResponseAgree, HandleMsg: userIDHandleMsg.HandleMsg})
+}
+
+func (f *Friend) RefuseFriendApplication(ctx context.Context, userIDHandleMsg *sdk.ProcessFriendApplicationParams) error {
+ return f.RespondFriendApply(ctx, &friend.RespondFriendApplyReq{FromUserID: userIDHandleMsg.ToUserID, ToUserID: f.loginUserID, HandleResult: constant.FriendResponseRefuse, HandleMsg: userIDHandleMsg.HandleMsg})
+}
+
+func (f *Friend) RespondFriendApply(ctx context.Context, req *friend.RespondFriendApplyReq) error {
+ if req.ToUserID == "" {
+ req.ToUserID = f.loginUserID
+ }
+ if err := util.ApiPost(ctx, constant.AddFriendResponse, req, nil); err != nil {
+ return err
+ }
+ if req.HandleResult == constant.FriendResponseAgree {
+ _ = f.SyncFriends(ctx, []string{req.FromUserID})
+ }
+ _ = f.SyncAllFriendApplication(ctx)
+ return nil
+ // return f.SyncFriendApplication(ctx)
+}
+
+func (f *Friend) CheckFriend(ctx context.Context, friendUserIDList []string) ([]*server_api_params.UserIDResult, error) {
+ friendList, err := f.db.GetFriendInfoList(ctx, friendUserIDList)
+ if err != nil {
+ return nil, err
+ }
+ blackList, err := f.db.GetBlackInfoList(ctx, friendUserIDList)
+ if err != nil {
+ return nil, err
+ }
+ res := make([]*server_api_params.UserIDResult, 0, len(friendUserIDList))
+ for _, v := range friendUserIDList {
+ var r server_api_params.UserIDResult
+ isBlack := false
+ isFriend := false
+ for _, b := range blackList {
+ if v == b.BlockUserID {
+ isBlack = true
+ break
+ }
+ }
+ for _, f := range friendList {
+ if v == f.FriendUserID {
+ isFriend = true
+ break
+ }
+ }
+ r.UserID = v
+ if isFriend && !isBlack {
+ r.Result = 1
+ } else {
+ r.Result = 0
+ }
+ res = append(res, &r)
+ }
+ return res, nil
+}
+
+func (f *Friend) DeleteFriend(ctx context.Context, friendUserID string) error {
+ if err := util.ApiPost(ctx, constant.DeleteFriendRouter, &friend.DeleteFriendReq{OwnerUserID: f.loginUserID, FriendUserID: friendUserID}, nil); err != nil {
+ return err
+ }
+ return f.deleteFriend(ctx, friendUserID)
+}
+
+func (f *Friend) GetFriendList(ctx context.Context) ([]*server_api_params.FullUserInfo, error) {
+ localFriendList, err := f.db.GetAllFriendList(ctx)
+ if err != nil {
+ return nil, err
+ }
+ localBlackList, err := f.db.GetBlackListDB(ctx)
+ if err != nil {
+ return nil, err
+ }
+ m := make(map[string]*model_struct.LocalBlack)
+ for i, black := range localBlackList {
+ m[black.BlockUserID] = localBlackList[i]
+ }
+ res := make([]*server_api_params.FullUserInfo, 0, len(localFriendList))
+ for _, localFriend := range localFriendList {
+ res = append(res, &server_api_params.FullUserInfo{
+ PublicInfo: nil,
+ FriendInfo: localFriend,
+ BlackInfo: m[localFriend.FriendUserID],
+ })
+ }
+ return res, nil
+}
+
+func (f *Friend) GetFriendListPage(ctx context.Context, offset, count int32) ([]*server_api_params.FullUserInfo, error) {
+ dataFetcher := datafetcher.NewDataFetcher(
+ f.db,
+ f.friendListTableName(),
+ f.loginUserID,
+ func(localFriend *model_struct.LocalFriend) string {
+ return localFriend.FriendUserID
+ },
+ func(ctx context.Context, values []*model_struct.LocalFriend) error {
+ return f.db.BatchInsertFriend(ctx, values)
+ },
+ func(ctx context.Context, userIDs []string) ([]*model_struct.LocalFriend, error) {
+ return f.db.GetFriendInfoList(ctx, userIDs)
+ },
+ func(ctx context.Context, userIDs []string) ([]*model_struct.LocalFriend, error) {
+ serverFriend, err := f.GetDesignatedFriends(ctx, userIDs)
+ if err != nil {
+ return nil, err
+ }
+ return datautil.Batch(ServerFriendToLocalFriend, serverFriend), nil
+ },
+ )
+
+ localFriendList, err := dataFetcher.FetchWithPagination(ctx, int(offset), int(count))
+ if err != nil {
+ return nil, err
+ }
+
+ // don't need extra handle. only full pull.
+ localBlackList, err := f.db.GetBlackListDB(ctx)
+ if err != nil {
+ return nil, err
+ }
+ m := make(map[string]*model_struct.LocalBlack)
+ for i, black := range localBlackList {
+ m[black.BlockUserID] = localBlackList[i]
+ }
+ res := make([]*server_api_params.FullUserInfo, 0, len(localFriendList))
+ for _, localFriend := range localFriendList {
+ res = append(res, &server_api_params.FullUserInfo{
+ PublicInfo: nil,
+ FriendInfo: localFriend,
+ BlackInfo: m[localFriend.FriendUserID],
+ })
+ }
+ return res, nil
+}
+
+func (f *Friend) SearchFriends(ctx context.Context, param *sdk.SearchFriendsParam) ([]*sdk.SearchFriendItem, error) {
+ if len(param.KeywordList) == 0 || (!param.IsSearchNickname && !param.IsSearchUserID && !param.IsSearchRemark) {
+ return nil, sdkerrs.ErrArgs.WrapMsg("keyword is null or search field all false")
+ }
+ localFriendList, err := f.db.SearchFriendList(ctx, param.KeywordList[0], param.IsSearchUserID, param.IsSearchNickname, param.IsSearchRemark)
+ if err != nil {
+ return nil, err
+ }
+ localBlackList, err := f.db.GetBlackListDB(ctx)
+ if err != nil {
+ return nil, err
+ }
+ m := make(map[string]struct{})
+ for _, black := range localBlackList {
+ m[black.BlockUserID] = struct{}{}
+ }
+ res := make([]*sdk.SearchFriendItem, 0, len(localFriendList))
+ for i, localFriend := range localFriendList {
+ var relationship int
+ if _, ok := m[localFriend.FriendUserID]; ok {
+ relationship = constant.BlackRelationship
+ } else {
+ relationship = constant.FriendRelationship
+ }
+ res = append(res, &sdk.SearchFriendItem{
+ LocalFriend: *localFriendList[i],
+ Relationship: relationship,
+ })
+ }
+ return res, nil
+}
+
+func (f *Friend) SetFriendRemark(ctx context.Context, userIDRemark *sdk.SetFriendRemarkParams) error {
+ if err := util.ApiPost(ctx, constant.SetFriendRemark, &friend.SetFriendRemarkReq{OwnerUserID: f.loginUserID, FriendUserID: userIDRemark.ToUserID, Remark: userIDRemark.Remark}, nil); err != nil {
+ return err
+ }
+ return f.SyncFriends(ctx, []string{userIDRemark.ToUserID})
+}
+
+func (f *Friend) PinFriends(ctx context.Context, friends *sdk.SetFriendPinParams) error {
+ if err := util.ApiPost(ctx, constant.UpdateFriends, &friend.UpdateFriendsReq{OwnerUserID: f.loginUserID, FriendUserIDs: friends.ToUserIDs, IsPinned: friends.IsPinned}, nil); err != nil {
+ return err
+ }
+ return f.SyncFriends(ctx, friends.ToUserIDs)
+}
+
+func (f *Friend) AddBlack(ctx context.Context, blackUserID string, ex string) error {
+ if err := util.ApiPost(ctx, constant.AddBlackRouter, &friend.AddBlackReq{OwnerUserID: f.loginUserID, BlackUserID: blackUserID, Ex: ex}, nil); err != nil {
+ return err
+ }
+ return f.SyncAllBlackList(ctx)
+}
+
+func (f *Friend) RemoveBlack(ctx context.Context, blackUserID string) error {
+ if err := util.ApiPost(ctx, constant.RemoveBlackRouter, &friend.RemoveBlackReq{OwnerUserID: f.loginUserID, BlackUserID: blackUserID}, nil); err != nil {
+ return err
+ }
+ return f.SyncAllBlackList(ctx)
+}
+
+func (f *Friend) GetBlackList(ctx context.Context) ([]*model_struct.LocalBlack, error) {
+ return f.db.GetBlackListDB(ctx)
+}
+
+func (f *Friend) SetFriendsEx(ctx context.Context, friendIDs []string, ex string) error {
+ if err := util.ApiPost(ctx, constant.UpdateFriends, &friend.UpdateFriendsReq{OwnerUserID: f.loginUserID, FriendUserIDs: friendIDs, Ex: &wrapperspb.StringValue{
+ Value: ex,
+ }}, nil); err != nil {
+ return err
+ }
+ // Check if the specified ID is a friend
+ friendResults, err := f.CheckFriend(ctx, friendIDs)
+ if err != nil {
+ return errs.WrapMsg(err, "Error checking friend status")
+ }
+
+ // Determine if friendID is indeed a friend
+ // Iterate over each friendID
+ for _, friendID := range friendIDs {
+ isFriend := false
+
+ // Check if this friendID is in the friendResults
+ for _, result := range friendResults {
+ if result.UserID == friendID && result.Result == 1 { // Assuming result 1 means they are friends
+ isFriend = true
+ break
+ }
+ }
+
+ // If this friendID is not a friend, return an error
+ if !isFriend {
+ return errs.ErrRecordNotFound.WrapMsg("Not friend")
+ }
+ }
+
+ // If the code reaches here, all friendIDs are confirmed as friends
+ // Update friend information if they are friends
+
+ updateErr := f.db.UpdateColumnsFriend(ctx, friendIDs, map[string]interface{}{"Ex": ex})
+ if updateErr != nil {
+ return errs.WrapMsg(updateErr, "Error updating friend information")
+ }
+ return nil
+}
diff --git a/go/chao-sdk-core/internal/friend/sync.go b/go/chao-sdk-core/internal/friend/sync.go
new file mode 100644
index 0000000..21caef6
--- /dev/null
+++ b/go/chao-sdk-core/internal/friend/sync.go
@@ -0,0 +1,180 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package friend
+
+import (
+ "context"
+ "fmt"
+ "github.com/openimsdk/tools/utils/datautil"
+ "time"
+
+ "github.com/openimsdk/openim-sdk-core/v3/internal/util"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ friend "github.com/openimsdk/protocol/relation"
+ "github.com/openimsdk/protocol/sdkws"
+ "github.com/openimsdk/tools/log"
+)
+
+func (f *Friend) SyncBothFriendRequest(ctx context.Context, fromUserID, toUserID string) error {
+ var resp friend.GetDesignatedFriendsApplyResp
+ if err := util.ApiPost(ctx, constant.GetDesignatedFriendsApplyRouter, &friend.GetDesignatedFriendsApplyReq{FromUserID: fromUserID, ToUserID: toUserID}, &resp); err != nil {
+ return nil
+ }
+ localData, err := f.db.GetBothFriendReq(ctx, fromUserID, toUserID)
+ if err != nil {
+ return err
+ }
+ if toUserID == f.loginUserID {
+ return f.requestRecvSyncer.Sync(ctx, datautil.Batch(ServerFriendRequestToLocalFriendRequest, resp.FriendRequests), localData, nil)
+ } else if fromUserID == f.loginUserID {
+ return f.requestSendSyncer.Sync(ctx, datautil.Batch(ServerFriendRequestToLocalFriendRequest, resp.FriendRequests), localData, nil)
+ }
+ return nil
+}
+
+// send
+func (f *Friend) SyncAllSelfFriendApplication(ctx context.Context) error {
+ req := &friend.GetPaginationFriendsApplyFromReq{UserID: f.loginUserID, Pagination: &sdkws.RequestPagination{}}
+ fn := func(resp *friend.GetPaginationFriendsApplyFromResp) []*sdkws.FriendRequest {
+ return resp.FriendRequests
+ }
+ requests, err := util.GetPageAll(ctx, constant.GetSelfFriendApplicationListRouter, req, fn)
+ if err != nil {
+ return err
+ }
+ localData, err := f.db.GetSendFriendApplication(ctx)
+ if err != nil {
+ return err
+ }
+ return f.requestSendSyncer.Sync(ctx, datautil.Batch(ServerFriendRequestToLocalFriendRequest, requests), localData, nil)
+}
+
+// recv
+func (f *Friend) SyncAllFriendApplication(ctx context.Context) error {
+ req := &friend.GetPaginationFriendsApplyToReq{UserID: f.loginUserID, Pagination: &sdkws.RequestPagination{}}
+ fn := func(resp *friend.GetPaginationFriendsApplyToResp) []*sdkws.FriendRequest { return resp.FriendRequests }
+ requests, err := util.GetPageAll(ctx, constant.GetFriendApplicationListRouter, req, fn)
+ if err != nil {
+ return err
+ }
+ localData, err := f.db.GetRecvFriendApplication(ctx)
+ if err != nil {
+ return err
+ }
+ return f.requestRecvSyncer.Sync(ctx, datautil.Batch(ServerFriendRequestToLocalFriendRequest, requests), localData, nil)
+}
+
+func (f *Friend) SyncAllFriendList(ctx context.Context) error {
+ t := time.Now()
+ defer func(start time.Time) {
+
+ elapsed := time.Since(start).Milliseconds()
+ log.ZDebug(ctx, "SyncAllFriendList fn call end", "cost time", fmt.Sprintf("%d ms", elapsed))
+
+ }(t)
+ return f.IncrSyncFriends(ctx)
+ //req := &friend.GetPaginationFriendsReq{UserID: f.loginUserID, Pagination: &sdkws.RequestPagination{}}
+ //fn := func(resp *friend.GetPaginationFriendsResp) []*sdkws.FriendInfo { return resp.FriendsInfo }
+ //friends, err := util.GetPageAll(ctx, constant.GetFriendListRouter, req, fn)
+ //if err != nil {
+ // return err
+ //}
+ //localData, err := f.db.GetAllFriendList(ctx)
+ //if err != nil {
+ // return err
+ //}
+ //log.ZDebug(ctx, "sync friend", "data from server", friends, "data from local", localData)
+ //return f.friendSyncer.Sync(ctx, util.Batch(ServerFriendToLocalFriend, friends), localData, nil)
+}
+
+func (f *Friend) deleteFriend(ctx context.Context, friendUserID string) error {
+ return f.IncrSyncFriends(ctx)
+ //friends, err := f.db.GetFriendInfoList(ctx, []string{friendUserID})
+ //if err != nil {
+ // return err
+ //}
+ //if len(friends) == 0 {
+ // return sdkerrs.ErrUserIDNotFound.WrapMsg("friendUserID not found")
+ //}
+ //if err := f.db.DeleteFriendDB(ctx, friendUserID); err != nil {
+ // return err
+ //}
+ //f.friendListener.OnFriendDeleted(*friends[0])
+ //return nil
+}
+
+func (f *Friend) SyncFriends(ctx context.Context, friendIDs []string) error {
+ return f.IncrSyncFriends(ctx)
+ //var resp friend.GetDesignatedFriendsResp
+ //if err := util.ApiPost(ctx, constant.GetDesignatedFriendsRouter, &friend.GetDesignatedFriendsReq{OwnerUserID: f.loginUserID, FriendUserIDs: friendIDs}, &resp); err != nil {
+ // return err
+ //}
+ //localData, err := f.db.GetFriendInfoList(ctx, friendIDs)
+ //if err != nil {
+ // return err
+ //}
+ //log.ZDebug(ctx, "sync friend", "data from server", resp.FriendsInfo, "data from local", localData)
+ //return f.friendSyncer.Sync(ctx, util.Batch(ServerFriendToLocalFriend, resp.FriendsInfo), localData, nil)
+}
+
+//func (f *Friend) SyncFriendPart(ctx context.Context) error {
+// hashResp, err := util.CallApi[friend.GetFriendHashResp](ctx, constant.GetFriendHash, &friend.GetFriendHashReq{UserID: f.loginUserID})
+// if err != nil {
+// return err
+// }
+// friends, err := f.db.GetAllFriendList(ctx)
+// if err != nil {
+// return err
+// }
+// hashCode := f.CalculateHash(friends)
+// log.ZDebug(ctx, "SyncFriendPart", "serverHash", hashResp.Hash, "serverTotal", hashResp.Total, "localHash", hashCode, "localTotal", len(friends))
+// if hashCode == hashResp.Hash {
+// return nil
+// }
+// req := &friend.GetPaginationFriendsReq{
+// UserID: f.loginUserID,
+// Pagination: &sdkws.RequestPagination{PageNumber: pconstant.FirstPageNumber, ShowNumber: pconstant.MaxSyncPullNumber},
+// }
+// resp, err := util.CallApi[friend.GetPaginationFriendsResp](ctx, constant.GetFriendListRouter, req)
+// if err != nil {
+// return err
+// }
+// serverFriends := util.Batch(ServerFriendToLocalFriend, resp.FriendsInfo)
+// return f.friendSyncer.Sync(ctx, serverFriends, friends, nil)
+//}
+
+func (f *Friend) SyncAllBlackList(ctx context.Context) error {
+ req := &friend.GetPaginationBlacksReq{UserID: f.loginUserID, Pagination: &sdkws.RequestPagination{}}
+ fn := func(resp *friend.GetPaginationBlacksResp) []*sdkws.BlackInfo { return resp.Blacks }
+ serverData, err := util.GetPageAll(ctx, constant.GetBlackListRouter, req, fn)
+ if err != nil {
+ return err
+ }
+ log.ZDebug(ctx, "black from server", "data", serverData)
+ localData, err := f.db.GetBlackListDB(ctx)
+ if err != nil {
+ return err
+ }
+ log.ZDebug(ctx, "black from local", "data", localData)
+ return f.blockSyncer.Sync(ctx, datautil.Batch(ServerBlackToLocalBlack, serverData), localData, nil)
+}
+
+func (f *Friend) GetDesignatedFriends(ctx context.Context, friendIDs []string) ([]*sdkws.FriendInfo, error) {
+ resp := &friend.GetDesignatedFriendsResp{}
+ if err := util.ApiPost(ctx, constant.GetDesignatedFriendsRouter, &friend.GetDesignatedFriendsReq{OwnerUserID: f.loginUserID, FriendUserIDs: friendIDs}, &resp); err != nil {
+ return nil, err
+ }
+ return resp.FriendsInfo, nil
+}
diff --git a/go/chao-sdk-core/internal/friend/sync2.go b/go/chao-sdk-core/internal/friend/sync2.go
new file mode 100644
index 0000000..58653e5
--- /dev/null
+++ b/go/chao-sdk-core/internal/friend/sync2.go
@@ -0,0 +1,72 @@
+package friend
+
+import (
+ "context"
+ "github.com/openimsdk/openim-sdk-core/v3/internal/incrversion"
+ "github.com/openimsdk/openim-sdk-core/v3/internal/util"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ friend "github.com/openimsdk/protocol/relation"
+ "github.com/openimsdk/tools/utils/datautil"
+)
+
+const (
+ LocalFriendSyncMaxNum = 1000
+)
+
+func (f *Friend) IncrSyncFriends(ctx context.Context) error {
+ friendSyncer := incrversion.VersionSynchronizer[*model_struct.LocalFriend, *friend.GetIncrementalFriendsResp]{
+ Ctx: ctx,
+ DB: f.db,
+ TableName: f.friendListTableName(),
+ EntityID: f.loginUserID,
+ Key: func(localFriend *model_struct.LocalFriend) string {
+ return localFriend.FriendUserID
+ },
+ Local: func() ([]*model_struct.LocalFriend, error) {
+ return f.db.GetAllFriendList(ctx)
+ },
+ Server: func(version *model_struct.LocalVersionSync) (*friend.GetIncrementalFriendsResp, error) {
+ return util.CallApi[friend.GetIncrementalFriendsResp](ctx, constant.GetIncrementalFriends, &friend.GetIncrementalFriendsReq{
+ UserID: f.loginUserID,
+ Version: version.Version,
+ VersionID: version.VersionID,
+ })
+ },
+ Full: func(resp *friend.GetIncrementalFriendsResp) bool {
+ return resp.Full
+ },
+ Version: func(resp *friend.GetIncrementalFriendsResp) (string, uint64) {
+ return resp.VersionID, resp.Version
+ },
+ Delete: func(resp *friend.GetIncrementalFriendsResp) []string {
+ return resp.Delete
+ },
+ Update: func(resp *friend.GetIncrementalFriendsResp) []*model_struct.LocalFriend {
+ return datautil.Batch(ServerFriendToLocalFriend, resp.Update)
+ },
+ Insert: func(resp *friend.GetIncrementalFriendsResp) []*model_struct.LocalFriend {
+ return datautil.Batch(ServerFriendToLocalFriend, resp.Insert)
+ },
+ Syncer: func(server, local []*model_struct.LocalFriend) error {
+ return f.friendSyncer.Sync(ctx, server, local, nil)
+ },
+ FullSyncer: func(ctx context.Context) error {
+ return f.friendSyncer.FullSync(ctx, f.loginUserID)
+ },
+ FullID: func(ctx context.Context) ([]string, error) {
+ resp, err := util.CallApi[friend.GetFullFriendUserIDsResp](ctx, constant.GetFullFriendUserIDs, &friend.GetFullFriendUserIDsReq{
+ UserID: f.loginUserID,
+ })
+ if err != nil {
+ return nil, err
+ }
+ return resp.UserIDs, nil
+ },
+ }
+ return friendSyncer.Sync()
+}
+
+func (f *Friend) friendListTableName() string {
+ return model_struct.LocalFriend{}.TableName()
+}
diff --git a/go/chao-sdk-core/internal/friend/sync2_test.go b/go/chao-sdk-core/internal/friend/sync2_test.go
new file mode 100644
index 0000000..d782b69
--- /dev/null
+++ b/go/chao-sdk-core/internal/friend/sync2_test.go
@@ -0,0 +1,13 @@
+package friend
+
+import (
+ "fmt"
+ "testing"
+)
+
+func Test_main(t *testing.T) {
+ a := []int{1, 2, 3, 4, 5}
+ fmt.Println(a[:3])
+ fmt.Println(a[3:])
+ fmt.Println(a[2:4])
+}
diff --git a/go/chao-sdk-core/internal/full/full.go b/go/chao-sdk-core/internal/full/full.go
new file mode 100644
index 0000000..050cf6a
--- /dev/null
+++ b/go/chao-sdk-core/internal/full/full.go
@@ -0,0 +1,62 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package full
+
+import (
+ "context"
+ "fmt"
+ "github.com/openimsdk/openim-sdk-core/v3/internal/friend"
+ "github.com/openimsdk/openim-sdk-core/v3/internal/group"
+ "github.com/openimsdk/openim-sdk-core/v3/internal/user"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/common"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/db_interface"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+)
+
+type Full struct {
+ user *user.User
+ friend *friend.Friend
+ group *group.Group
+ ch chan common.Cmd2Value
+ db db_interface.DataBase
+}
+
+func (u *Full) Group() *group.Group {
+ return u.group
+}
+
+func NewFull(user *user.User, friend *friend.Friend, group *group.Group, ch chan common.Cmd2Value,
+ db db_interface.DataBase) *Full {
+ return &Full{user: user, friend: friend, group: group, ch: ch, db: db}
+}
+
+func (u *Full) GetGroupInfoFromLocal2Svr(ctx context.Context, groupID string, sessionType int32) (*model_struct.LocalGroup, error) {
+ switch sessionType {
+ case constant.GroupChatType:
+ return u.group.GetGroupInfoFromLocal2Svr(ctx, groupID)
+ case constant.SuperGroupChatType:
+ return u.GetGroupInfoByGroupID(ctx, groupID)
+ default:
+ return nil, fmt.Errorf("sessionType is not support %d", sessionType)
+ }
+}
+func (u *Full) GetReadDiffusionGroupIDList(ctx context.Context) ([]string, error) {
+ g, err := u.group.GetJoinedDiffusionGroupIDListFromSvr(ctx)
+ if err != nil {
+ return nil, err
+ }
+ return g, err
+}
diff --git a/go/chao-sdk-core/internal/full/full_model.go b/go/chao-sdk-core/internal/full/full_model.go
new file mode 100644
index 0000000..73e65cc
--- /dev/null
+++ b/go/chao-sdk-core/internal/full/full_model.go
@@ -0,0 +1,29 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package full
+
+import (
+ "context"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+)
+
+func (u *Full) GetGroupInfoByGroupID(ctx context.Context, groupID string) (*model_struct.LocalGroup, error) {
+ g2, err := u.group.GetGroupInfoFromLocal2Svr(ctx, groupID)
+ return g2, err
+}
+
+func (u *Full) GetGroupsInfo(ctx context.Context, groupIDs ...string) (map[string]*model_struct.LocalGroup, error) {
+ return u.group.GetGroupsInfoFromLocal2Svr(ctx, groupIDs...)
+}
diff --git a/go/chao-sdk-core/internal/full/open_im_sdk_full.go b/go/chao-sdk-core/internal/full/open_im_sdk_full.go
new file mode 100644
index 0000000..ca26b5d
--- /dev/null
+++ b/go/chao-sdk-core/internal/full/open_im_sdk_full.go
@@ -0,0 +1,199 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package full
+
+import (
+ "context"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/common"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ api "github.com/openimsdk/openim-sdk-core/v3/pkg/server_api_params"
+ "github.com/openimsdk/protocol/sdkws"
+ "github.com/openimsdk/tools/log"
+)
+
+func (u *Full) GetUsersInfo(ctx context.Context, userIDs []string) ([]*api.FullUserInfo, error) {
+ friendList, err := u.db.GetFriendInfoList(ctx, userIDs)
+ if err != nil {
+ return nil, err
+ }
+ blackList, err := u.db.GetBlackInfoList(ctx, userIDs)
+ if err != nil {
+ return nil, err
+ }
+ users, err := u.user.GetServerUserInfo(ctx, userIDs)
+ if err != nil {
+ return nil, err
+ }
+ friendMap := make(map[string]*model_struct.LocalFriend)
+ for i, f := range friendList {
+ friendMap[f.FriendUserID] = friendList[i]
+ }
+ blackMap := make(map[string]*model_struct.LocalBlack)
+ for i, b := range blackList {
+ blackMap[b.BlockUserID] = blackList[i]
+ }
+ userMap := make(map[string]*api.PublicUser)
+ for _, info := range users {
+ userMap[info.UserID] = &api.PublicUser{
+ UserID: info.UserID,
+ Nickname: info.Nickname,
+ FaceURL: info.FaceURL,
+ Ex: info.Ex,
+ CreateTime: info.CreateTime,
+ }
+ }
+ res := make([]*api.FullUserInfo, 0, len(users))
+ for _, userID := range userIDs {
+ info, ok := userMap[userID]
+ if !ok {
+ continue
+ }
+ res = append(res, &api.FullUserInfo{
+ PublicInfo: info,
+ FriendInfo: friendMap[userID],
+ BlackInfo: blackMap[userID],
+ })
+
+ // update single conversation
+
+ conversation, err := u.db.GetConversationByUserID(ctx, userID)
+ if err != nil {
+ log.ZWarn(ctx, "GetConversationByUserID failed", err, "userID", userID)
+ } else {
+ if _, ok := friendMap[userID]; ok {
+ continue
+ }
+ log.ZDebug(ctx, "GetConversationByUserID", "conversation", conversation)
+ if conversation.ShowName != info.Nickname || conversation.FaceURL != info.FaceURL {
+ _ = common.TriggerCmdUpdateConversation(ctx, common.UpdateConNode{Action: constant.UpdateConFaceUrlAndNickName,
+ Args: common.SourceIDAndSessionType{SourceID: userID, SessionType: conversation.ConversationType, FaceURL: info.FaceURL, Nickname: info.Nickname}}, u.ch)
+ _ = common.TriggerCmdUpdateMessage(ctx, common.UpdateMessageNode{Action: constant.UpdateMsgFaceUrlAndNickName,
+ Args: common.UpdateMessageInfo{SessionType: conversation.ConversationType, UserID: userID, FaceURL: info.FaceURL, Nickname: info.Nickname}}, u.ch)
+ }
+ }
+ }
+ return res, nil
+}
+
+func (u *Full) GetUsersInfoWithCache(ctx context.Context, userIDs []string, groupID string) ([]*api.FullUserInfoWithCache, error) {
+ friendList, err := u.db.GetFriendInfoList(ctx, userIDs)
+ if err != nil {
+ return nil, err
+ }
+ blackList, err := u.db.GetBlackInfoList(ctx, userIDs)
+ if err != nil {
+ return nil, err
+ }
+ users, err := u.user.GetServerUserInfo(ctx, userIDs)
+ if err == nil {
+ var strangers []*model_struct.LocalStranger
+ for _, val := range users {
+ strangerTemp := &model_struct.LocalStranger{
+ UserID: val.UserID,
+ Nickname: val.Nickname,
+ FaceURL: val.FaceURL,
+ CreateTime: val.CreateTime,
+ AppMangerLevel: val.AppMangerLevel,
+ Ex: val.Ex,
+ AttachedInfo: val.Ex,
+ GlobalRecvMsgOpt: val.GlobalRecvMsgOpt,
+ }
+ strangers = append(strangers, strangerTemp)
+ }
+ err := u.db.SetStrangerInfo(ctx, strangers)
+ if err != nil {
+ return nil, err
+ }
+ } else {
+ strangerList, err := u.db.GetStrangerInfo(ctx, userIDs)
+ if err != nil {
+ return nil, err
+ }
+ for _, val := range strangerList {
+ userTemp := &sdkws.UserInfo{
+ UserID: val.UserID,
+ Nickname: val.Nickname,
+ FaceURL: val.FaceURL,
+ Ex: val.Ex,
+ CreateTime: val.CreateTime,
+ AppMangerLevel: val.AppMangerLevel,
+ GlobalRecvMsgOpt: val.GlobalRecvMsgOpt,
+ }
+ users = append(users, userTemp)
+ }
+ }
+ var groupMemberList []*model_struct.LocalGroupMember
+ if groupID != "" {
+ groupMemberList, err = u.db.GetGroupSomeMemberInfo(ctx, groupID, userIDs)
+ if err != nil {
+ return nil, err
+ }
+ }
+ friendMap := make(map[string]*model_struct.LocalFriend)
+ for i, f := range friendList {
+ friendMap[f.FriendUserID] = friendList[i]
+ }
+ blackMap := make(map[string]*model_struct.LocalBlack)
+ for i, b := range blackList {
+ blackMap[b.BlockUserID] = blackList[i]
+ }
+ groupMemberMap := make(map[string]*model_struct.LocalGroupMember)
+ for i, b := range groupMemberList {
+ groupMemberMap[b.UserID] = groupMemberList[i]
+ }
+ userMap := make(map[string]*api.PublicUser)
+ for _, info := range users {
+ userMap[info.UserID] = &api.PublicUser{
+ UserID: info.UserID,
+ Nickname: info.Nickname,
+ FaceURL: info.FaceURL,
+ Ex: info.Ex,
+ CreateTime: info.CreateTime,
+ }
+ }
+ res := make([]*api.FullUserInfoWithCache, 0, len(users))
+ for _, userID := range userIDs {
+ info, ok := userMap[userID]
+ if !ok {
+ continue
+ }
+ res = append(res, &api.FullUserInfoWithCache{
+ PublicInfo: info,
+ FriendInfo: friendMap[userID],
+ BlackInfo: blackMap[userID],
+ GroupMemberInfo: groupMemberMap[userID],
+ })
+
+ // update single conversation
+
+ conversation, err := u.db.GetConversationByUserID(ctx, userID)
+ if err != nil {
+ log.ZWarn(ctx, "GetConversationByUserID failed", err, "userID", userID)
+ } else {
+ if _, ok := friendMap[userID]; ok {
+ continue
+ }
+ log.ZDebug(ctx, "GetConversationByUserID", "conversation", conversation)
+ if conversation.ShowName != info.Nickname || conversation.FaceURL != info.FaceURL {
+ _ = common.TriggerCmdUpdateConversation(ctx, common.UpdateConNode{Action: constant.UpdateConFaceUrlAndNickName,
+ Args: common.SourceIDAndSessionType{SourceID: userID, SessionType: conversation.ConversationType, FaceURL: info.FaceURL, Nickname: info.Nickname}}, u.ch)
+ _ = common.TriggerCmdUpdateMessage(ctx, common.UpdateMessageNode{Action: constant.UpdateMsgFaceUrlAndNickName,
+ Args: common.UpdateMessageInfo{SessionType: conversation.ConversationType, UserID: userID, FaceURL: info.FaceURL, Nickname: info.Nickname}}, u.ch)
+ }
+ }
+ }
+ return res, nil
+}
diff --git a/go/chao-sdk-core/internal/group/conversion.go b/go/chao-sdk-core/internal/group/conversion.go
new file mode 100644
index 0000000..27d7be6
--- /dev/null
+++ b/go/chao-sdk-core/internal/group/conversion.go
@@ -0,0 +1,97 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package group
+
+import (
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+
+ "github.com/openimsdk/protocol/sdkws"
+)
+
+func ServerGroupToLocalGroup(info *sdkws.GroupInfo) *model_struct.LocalGroup {
+ return &model_struct.LocalGroup{
+ GroupID: info.GroupID,
+ GroupName: info.GroupName,
+ Notification: info.Notification,
+ Introduction: info.Introduction,
+ FaceURL: info.FaceURL,
+ CreateTime: info.CreateTime,
+ Status: info.Status,
+ CreatorUserID: info.CreatorUserID,
+ GroupType: info.GroupType,
+ OwnerUserID: info.OwnerUserID,
+ MemberCount: int32(info.MemberCount),
+ Ex: info.Ex,
+ NeedVerification: info.NeedVerification,
+ LookMemberInfo: info.LookMemberInfo,
+ ApplyMemberFriend: info.ApplyMemberFriend,
+ NotificationUpdateTime: info.NotificationUpdateTime,
+ NotificationUserID: info.NotificationUserID,
+ //AttachedInfo: info.AttachedInfo, // TODO
+ }
+}
+
+func ServerGroupMemberToLocalGroupMember(info *sdkws.GroupMemberFullInfo) *model_struct.LocalGroupMember {
+ return &model_struct.LocalGroupMember{
+ GroupID: info.GroupID,
+ UserID: info.UserID,
+ Nickname: info.Nickname,
+ FaceURL: info.FaceURL,
+ RoleLevel: info.RoleLevel,
+ JoinTime: info.JoinTime,
+ JoinSource: info.JoinSource,
+ InviterUserID: info.InviterUserID,
+ MuteEndTime: info.MuteEndTime,
+ OperatorUserID: info.OperatorUserID,
+ Ex: info.Ex,
+ //AttachedInfo: info.AttachedInfo, // todo
+ }
+}
+
+func ServerGroupRequestToLocalGroupRequest(info *sdkws.GroupRequest) *model_struct.LocalGroupRequest {
+ return &model_struct.LocalGroupRequest{
+ GroupID: info.GroupInfo.GroupID,
+ GroupName: info.GroupInfo.GroupName,
+ Notification: info.GroupInfo.Notification,
+ Introduction: info.GroupInfo.Introduction,
+ GroupFaceURL: info.GroupInfo.FaceURL,
+ CreateTime: info.GroupInfo.CreateTime,
+ Status: info.GroupInfo.Status,
+ CreatorUserID: info.GroupInfo.CreatorUserID,
+ GroupType: info.GroupInfo.GroupType,
+ OwnerUserID: info.GroupInfo.OwnerUserID,
+ MemberCount: int32(info.GroupInfo.MemberCount),
+ UserID: info.UserInfo.UserID,
+ Nickname: info.UserInfo.Nickname,
+ UserFaceURL: info.UserInfo.FaceURL,
+ //Gender: info.UserInfo.Gender,
+ HandleResult: info.HandleResult,
+ ReqMsg: info.ReqMsg,
+ HandledMsg: info.HandleMsg,
+ ReqTime: info.ReqTime,
+ HandleUserID: info.HandleUserID,
+ HandledTime: info.HandleTime,
+ Ex: info.Ex,
+ //AttachedInfo: info.AttachedInfo,
+ JoinSource: info.JoinSource,
+ InviterUserID: info.InviterUserID,
+ }
+}
+
+func ServerGroupRequestToLocalAdminGroupRequest(info *sdkws.GroupRequest) *model_struct.LocalAdminGroupRequest {
+ return &model_struct.LocalAdminGroupRequest{
+ LocalGroupRequest: *ServerGroupRequestToLocalGroupRequest(info),
+ }
+}
diff --git a/go/chao-sdk-core/internal/group/group.go b/go/chao-sdk-core/internal/group/group.go
new file mode 100644
index 0000000..115d368
--- /dev/null
+++ b/go/chao-sdk-core/internal/group/group.go
@@ -0,0 +1,343 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package group
+
+import (
+ "context"
+
+ "github.com/openimsdk/openim-sdk-core/v3/internal/util"
+ "github.com/openimsdk/openim-sdk-core/v3/open_im_sdk_callback"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/common"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/db_interface"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/page"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/sdkerrs"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/syncer"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/protocol/group"
+ "github.com/openimsdk/protocol/sdkws"
+ "github.com/openimsdk/tools/log"
+ "github.com/openimsdk/tools/utils/datautil"
+)
+
+func NewGroup(loginUserID string, db db_interface.DataBase,
+ conversationCh chan common.Cmd2Value) *Group {
+ g := &Group{
+ loginUserID: loginUserID,
+ db: db,
+ conversationCh: conversationCh,
+ }
+ g.initSyncer()
+ return g
+}
+
+// //utils.GetCurrentTimestampByMill()
+type Group struct {
+ listener func() open_im_sdk_callback.OnGroupListener
+ loginUserID string
+ db db_interface.DataBase
+ groupSyncer *syncer.Syncer[*model_struct.LocalGroup, group.GetJoinedGroupListResp, string]
+ groupMemberSyncer *syncer.Syncer[*model_struct.LocalGroupMember, group.GetGroupMemberListResp, [2]string]
+ groupRequestSyncer *syncer.Syncer[*model_struct.LocalGroupRequest, syncer.NoResp, [2]string]
+ groupAdminRequestSyncer *syncer.Syncer[*model_struct.LocalAdminGroupRequest, syncer.NoResp, [2]string]
+ joinedSuperGroupCh chan common.Cmd2Value
+ heartbeatCmdCh chan common.Cmd2Value
+
+ conversationCh chan common.Cmd2Value
+ // memberSyncMutex sync.RWMutex
+
+ listenerForService open_im_sdk_callback.OnListenerForService
+}
+
+func (g *Group) initSyncer() {
+ g.groupSyncer = syncer.New2[*model_struct.LocalGroup, group.GetJoinedGroupListResp, string](
+ syncer.WithInsert[*model_struct.LocalGroup, group.GetJoinedGroupListResp, string](func(ctx context.Context, value *model_struct.LocalGroup) error {
+ return g.db.InsertGroup(ctx, value)
+ }),
+ syncer.WithDelete[*model_struct.LocalGroup, group.GetJoinedGroupListResp, string](func(ctx context.Context, value *model_struct.LocalGroup) error {
+ if err := g.db.DeleteGroupAllMembers(ctx, value.GroupID); err != nil {
+ return err
+ }
+ if err := g.db.DeleteVersionSync(ctx, g.groupAndMemberVersionTableName(), value.GroupID); err != nil {
+ return err
+ }
+ return g.db.DeleteGroup(ctx, value.GroupID)
+ }),
+ syncer.WithUpdate[*model_struct.LocalGroup, group.GetJoinedGroupListResp, string](func(ctx context.Context, server, local *model_struct.LocalGroup) error {
+ log.ZInfo(ctx, "groupSyncer trigger update function", "groupID", server.GroupID, "server", server, "local", local)
+ return g.db.UpdateGroup(ctx, server)
+ }),
+ syncer.WithUUID[*model_struct.LocalGroup, group.GetJoinedGroupListResp, string](func(value *model_struct.LocalGroup) string {
+ return value.GroupID
+ }),
+ syncer.WithNotice[*model_struct.LocalGroup, group.GetJoinedGroupListResp, string](func(ctx context.Context, state int, server, local *model_struct.LocalGroup) error {
+ switch state {
+ case syncer.Insert:
+ // when a user kicked to the group and invited to the group again, group info maybe updated,
+ // so conversation info need to be updated
+ g.listener().OnJoinedGroupAdded(utils.StructToJsonString(server))
+ _ = common.TriggerCmdUpdateConversation(ctx, common.UpdateConNode{
+ Action: constant.UpdateConFaceUrlAndNickName,
+ Args: common.SourceIDAndSessionType{
+ SourceID: server.GroupID, SessionType: constant.SuperGroupChatType,
+ FaceURL: server.FaceURL, Nickname: server.GroupName,
+ },
+ }, g.conversationCh)
+ case syncer.Delete:
+ g.listener().OnJoinedGroupDeleted(utils.StructToJsonString(local))
+ case syncer.Update:
+ log.ZInfo(ctx, "groupSyncer trigger update", "groupID",
+ server.GroupID, "data", server, "isDismissed", server.Status == constant.GroupStatusDismissed)
+ if server.Status == constant.GroupStatusDismissed {
+ if err := g.db.DeleteGroupAllMembers(ctx, server.GroupID); err != nil {
+ log.ZError(ctx, "delete group all members failed", err)
+ }
+ g.listener().OnGroupDismissed(utils.StructToJsonString(server))
+ } else {
+ g.listener().OnGroupInfoChanged(utils.StructToJsonString(server))
+ if server.GroupName != local.GroupName || local.FaceURL != server.FaceURL {
+ _ = common.TriggerCmdUpdateConversation(ctx, common.UpdateConNode{
+ Action: constant.UpdateConFaceUrlAndNickName,
+ Args: common.SourceIDAndSessionType{
+ SourceID: server.GroupID, SessionType: constant.SuperGroupChatType,
+ FaceURL: server.FaceURL, Nickname: server.GroupName,
+ },
+ }, g.conversationCh)
+ }
+ }
+ }
+ return nil
+ }),
+ syncer.WithBatchInsert[*model_struct.LocalGroup, group.GetJoinedGroupListResp, string](func(ctx context.Context, values []*model_struct.LocalGroup) error {
+ return g.db.BatchInsertGroup(ctx, values)
+ }),
+ syncer.WithDeleteAll[*model_struct.LocalGroup, group.GetJoinedGroupListResp, string](func(ctx context.Context, _ string) error {
+ return g.db.DeleteAllGroup(ctx)
+ }),
+ syncer.WithBatchPageReq[*model_struct.LocalGroup, group.GetJoinedGroupListResp, string](func(entityID string) page.PageReq {
+ return &group.GetJoinedGroupListReq{FromUserID: entityID,
+ Pagination: &sdkws.RequestPagination{ShowNumber: 100}}
+ }),
+ syncer.WithBatchPageRespConvertFunc[*model_struct.LocalGroup, group.GetJoinedGroupListResp, string](func(resp *group.GetJoinedGroupListResp) []*model_struct.LocalGroup {
+ return datautil.Batch(ServerGroupToLocalGroup, resp.Groups)
+ }),
+ syncer.WithReqApiRouter[*model_struct.LocalGroup, group.GetJoinedGroupListResp, string](constant.GetJoinedGroupListRouter),
+ )
+
+ g.groupMemberSyncer = syncer.New2[*model_struct.LocalGroupMember, group.GetGroupMemberListResp, [2]string](
+ syncer.WithInsert[*model_struct.LocalGroupMember, group.GetGroupMemberListResp, [2]string](func(ctx context.Context, value *model_struct.LocalGroupMember) error {
+ return g.db.InsertGroupMember(ctx, value)
+ }),
+ syncer.WithDelete[*model_struct.LocalGroupMember, group.GetGroupMemberListResp, [2]string](func(ctx context.Context, value *model_struct.LocalGroupMember) error {
+ return g.db.DeleteGroupMember(ctx, value.GroupID, value.UserID)
+ }),
+ syncer.WithUpdate[*model_struct.LocalGroupMember, group.GetGroupMemberListResp, [2]string](func(ctx context.Context, server, local *model_struct.LocalGroupMember) error {
+ return g.db.UpdateGroupMember(ctx, server)
+ }),
+ syncer.WithUUID[*model_struct.LocalGroupMember, group.GetGroupMemberListResp, [2]string](func(value *model_struct.LocalGroupMember) [2]string {
+ return [...]string{value.GroupID, value.UserID}
+ }),
+ syncer.WithNotice[*model_struct.LocalGroupMember, group.GetGroupMemberListResp, [2]string](func(ctx context.Context, state int, server, local *model_struct.LocalGroupMember) error {
+ switch state {
+ case syncer.Insert:
+ g.listener().OnGroupMemberAdded(utils.StructToJsonString(server))
+ // When a user is kicked and invited to the group again, group member info will be updated.
+ _ = common.TriggerCmdUpdateMessage(ctx,
+ common.UpdateMessageNode{
+ Action: constant.UpdateMsgFaceUrlAndNickName,
+ Args: common.UpdateMessageInfo{
+ SessionType: constant.SuperGroupChatType, UserID: server.UserID, FaceURL: server.FaceURL,
+ Nickname: server.Nickname, GroupID: server.GroupID,
+ },
+ }, g.conversationCh)
+ case syncer.Delete:
+ g.listener().OnGroupMemberDeleted(utils.StructToJsonString(local))
+ case syncer.Update:
+ g.listener().OnGroupMemberInfoChanged(utils.StructToJsonString(server))
+ if server.Nickname != local.Nickname || server.FaceURL != local.FaceURL {
+ _ = common.TriggerCmdUpdateMessage(ctx,
+ common.UpdateMessageNode{
+ Action: constant.UpdateMsgFaceUrlAndNickName,
+ Args: common.UpdateMessageInfo{
+ SessionType: constant.SuperGroupChatType, UserID: server.UserID, FaceURL: server.FaceURL,
+ Nickname: server.Nickname, GroupID: server.GroupID,
+ },
+ }, g.conversationCh)
+ }
+ }
+ return nil
+ }),
+ syncer.WithBatchInsert[*model_struct.LocalGroupMember, group.GetGroupMemberListResp, [2]string](func(ctx context.Context, values []*model_struct.LocalGroupMember) error {
+ return g.db.BatchInsertGroupMember(ctx, values)
+ }),
+ syncer.WithDeleteAll[*model_struct.LocalGroupMember, group.GetGroupMemberListResp, [2]string](func(ctx context.Context, groupID string) error {
+ return g.db.DeleteGroupAllMembers(ctx, groupID)
+ }),
+ syncer.WithBatchPageReq[*model_struct.LocalGroupMember, group.GetGroupMemberListResp, [2]string](func(entityID string) page.PageReq {
+ return &group.GetGroupMemberListReq{GroupID: entityID, Pagination: &sdkws.RequestPagination{ShowNumber: 100}}
+ }),
+ syncer.WithBatchPageRespConvertFunc[*model_struct.LocalGroupMember, group.GetGroupMemberListResp, [2]string](func(resp *group.GetGroupMemberListResp) []*model_struct.LocalGroupMember {
+ return datautil.Batch(ServerGroupMemberToLocalGroupMember, resp.Members)
+ }),
+ syncer.WithReqApiRouter[*model_struct.LocalGroupMember, group.GetGroupMemberListResp, [2]string](constant.GetGroupMemberListRouter),
+ )
+
+ g.groupRequestSyncer = syncer.New[*model_struct.LocalGroupRequest, syncer.NoResp, [2]string](func(ctx context.Context, value *model_struct.LocalGroupRequest) error {
+ return g.db.InsertGroupRequest(ctx, value)
+ }, func(ctx context.Context, value *model_struct.LocalGroupRequest) error {
+ return g.db.DeleteGroupRequest(ctx, value.GroupID, value.UserID)
+ }, func(ctx context.Context, server, local *model_struct.LocalGroupRequest) error {
+ return g.db.UpdateGroupRequest(ctx, server)
+ }, func(value *model_struct.LocalGroupRequest) [2]string {
+ return [...]string{value.GroupID, value.UserID}
+ }, nil, func(ctx context.Context, state int, server, local *model_struct.LocalGroupRequest) error {
+ switch state {
+ case syncer.Insert:
+ g.listener().OnGroupApplicationAdded(utils.StructToJsonString(server))
+ case syncer.Update:
+ switch server.HandleResult {
+ case constant.FriendResponseAgree:
+ g.listener().OnGroupApplicationAccepted(utils.StructToJsonString(server))
+ case constant.FriendResponseRefuse:
+ g.listener().OnGroupApplicationRejected(utils.StructToJsonString(server))
+ default:
+ g.listener().OnGroupApplicationAdded(utils.StructToJsonString(server))
+ }
+ }
+ return nil
+ })
+
+ g.groupAdminRequestSyncer = syncer.New[*model_struct.LocalAdminGroupRequest, syncer.NoResp, [2]string](func(ctx context.Context, value *model_struct.LocalAdminGroupRequest) error {
+ return g.db.InsertAdminGroupRequest(ctx, value)
+ }, func(ctx context.Context, value *model_struct.LocalAdminGroupRequest) error {
+ return g.db.DeleteAdminGroupRequest(ctx, value.GroupID, value.UserID)
+ }, func(ctx context.Context, server, local *model_struct.LocalAdminGroupRequest) error {
+ return g.db.UpdateAdminGroupRequest(ctx, server)
+ }, func(value *model_struct.LocalAdminGroupRequest) [2]string {
+ return [...]string{value.GroupID, value.UserID}
+ }, nil, func(ctx context.Context, state int, server, local *model_struct.LocalAdminGroupRequest) error {
+ switch state {
+ case syncer.Insert:
+ g.listener().OnGroupApplicationAdded(utils.StructToJsonString(server))
+ case syncer.Update:
+ switch server.HandleResult {
+ case constant.FriendResponseAgree:
+ g.listener().OnGroupApplicationAccepted(utils.StructToJsonString(server))
+ case constant.FriendResponseRefuse:
+ g.listener().OnGroupApplicationRejected(utils.StructToJsonString(server))
+ default:
+ g.listener().OnGroupApplicationAdded(utils.StructToJsonString(server))
+ }
+ }
+ return nil
+ })
+
+}
+
+func (g *Group) SetGroupListener(listener func() open_im_sdk_callback.OnGroupListener) {
+ g.listener = listener
+}
+
+func (g *Group) SetListenerForService(listener open_im_sdk_callback.OnListenerForService) {
+ g.listenerForService = listener
+}
+
+func (g *Group) GetGroupOwnerIDAndAdminIDList(ctx context.Context, groupID string) (ownerID string, adminIDList []string, err error) {
+ localGroup, err := g.db.GetGroupInfoByGroupID(ctx, groupID)
+ if err != nil {
+ return "", nil, err
+ }
+ adminIDList, err = g.db.GetGroupAdminID(ctx, groupID)
+ if err != nil {
+ return "", nil, err
+ }
+ return localGroup.OwnerUserID, adminIDList, nil
+}
+
+func (g *Group) GetGroupInfoFromLocal2Svr(ctx context.Context, groupID string) (*model_struct.LocalGroup, error) {
+ localGroup, err := g.db.GetGroupInfoByGroupID(ctx, groupID)
+ if err == nil {
+ return localGroup, nil
+ }
+ svrGroup, err := g.getGroupsInfoFromSvr(ctx, []string{groupID})
+ if err != nil {
+ return nil, err
+ }
+ if len(svrGroup) == 0 {
+ return nil, sdkerrs.ErrGroupIDNotFound.WrapMsg("server not this group")
+ }
+ return ServerGroupToLocalGroup(svrGroup[0]), nil
+}
+
+func (g *Group) GetGroupsInfoFromLocal2Svr(ctx context.Context, groupIDs ...string) (map[string]*model_struct.LocalGroup, error) {
+ groupMap := make(map[string]*model_struct.LocalGroup)
+ if len(groupIDs) == 0 {
+ return groupMap, nil
+ }
+ groups, err := g.db.GetGroups(ctx, groupIDs)
+ if err != nil {
+ return nil, err
+ }
+ var groupIDsNeedSync []string
+ localGroupIDs := datautil.Slice(groups, func(group *model_struct.LocalGroup) string {
+ return group.GroupID
+ })
+ for _, groupID := range groupIDs {
+ if !datautil.Contain(groupID, localGroupIDs...) {
+ groupIDsNeedSync = append(groupIDsNeedSync, groupID)
+ }
+ }
+
+ if len(groupIDsNeedSync) > 0 {
+ svrGroups, err := g.getGroupsInfoFromSvr(ctx, groupIDsNeedSync)
+ if err != nil {
+ return nil, err
+ }
+ for _, svrGroup := range svrGroups {
+ groups = append(groups, ServerGroupToLocalGroup(svrGroup))
+ }
+ }
+ for _, group := range groups {
+ groupMap[group.GroupID] = group
+ }
+ return groupMap, nil
+}
+
+func (g *Group) getGroupsInfoFromSvr(ctx context.Context, groupIDs []string) ([]*sdkws.GroupInfo, error) {
+ resp, err := util.CallApi[group.GetGroupsInfoResp](ctx, constant.GetGroupsInfoRouter, &group.GetGroupsInfoReq{GroupIDs: groupIDs})
+ if err != nil {
+ return nil, err
+ }
+ return resp.GroupInfos, nil
+}
+
+func (g *Group) getGroupAbstractInfoFromSvr(ctx context.Context, groupIDs []string) (*group.GetGroupAbstractInfoResp, error) {
+ return util.CallApi[group.GetGroupAbstractInfoResp](ctx, constant.GetGroupAbstractInfoRouter, &group.GetGroupAbstractInfoReq{GroupIDs: groupIDs})
+}
+
+func (g *Group) GetJoinedDiffusionGroupIDListFromSvr(ctx context.Context) ([]string, error) {
+ groups, err := g.GetServerJoinGroup(ctx)
+ if err != nil {
+ return nil, err
+ }
+ var groupIDs []string
+ for _, g := range groups {
+ if g.GroupType == constant.WorkingGroup {
+ groupIDs = append(groupIDs, g.GroupID)
+ }
+ }
+ return groupIDs, nil
+}
diff --git a/go/chao-sdk-core/internal/group/notification.go b/go/chao-sdk-core/internal/group/notification.go
new file mode 100644
index 0000000..c691069
--- /dev/null
+++ b/go/chao-sdk-core/internal/group/notification.go
@@ -0,0 +1,245 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package group
+
+import (
+ "context"
+ "fmt"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/tools/errs"
+ "github.com/openimsdk/tools/utils/datautil"
+
+ "github.com/openimsdk/protocol/sdkws"
+ "github.com/openimsdk/tools/log"
+)
+
+func (g *Group) DoNotification(ctx context.Context, msg *sdkws.MsgData) {
+ go func() {
+ if err := g.doNotification(ctx, msg); err != nil {
+ log.ZError(ctx, "DoGroupNotification failed", err)
+ }
+ }()
+}
+
+func (g *Group) doNotification(ctx context.Context, msg *sdkws.MsgData) error {
+ switch msg.ContentType {
+ case constant.GroupCreatedNotification: // 1501
+ var detail sdkws.GroupCreatedTips
+ if err := utils.UnmarshalNotificationElem(msg.Content, &detail); err != nil {
+ return err
+ }
+
+ if err := g.IncrSyncJoinGroup(ctx); err != nil {
+ return err
+ }
+ return g.IncrSyncGroupAndMember(ctx, detail.Group.GroupID)
+
+ case constant.GroupInfoSetNotification: // 1502
+ var detail sdkws.GroupInfoSetTips
+ if err := utils.UnmarshalNotificationElem(msg.Content, &detail); err != nil {
+ return err
+ }
+ return g.onlineSyncGroupAndMember(ctx, detail.Group.GroupID, nil,
+ nil, nil, detail.Group, detail.GroupMemberVersion, detail.GroupMemberVersionID)
+ case constant.JoinGroupApplicationNotification: // 1503
+ var detail sdkws.JoinGroupApplicationTips
+ if err := utils.UnmarshalNotificationElem(msg.Content, &detail); err != nil {
+ return err
+ }
+ if detail.Applicant.UserID == g.loginUserID {
+ return g.SyncSelfGroupApplications(ctx, detail.Group.GroupID)
+ } else {
+ return g.SyncAdminGroupApplications(ctx, detail.Group.GroupID)
+ }
+ case constant.MemberQuitNotification: // 1504
+ var detail sdkws.MemberQuitTips
+ if err := utils.UnmarshalNotificationElem(msg.Content, &detail); err != nil {
+ return err
+ }
+ if detail.QuitUser.UserID == g.loginUserID {
+ return g.IncrSyncJoinGroup(ctx)
+ } else {
+ return g.onlineSyncGroupAndMember(ctx, detail.Group.GroupID, []*sdkws.GroupMemberFullInfo{detail.QuitUser},
+ nil, nil, detail.Group, detail.GroupMemberVersion, detail.GroupMemberVersionID)
+ }
+ case constant.GroupApplicationAcceptedNotification: // 1505
+ var detail sdkws.GroupApplicationAcceptedTips
+ if err := utils.UnmarshalNotificationElem(msg.Content, &detail); err != nil {
+ return err
+ }
+ switch detail.ReceiverAs {
+ case 0:
+ return g.SyncAllSelfGroupApplication(ctx)
+ case 1:
+ return g.SyncAdminGroupApplications(ctx, detail.Group.GroupID)
+ default:
+ return errs.New(fmt.Sprintf("GroupApplicationAcceptedNotification ReceiverAs unknown %d", detail.ReceiverAs)).Wrap()
+ }
+ case constant.GroupApplicationRejectedNotification: // 1506
+ var detail sdkws.GroupApplicationRejectedTips
+ if err := utils.UnmarshalNotificationElem(msg.Content, &detail); err != nil {
+ return err
+ }
+ switch detail.ReceiverAs {
+ case 0:
+ return g.SyncAllSelfGroupApplication(ctx)
+ case 1:
+ return g.SyncAdminGroupApplications(ctx, detail.Group.GroupID)
+ default:
+ return errs.New(fmt.Sprintf("GroupApplicationRejectedNotification ReceiverAs unknown %d", detail.ReceiverAs)).Wrap()
+ }
+ case constant.GroupOwnerTransferredNotification: // 1507
+ var detail sdkws.GroupOwnerTransferredTips
+ if err := utils.UnmarshalNotificationElem(msg.Content, &detail); err != nil {
+ return err
+ }
+ if detail.Group == nil {
+ return errs.New(fmt.Sprintf("group is nil, groupID: %s", detail.Group.GroupID)).Wrap()
+ }
+ return g.onlineSyncGroupAndMember(ctx, detail.Group.GroupID, nil,
+ []*sdkws.GroupMemberFullInfo{detail.NewGroupOwner, detail.OldGroupOwnerInfo}, nil,
+ detail.Group, detail.GroupMemberVersion, detail.GroupMemberVersionID)
+ case constant.MemberKickedNotification: // 1508
+ var detail sdkws.MemberKickedTips
+ if err := utils.UnmarshalNotificationElem(msg.Content, &detail); err != nil {
+ return err
+ }
+ var self bool
+ for _, info := range detail.KickedUserList {
+ if info.UserID == g.loginUserID {
+ self = true
+ break
+ }
+ }
+ if self {
+ return g.IncrSyncJoinGroup(ctx)
+ } else {
+ return g.onlineSyncGroupAndMember(ctx, detail.Group.GroupID, detail.KickedUserList, nil,
+ nil, detail.Group, detail.GroupMemberVersion, detail.GroupMemberVersionID)
+ }
+ case constant.MemberInvitedNotification: // 1509
+ var detail sdkws.MemberInvitedTips
+ if err := utils.UnmarshalNotificationElem(msg.Content, &detail); err != nil {
+ return err
+ }
+ userIDMap := datautil.SliceSetAny(detail.InvitedUserList, func(e *sdkws.GroupMemberFullInfo) string {
+ return e.UserID
+ })
+ //čĒåˇąäšæ¯čĸĢé蝎įä¸å
+ if _, ok := userIDMap[g.loginUserID]; ok {
+ if err := g.IncrSyncJoinGroup(ctx); err != nil {
+ return err
+ }
+ return g.IncrSyncGroupAndMember(ctx, detail.Group.GroupID)
+ } else {
+ return g.onlineSyncGroupAndMember(ctx, detail.Group.GroupID, nil, nil,
+ detail.InvitedUserList, detail.Group, detail.GroupMemberVersion, detail.GroupMemberVersionID)
+ }
+ case constant.MemberEnterNotification: // 1510
+ var detail sdkws.MemberEnterTips
+ if err := utils.UnmarshalNotificationElem(msg.Content, &detail); err != nil {
+ return err
+ }
+ if detail.EntrantUser.UserID == g.loginUserID {
+ if err := g.IncrSyncJoinGroup(ctx); err != nil {
+ return err
+ }
+ return g.IncrSyncGroupAndMember(ctx, detail.Group.GroupID)
+ } else {
+ return g.onlineSyncGroupAndMember(ctx, detail.Group.GroupID, nil, nil,
+ []*sdkws.GroupMemberFullInfo{detail.EntrantUser}, detail.Group, detail.GroupMemberVersion, detail.GroupMemberVersionID)
+ }
+ case constant.GroupDismissedNotification: // 1511
+ var detail sdkws.GroupDismissedTips
+ if err := utils.UnmarshalNotificationElem(msg.Content, &detail); err != nil {
+ return err
+ }
+ g.listener().OnGroupDismissed(utils.StructToJsonString(detail.Group))
+
+ return g.IncrSyncJoinGroup(ctx)
+ case constant.GroupMemberMutedNotification: // 1512
+ var detail sdkws.GroupMemberMutedTips
+ if err := utils.UnmarshalNotificationElem(msg.Content, &detail); err != nil {
+ return err
+ }
+ return g.onlineSyncGroupAndMember(ctx, detail.Group.GroupID, nil,
+ []*sdkws.GroupMemberFullInfo{detail.MutedUser}, nil, nil,
+ detail.GroupMemberVersion, detail.GroupMemberVersionID)
+ case constant.GroupMemberCancelMutedNotification: // 1513
+ var detail sdkws.GroupMemberCancelMutedTips
+ if err := utils.UnmarshalNotificationElem(msg.Content, &detail); err != nil {
+ return err
+ }
+ return g.onlineSyncGroupAndMember(ctx, detail.Group.GroupID, nil,
+ []*sdkws.GroupMemberFullInfo{detail.MutedUser}, nil, nil,
+ detail.GroupMemberVersion, detail.GroupMemberVersionID)
+ case constant.GroupMutedNotification: // 1514
+ var detail sdkws.GroupMutedTips
+ if err := utils.UnmarshalNotificationElem(msg.Content, &detail); err != nil {
+ return err
+ }
+ return g.onlineSyncGroupAndMember(ctx, detail.Group.GroupID, nil, nil,
+ nil, detail.Group, detail.GroupMemberVersion, detail.GroupMemberVersionID)
+ case constant.GroupCancelMutedNotification: // 1515
+ var detail sdkws.GroupCancelMutedTips
+ if err := utils.UnmarshalNotificationElem(msg.Content, &detail); err != nil {
+ return err
+ }
+ return g.onlineSyncGroupAndMember(ctx, detail.Group.GroupID, nil, nil,
+ nil, detail.Group, detail.GroupMemberVersion, detail.GroupMemberVersionID)
+ case constant.GroupMemberInfoSetNotification: // 1516
+ var detail sdkws.GroupMemberInfoSetTips
+ if err := utils.UnmarshalNotificationElem(msg.Content, &detail); err != nil {
+ return err
+ }
+
+ return g.onlineSyncGroupAndMember(ctx, detail.Group.GroupID, nil,
+ []*sdkws.GroupMemberFullInfo{detail.ChangedUser}, nil, nil,
+ detail.GroupMemberVersion, detail.GroupMemberVersionID)
+ case constant.GroupMemberSetToAdminNotification: // 1517
+ var detail sdkws.GroupMemberInfoSetTips
+ if err := utils.UnmarshalNotificationElem(msg.Content, &detail); err != nil {
+ return err
+ }
+ return g.onlineSyncGroupAndMember(ctx, detail.Group.GroupID, nil,
+ []*sdkws.GroupMemberFullInfo{detail.ChangedUser}, nil, nil,
+ detail.GroupMemberVersion, detail.GroupMemberVersionID)
+ case constant.GroupMemberSetToOrdinaryUserNotification: // 1518
+ var detail sdkws.GroupMemberInfoSetTips
+ if err := utils.UnmarshalNotificationElem(msg.Content, &detail); err != nil {
+ return err
+ }
+ return g.onlineSyncGroupAndMember(ctx, detail.Group.GroupID, nil,
+ []*sdkws.GroupMemberFullInfo{detail.ChangedUser}, nil, nil,
+ detail.GroupMemberVersion, detail.GroupMemberVersionID)
+ case constant.GroupInfoSetAnnouncementNotification: // 1519
+ var detail sdkws.GroupInfoSetAnnouncementTips //
+ if err := utils.UnmarshalNotificationElem(msg.Content, &detail); err != nil {
+ return err
+ }
+ return g.onlineSyncGroupAndMember(ctx, detail.Group.GroupID, nil, nil,
+ nil, detail.Group, detail.GroupMemberVersion, detail.GroupMemberVersionID)
+ case constant.GroupInfoSetNameNotification: // 1520
+ var detail sdkws.GroupInfoSetNameTips //
+ if err := utils.UnmarshalNotificationElem(msg.Content, &detail); err != nil {
+ return err
+ }
+ return g.onlineSyncGroupAndMember(ctx, detail.Group.GroupID, nil,
+ nil, nil, detail.Group, detail.GroupMemberVersion, detail.GroupMemberVersionID)
+ default:
+ return errs.New("unknown tips type", "contentType", msg.ContentType).Wrap()
+ }
+}
diff --git a/go/chao-sdk-core/internal/group/sdk.go b/go/chao-sdk-core/internal/group/sdk.go
new file mode 100644
index 0000000..e52851d
--- /dev/null
+++ b/go/chao-sdk-core/internal/group/sdk.go
@@ -0,0 +1,383 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package group
+
+import (
+ "context"
+ "time"
+
+ "github.com/openimsdk/tools/utils/datautil"
+
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/datafetcher"
+
+ "github.com/openimsdk/openim-sdk-core/v3/internal/util"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/sdk_params_callback"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/sdkerrs"
+
+ "github.com/openimsdk/protocol/group"
+ "github.com/openimsdk/protocol/sdkws"
+ "github.com/openimsdk/protocol/wrapperspb"
+)
+
+func (g *Group) CreateGroup(ctx context.Context, req *group.CreateGroupReq) (*sdkws.GroupInfo, error) {
+ if req.OwnerUserID == "" {
+ req.OwnerUserID = g.loginUserID
+ }
+ if req.GroupInfo.GroupType != constant.WorkingGroup {
+ return nil, sdkerrs.ErrGroupType
+ }
+ req.GroupInfo.CreatorUserID = g.loginUserID
+ resp, err := util.CallApi[group.CreateGroupResp](ctx, constant.CreateGroupRouter, req)
+ if err != nil {
+ return nil, err
+ }
+ if err := g.IncrSyncJoinGroup(ctx); err != nil {
+ return nil, err
+ }
+ if err := g.IncrSyncGroupAndMember(ctx, resp.GroupInfo.GroupID); err != nil {
+ return nil, err
+ }
+ return resp.GroupInfo, nil
+}
+
+func (g *Group) JoinGroup(ctx context.Context, groupID, reqMsg string, joinSource int32, ex string) error {
+ if err := util.ApiPost(ctx, constant.JoinGroupRouter, &group.JoinGroupReq{GroupID: groupID, ReqMessage: reqMsg, JoinSource: joinSource, InviterUserID: g.loginUserID, Ex: ex}, nil); err != nil {
+ return err
+ }
+ if err := g.SyncSelfGroupApplications(ctx, groupID); err != nil {
+ return err
+ }
+ return nil
+}
+
+func (g *Group) QuitGroup(ctx context.Context, groupID string) error {
+ if err := util.ApiPost(ctx, constant.QuitGroupRouter, &group.QuitGroupReq{GroupID: groupID}, nil); err != nil {
+ return err
+ }
+ return nil
+}
+
+func (g *Group) DismissGroup(ctx context.Context, groupID string) error {
+ if err := util.ApiPost(ctx, constant.DismissGroupRouter, &group.DismissGroupReq{GroupID: groupID}, nil); err != nil {
+ return err
+ }
+ return nil
+}
+
+func (g *Group) SetGroupApplyMemberFriend(ctx context.Context, groupID string, rule int32) error {
+ return g.SetGroupInfo(ctx, &sdkws.GroupInfoForSet{GroupID: groupID, ApplyMemberFriend: wrapperspb.Int32(rule)})
+}
+
+func (g *Group) SetGroupLookMemberInfo(ctx context.Context, groupID string, rule int32) error {
+ return g.SetGroupInfo(ctx, &sdkws.GroupInfoForSet{GroupID: groupID, LookMemberInfo: wrapperspb.Int32(rule)})
+}
+
+func (g *Group) SetGroupVerification(ctx context.Context, groupID string, verification int32) error {
+ return g.SetGroupInfo(ctx, &sdkws.GroupInfoForSet{GroupID: groupID, NeedVerification: wrapperspb.Int32(verification)})
+}
+
+func (g *Group) ChangeGroupMute(ctx context.Context, groupID string, isMute bool) (err error) {
+ if isMute {
+ err = util.ApiPost(ctx, constant.MuteGroupRouter, &group.MuteGroupReq{GroupID: groupID}, nil)
+ } else {
+ err = util.ApiPost(ctx, constant.CancelMuteGroupRouter, &group.CancelMuteGroupReq{GroupID: groupID}, nil)
+ }
+ if err != nil {
+ return err
+ }
+ if err := g.IncrSyncGroupAndMember(ctx, groupID); err != nil {
+ return err
+ }
+ return nil
+}
+
+func (g *Group) ChangeGroupMemberMute(ctx context.Context, groupID, userID string, mutedSeconds int) (err error) {
+ if mutedSeconds == 0 {
+ err = util.ApiPost(ctx, constant.CancelMuteGroupMemberRouter, &group.CancelMuteGroupMemberReq{GroupID: groupID, UserID: userID}, nil)
+ } else {
+ err = util.ApiPost(ctx, constant.MuteGroupMemberRouter, &group.MuteGroupMemberReq{GroupID: groupID, UserID: userID, MutedSeconds: uint32(mutedSeconds)}, nil)
+ }
+ if err != nil {
+ return err
+ }
+ return nil
+}
+
+func (g *Group) TransferGroupOwner(ctx context.Context, groupID, newOwnerUserID string) error {
+ if err := util.ApiPost(ctx, constant.TransferGroupRouter, &group.TransferGroupOwnerReq{GroupID: groupID, OldOwnerUserID: g.loginUserID, NewOwnerUserID: newOwnerUserID}, nil); err != nil {
+ return err
+ }
+ if err := g.IncrSyncGroupAndMember(ctx, groupID); err != nil {
+ return err
+ }
+ return nil
+}
+
+func (g *Group) KickGroupMember(ctx context.Context, groupID string, reason string, userIDList []string) error {
+ if err := util.ApiPost(ctx, constant.KickGroupMemberRouter, &group.KickGroupMemberReq{GroupID: groupID, KickedUserIDs: userIDList, Reason: reason}, nil); err != nil {
+ return err
+ }
+ return g.IncrSyncGroupAndMember(ctx, groupID)
+}
+
+func (g *Group) SetGroupInfo(ctx context.Context, groupInfo *sdkws.GroupInfoForSet) error {
+ if err := util.ApiPost(ctx, constant.SetGroupInfoRouter, &group.SetGroupInfoReq{GroupInfoForSet: groupInfo}, nil); err != nil {
+ return err
+ }
+ return g.IncrSyncJoinGroup(ctx)
+}
+
+func (g *Group) SetGroupMemberInfo(ctx context.Context, groupMemberInfo *group.SetGroupMemberInfo) error {
+ if err := util.ApiPost(ctx, constant.SetGroupMemberInfoRouter, &group.SetGroupMemberInfoReq{Members: []*group.SetGroupMemberInfo{groupMemberInfo}}, nil); err != nil {
+ return err
+ }
+ return g.IncrSyncGroupAndMember(ctx, groupMemberInfo.GroupID)
+}
+
+func (g *Group) SetGroupMemberRoleLevel(ctx context.Context, groupID, userID string, roleLevel int) error {
+ return g.SetGroupMemberInfo(ctx, &group.SetGroupMemberInfo{GroupID: groupID, UserID: userID, RoleLevel: wrapperspb.Int32(int32(roleLevel))})
+}
+
+func (g *Group) SetGroupMemberNickname(ctx context.Context, groupID, userID string, groupMemberNickname string) error {
+ return g.SetGroupMemberInfo(ctx, &group.SetGroupMemberInfo{GroupID: groupID, UserID: userID, Nickname: wrapperspb.String(groupMemberNickname)})
+}
+
+func (g *Group) GetJoinedGroupList(ctx context.Context) ([]*model_struct.LocalGroup, error) {
+ return g.db.GetJoinedGroupListDB(ctx)
+}
+
+func (g *Group) GetJoinedGroupListPage(ctx context.Context, offset, count int32) ([]*model_struct.LocalGroup, error) {
+ dataFetcher := datafetcher.NewDataFetcher(
+ g.db,
+ g.groupTableName(),
+ g.loginUserID,
+ func(localGroup *model_struct.LocalGroup) string {
+ return localGroup.GroupID
+ },
+ func(ctx context.Context, values []*model_struct.LocalGroup) error {
+ return g.db.BatchInsertGroup(ctx, values)
+ },
+ func(ctx context.Context, groupIDs []string) ([]*model_struct.LocalGroup, error) {
+ return g.db.GetGroups(ctx, groupIDs)
+ },
+ func(ctx context.Context, groupIDs []string) ([]*model_struct.LocalGroup, error) {
+ serverGroupInfo, err := g.getGroupsInfoFromSvr(ctx, groupIDs)
+ if err != nil {
+ return nil, err
+ }
+ return datautil.Batch(ServerGroupToLocalGroup, serverGroupInfo), nil
+ },
+ )
+ return dataFetcher.FetchWithPagination(ctx, int(offset), int(count))
+}
+
+func (g *Group) GetSpecifiedGroupsInfo(ctx context.Context, groupIDs []string) ([]*model_struct.LocalGroup, error) {
+ dataFetcher := datafetcher.NewDataFetcher(
+ g.db,
+ g.groupTableName(),
+ g.loginUserID,
+ func(localGroup *model_struct.LocalGroup) string {
+ return localGroup.GroupID
+ },
+ func(ctx context.Context, values []*model_struct.LocalGroup) error {
+ return g.db.BatchInsertGroup(ctx, values)
+ },
+ func(ctx context.Context, groupIDs []string) ([]*model_struct.LocalGroup, error) {
+ return g.db.GetGroups(ctx, groupIDs)
+ },
+ func(ctx context.Context, groupIDs []string) ([]*model_struct.LocalGroup, error) {
+ serverGroupInfo, err := g.getGroupsInfoFromSvr(ctx, groupIDs)
+ if err != nil {
+ return nil, err
+ }
+ return datautil.Batch(ServerGroupToLocalGroup, serverGroupInfo), nil
+ },
+ )
+ return dataFetcher.FetchMissingAndFillLocal(ctx, groupIDs)
+}
+
+func (g *Group) SearchGroups(ctx context.Context, param sdk_params_callback.SearchGroupsParam) ([]*model_struct.LocalGroup, error) {
+ if len(param.KeywordList) == 0 || (!param.IsSearchGroupName && !param.IsSearchGroupID) {
+ return nil, sdkerrs.ErrArgs.WrapMsg("keyword is null or search field all false")
+ }
+ groups, err := g.db.GetAllGroupInfoByGroupIDOrGroupName(ctx, param.KeywordList[0], param.IsSearchGroupID, param.IsSearchGroupName) // todo param.KeywordList[0]
+ if err != nil {
+ return nil, err
+ }
+ return groups, nil
+}
+
+// funcation (g *Group) SetGroupInfo(ctx context.Context, groupInfo *sdk_params_callback.SetGroupInfoParam, groupID string) error {
+// return g.SetGroupInfo(ctx, &sdkws.GroupInfoForSet{
+// GroupID: groupID,
+// GroupName: groupInfo.GroupName,
+// Notification: groupInfo.Notification,
+// Introduction: groupInfo.Introduction,
+// FaceURL: groupInfo.FaceURL,
+// Ex: groupInfo.Ex,
+// NeedVerification: wrapperspb.Int32Ptr(groupInfo.NeedVerification),
+// })
+// }
+
+func (g *Group) GetGroupMemberOwnerAndAdmin(ctx context.Context, groupID string) ([]*model_struct.LocalGroupMember, error) {
+ return g.db.GetGroupMemberOwnerAndAdminDB(ctx, groupID)
+}
+
+func (g *Group) GetGroupMemberListByJoinTimeFilter(ctx context.Context, groupID string, offset, count int32, joinTimeBegin, joinTimeEnd int64, userIDs []string) ([]*model_struct.LocalGroupMember, error) {
+ if joinTimeEnd == 0 {
+ joinTimeEnd = time.Now().UnixMilli()
+ }
+ return g.db.GetGroupMemberListSplitByJoinTimeFilter(ctx, groupID, int(offset), int(count), joinTimeBegin, joinTimeEnd, userIDs)
+}
+
+func (g *Group) GetSpecifiedGroupMembersInfo(ctx context.Context, groupID string, userIDList []string) ([]*model_struct.LocalGroupMember, error) {
+ dataFetcher := datafetcher.NewDataFetcher(
+ g.db,
+ g.groupAndMemberVersionTableName(),
+ groupID,
+ func(localGroupMember *model_struct.LocalGroupMember) string {
+ return localGroupMember.UserID
+ },
+ func(ctx context.Context, values []*model_struct.LocalGroupMember) error {
+ return g.db.BatchInsertGroupMember(ctx, values)
+ },
+ func(ctx context.Context, userIDs []string) ([]*model_struct.LocalGroupMember, error) {
+ return g.db.GetGroupSomeMemberInfo(ctx, groupID, userIDList)
+ },
+ func(ctx context.Context, userIDs []string) ([]*model_struct.LocalGroupMember, error) {
+ serverGroupMember, err := g.GetDesignatedGroupMembers(ctx, groupID, userIDs)
+ if err != nil {
+ return nil, err
+ }
+ return datautil.Batch(ServerGroupMemberToLocalGroupMember, serverGroupMember), nil
+ },
+ )
+ return dataFetcher.FetchMissingAndFillLocal(ctx, userIDList)
+ // return g.db.GetGroupSomeMemberInfo(ctx, groupID, userIDList)
+}
+
+func (g *Group) GetGroupMemberList(ctx context.Context, groupID string, filter, offset, count int32) ([]*model_struct.LocalGroupMember, error) {
+ dataFetcher := datafetcher.NewDataFetcher(
+ g.db,
+ g.groupAndMemberVersionTableName(),
+ groupID,
+ func(localGroupMember *model_struct.LocalGroupMember) string {
+ return localGroupMember.UserID
+ },
+ func(ctx context.Context, values []*model_struct.LocalGroupMember) error {
+ return g.db.BatchInsertGroupMember(ctx, values)
+ },
+ func(ctx context.Context, userIDs []string) ([]*model_struct.LocalGroupMember, error) {
+ return g.db.GetGroupMemberListByUserIDs(ctx, groupID, filter, userIDs)
+ },
+ func(ctx context.Context, userIDs []string) ([]*model_struct.LocalGroupMember, error) {
+ serverGroupMember, err := g.GetDesignatedGroupMembers(ctx, groupID, userIDs)
+ if err != nil {
+ return nil, err
+ }
+ return datautil.Batch(ServerGroupMemberToLocalGroupMember, serverGroupMember), nil
+ },
+ )
+ return dataFetcher.FetchWithPagination(ctx, int(offset), int(count))
+}
+
+func (g *Group) GetGroupApplicationListAsRecipient(ctx context.Context) ([]*model_struct.LocalAdminGroupRequest, error) {
+ return g.db.GetAdminGroupApplication(ctx)
+}
+
+func (g *Group) GetGroupApplicationListAsApplicant(ctx context.Context) ([]*model_struct.LocalGroupRequest, error) {
+ return g.db.GetSendGroupApplication(ctx)
+}
+
+func (g *Group) SearchGroupMembers(ctx context.Context, searchParam *sdk_params_callback.SearchGroupMembersParam) ([]*model_struct.LocalGroupMember, error) {
+ return g.db.SearchGroupMembersDB(ctx, searchParam.KeywordList[0], searchParam.GroupID, searchParam.IsSearchMemberNickname, searchParam.IsSearchUserID, searchParam.Offset, searchParam.Count)
+}
+
+func (g *Group) IsJoinGroup(ctx context.Context, groupID string) (bool, error) {
+ groupList, err := g.db.GetJoinedGroupListDB(ctx)
+ if err != nil {
+ return false, err
+ }
+ for _, localGroup := range groupList {
+ if localGroup.GroupID == groupID {
+ return true, nil
+ }
+ }
+ return false, nil
+}
+func (g *Group) InviteUserToGroup(ctx context.Context, groupID, reason string, userIDList []string) error {
+ if err := util.ApiPost(ctx, constant.InviteUserToGroupRouter, &group.InviteUserToGroupReq{GroupID: groupID, Reason: reason, InvitedUserIDs: userIDList}, nil); err != nil {
+ return err
+ }
+
+ if err := g.IncrSyncGroupAndMember(ctx, groupID); err != nil {
+ return err
+ }
+ return nil
+}
+
+func (g *Group) AcceptGroupApplication(ctx context.Context, groupID, fromUserID, handleMsg string) error {
+ return g.HandlerGroupApplication(ctx, &group.GroupApplicationResponseReq{GroupID: groupID, FromUserID: fromUserID, HandledMsg: handleMsg, HandleResult: constant.GroupResponseAgree})
+}
+
+func (g *Group) RefuseGroupApplication(ctx context.Context, groupID, fromUserID, handleMsg string) error {
+ return g.HandlerGroupApplication(ctx, &group.GroupApplicationResponseReq{GroupID: groupID, FromUserID: fromUserID, HandledMsg: handleMsg, HandleResult: constant.GroupResponseRefuse})
+}
+
+func (g *Group) HandlerGroupApplication(ctx context.Context, req *group.GroupApplicationResponseReq) error {
+ if err := util.ApiPost(ctx, constant.AcceptGroupApplicationRouter, req, nil); err != nil {
+ return err
+ }
+ // SyncAdminGroupApplication todo
+ return nil
+}
+
+//func (g *Group) SearchGroupMembersV2(ctx context.Context, req *group.SearchGroupMemberReq) ([]*model_struct.LocalGroupMember, error) {
+// if err := req.Check(); err != nil {
+// return nil, err
+// }
+// info, err := g.db.GetGroupInfoByGroupID(ctx, req.GroupID)
+// if err != nil {
+// return nil, err
+// }
+// if info.MemberCount <= pconstant.MaxSyncPullNumber {
+// return g.db.SearchGroupMembersDB(ctx, req.Keyword, req.GroupID, true, false,
+// int((req.Pagination.PageNumber-1)*req.Pagination.ShowNumber), int(req.Pagination.ShowNumber))
+// }
+// resp, err := util.CallApi[group.SearchGroupMemberResp](ctx, constant.SearchGroupMember, req)
+// if err != nil {
+// return nil, err
+// }
+// return datautil.Slice(resp.Members, g.pbGroupMemberToLocal), nil
+//}
+
+func (g *Group) pbGroupMemberToLocal(pb *sdkws.GroupMemberFullInfo) *model_struct.LocalGroupMember {
+ return &model_struct.LocalGroupMember{
+ GroupID: pb.GroupID,
+ UserID: pb.UserID,
+ Nickname: pb.Nickname,
+ FaceURL: pb.FaceURL,
+ RoleLevel: pb.RoleLevel,
+ JoinTime: pb.JoinTime,
+ JoinSource: pb.JoinSource,
+ InviterUserID: pb.InviterUserID,
+ MuteEndTime: pb.MuteEndTime,
+ OperatorUserID: pb.OperatorUserID,
+ Ex: pb.Ex,
+ // AttachedInfo: pb.AttachedInfo,
+ }
+}
diff --git a/go/chao-sdk-core/internal/group/sync.go b/go/chao-sdk-core/internal/group/sync.go
new file mode 100644
index 0000000..16b338c
--- /dev/null
+++ b/go/chao-sdk-core/internal/group/sync.go
@@ -0,0 +1,310 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package group
+
+import (
+ "context"
+ "crypto/md5"
+ "encoding/binary"
+ "encoding/json"
+ "errors"
+ "fmt"
+ "github.com/openimsdk/openim-sdk-core/v3/internal/util"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/protocol/group"
+ "github.com/openimsdk/protocol/sdkws"
+ "github.com/openimsdk/tools/log"
+ "github.com/openimsdk/tools/utils/datautil"
+ "time"
+)
+
+func (g *Group) getGroupHash(members []*model_struct.LocalGroupMember) uint64 {
+ userIDs := datautil.Slice(members, func(member *model_struct.LocalGroupMember) string {
+ return member.UserID
+ })
+ datautil.Sort(userIDs, true)
+ memberMap := make(map[string]*sdkws.GroupMemberFullInfo)
+ for _, member := range members {
+ memberMap[member.UserID] = &sdkws.GroupMemberFullInfo{
+ GroupID: member.GroupID,
+ UserID: member.UserID,
+ RoleLevel: member.RoleLevel,
+ JoinTime: member.JoinTime,
+ Nickname: member.Nickname,
+ FaceURL: member.FaceURL,
+ AppMangerLevel: 0,
+ JoinSource: member.JoinSource,
+ OperatorUserID: member.OperatorUserID,
+ Ex: member.Ex,
+ MuteEndTime: member.MuteEndTime,
+ InviterUserID: member.InviterUserID,
+ }
+ }
+ res := make([]*sdkws.GroupMemberFullInfo, 0, len(members))
+ for _, userID := range userIDs {
+ res = append(res, memberMap[userID])
+ }
+ val, _ := json.Marshal(res)
+ sum := md5.Sum(val)
+ return binary.BigEndian.Uint64(sum[:])
+}
+
+func (g *Group) SyncAllGroupMember(ctx context.Context, groupID string) error {
+ absInfo, err := g.GetGroupAbstractInfo(ctx, groupID)
+ if err != nil {
+ return err
+ }
+ localData, err := g.db.GetGroupMemberListSplit(ctx, groupID, 0, 0, 9999999)
+ if err != nil {
+ return err
+ }
+ hashCode := g.getGroupHash(localData)
+ if len(localData) == int(absInfo.GroupMemberNumber) && hashCode == absInfo.GroupMemberListHash {
+ log.ZDebug(ctx, "SyncAllGroupMember no change in personnel", "groupID", groupID, "hashCode", hashCode, "absInfo.GroupMemberListHash", absInfo.GroupMemberListHash)
+ return nil
+ }
+ members, err := g.GetServerGroupMembers(ctx, groupID)
+ if err != nil {
+ return err
+ }
+ return g.syncGroupMembers(ctx, groupID, members, localData)
+}
+
+func (g *Group) SyncAllGroupMember2(ctx context.Context, groupID string) error {
+ return g.IncrSyncGroupAndMember(ctx, groupID)
+}
+
+func (g *Group) syncGroupMembers(ctx context.Context, groupID string, members []*sdkws.GroupMemberFullInfo, localData []*model_struct.LocalGroupMember) error {
+ log.ZInfo(ctx, "SyncGroupMember Info", "groupID", groupID, "members", len(members), "localData", len(localData))
+ err := g.groupMemberSyncer.Sync(ctx, datautil.Batch(ServerGroupMemberToLocalGroupMember, members), localData, nil)
+ if err != nil {
+ return err
+ }
+ //if len(members) != len(localData) {
+ log.ZInfo(ctx, "SyncGroupMember Sync Group Member Count", "groupID", groupID, "members", len(members), "localData", len(localData))
+ gs, err := g.GetSpecifiedGroupsInfo(ctx, []string{groupID})
+ if err != nil {
+ return err
+ }
+ log.ZInfo(ctx, "SyncGroupMember GetGroupsInfo", "groupID", groupID, "len", len(gs), "gs", gs)
+ if len(gs) > 0 {
+ v := gs[0]
+ count, err := g.db.GetGroupMemberCount(ctx, groupID)
+ if err != nil {
+ return err
+ }
+ if v.MemberCount != count {
+ v.MemberCount = count
+ if v.GroupType == constant.SuperGroupChatType {
+ if err := g.db.UpdateSuperGroup(ctx, v); err != nil {
+ //return err
+ log.ZError(ctx, "SyncGroupMember UpdateSuperGroup", err, "groupID", groupID, "info", v)
+ }
+ } else {
+ if err := g.db.UpdateGroup(ctx, v); err != nil {
+ log.ZError(ctx, "SyncGroupMember UpdateGroup", err, "groupID", groupID, "info", v)
+ }
+ }
+ data, err := json.Marshal(v)
+ if err != nil {
+ return err
+ }
+ log.ZInfo(ctx, "SyncGroupMember OnGroupInfoChanged", "groupID", groupID, "data", string(data))
+ g.listener().OnGroupInfoChanged(string(data))
+ }
+ }
+ //}
+ return nil
+}
+
+func (g *Group) SyncGroupMembers(ctx context.Context, groupID string, userIDs ...string) error {
+ return g.IncrSyncGroupAndMember(ctx, groupID)
+ //members, err := g.GetDesignatedGroupMembers(ctx, groupID, userIDs)
+ //if err != nil {
+ // return err
+ //}
+ //localData, err := g.db.GetGroupSomeMemberInfo(ctx, groupID, userIDs)
+ //if err != nil {
+ // return err
+ //}
+ //return g.syncGroupMembers(ctx, groupID, members, localData)
+}
+
+func (g *Group) SyncGroups(ctx context.Context, groupIDs ...string) error {
+ return g.IncrSyncJoinGroup(ctx)
+ //groups, err := g.getGroupsInfoFromSvr(ctx, groupIDs)
+ //if err != nil {
+ // return err
+ //}
+ //localData, err := g.db.GetGroups(ctx, groupIDs)
+ //if err != nil {
+ // return err
+ //}
+ //if err := g.groupSyncer.Sync(ctx, util.Batch(ServerGroupToLocalGroup, groups), localData, nil); err != nil {
+ // return err
+ //}
+ //return nil
+}
+
+func (g *Group) deleteGroup(ctx context.Context, groupID string) error {
+ return g.IncrSyncJoinGroup(ctx)
+ //groupInfo, err := g.db.GetGroupInfoByGroupID(ctx, groupID)
+ //if err != nil {
+ // return err
+ //}
+ //if err := g.db.DeleteGroup(ctx, groupID); err != nil {
+ // return err
+ //}
+ //g.listener().OnJoinedGroupDeleted(utils.StructToJsonString(groupInfo))
+ //return nil
+}
+
+// func (g *Group) SyncAllJoinedGroupsAndMembers(ctx context.Context) error {
+// t := time.Now()
+// defer func(start time.Time) {
+//
+// elapsed := time.Since(start).Milliseconds()
+// log.ZDebug(ctx, "SyncAllJoinedGroupsAndMembers fn call end", "cost time", fmt.Sprintf("%d ms", elapsed))
+//
+// }(t)
+// _, err := g.syncAllJoinedGroups(ctx)
+// if err != nil {
+// return err
+// }
+// groups, err := g.db.GetJoinedGroupListDB(ctx)
+// if err != nil {
+// return err
+// }
+// var wg sync.WaitGroup
+// for _, group := range groups {
+// wg.Add(1)
+// go func(groupID string) {
+// defer wg.Done()
+// if err := g.SyncAllGroupMember(ctx, groupID); err != nil {
+// log.ZError(ctx, "SyncGroupMember failed", err)
+// }
+// }(group.GroupID)
+// }
+// wg.Wait()
+// return nil
+// }
+func (g *Group) SyncAllJoinedGroupsAndMembers(ctx context.Context) error {
+ t := time.Now()
+ defer func(start time.Time) {
+
+ elapsed := time.Since(start).Milliseconds()
+ log.ZDebug(ctx, "SyncAllJoinedGroupsAndMembers fn call end", "cost time", fmt.Sprintf("%d ms", elapsed))
+
+ }(t)
+ if err := g.IncrSyncJoinGroup(ctx); err != nil {
+ return err
+ }
+ return g.IncrSyncJoinGroupMember(ctx)
+}
+
+func (g *Group) syncAllJoinedGroups(ctx context.Context) ([]*sdkws.GroupInfo, error) {
+ groups, err := g.GetServerJoinGroup(ctx)
+ if err != nil {
+ return nil, err
+ }
+ localData, err := g.db.GetJoinedGroupListDB(ctx)
+ if err != nil {
+ return nil, err
+ }
+ if err := g.groupSyncer.Sync(ctx, datautil.Batch(ServerGroupToLocalGroup, groups), localData, nil); err != nil {
+ return nil, err
+ }
+ return groups, nil
+}
+
+func (g *Group) SyncAllSelfGroupApplication(ctx context.Context) error {
+ list, err := g.GetServerSelfGroupApplication(ctx)
+ if err != nil {
+ return err
+ }
+ localData, err := g.db.GetSendGroupApplication(ctx)
+ if err != nil {
+ return err
+ }
+ if err := g.groupRequestSyncer.Sync(ctx, datautil.Batch(ServerGroupRequestToLocalGroupRequest, list), localData, nil); err != nil {
+ return err
+ }
+ // todo
+ return nil
+}
+
+func (g *Group) SyncSelfGroupApplications(ctx context.Context, groupIDs ...string) error {
+ return g.SyncAllSelfGroupApplication(ctx)
+}
+
+func (g *Group) SyncAllAdminGroupApplication(ctx context.Context) error {
+ requests, err := g.GetServerAdminGroupApplicationList(ctx)
+ if err != nil {
+ return err
+ }
+ localData, err := g.db.GetAdminGroupApplication(ctx)
+ if err != nil {
+ return err
+ }
+ return g.groupAdminRequestSyncer.Sync(ctx, datautil.Batch(ServerGroupRequestToLocalAdminGroupRequest, requests), localData, nil)
+}
+
+func (g *Group) SyncAdminGroupApplications(ctx context.Context, groupIDs ...string) error {
+ return g.SyncAllAdminGroupApplication(ctx)
+}
+
+func (g *Group) GetServerJoinGroup(ctx context.Context) ([]*sdkws.GroupInfo, error) {
+ fn := func(resp *group.GetJoinedGroupListResp) []*sdkws.GroupInfo { return resp.Groups }
+ req := &group.GetJoinedGroupListReq{FromUserID: g.loginUserID, Pagination: &sdkws.RequestPagination{}}
+ return util.GetPageAll(ctx, constant.GetJoinedGroupListRouter, req, fn)
+}
+
+func (g *Group) GetServerAdminGroupApplicationList(ctx context.Context) ([]*sdkws.GroupRequest, error) {
+ fn := func(resp *group.GetGroupApplicationListResp) []*sdkws.GroupRequest { return resp.GroupRequests }
+ req := &group.GetGroupApplicationListReq{FromUserID: g.loginUserID, Pagination: &sdkws.RequestPagination{}}
+ return util.GetPageAll(ctx, constant.GetRecvGroupApplicationListRouter, req, fn)
+}
+
+func (g *Group) GetServerSelfGroupApplication(ctx context.Context) ([]*sdkws.GroupRequest, error) {
+ fn := func(resp *group.GetGroupApplicationListResp) []*sdkws.GroupRequest { return resp.GroupRequests }
+ req := &group.GetUserReqApplicationListReq{UserID: g.loginUserID, Pagination: &sdkws.RequestPagination{}}
+ return util.GetPageAll(ctx, constant.GetSendGroupApplicationListRouter, req, fn)
+}
+
+func (g *Group) GetServerGroupMembers(ctx context.Context, groupID string) ([]*sdkws.GroupMemberFullInfo, error) {
+ req := &group.GetGroupMemberListReq{GroupID: groupID, Pagination: &sdkws.RequestPagination{}}
+ fn := func(resp *group.GetGroupMemberListResp) []*sdkws.GroupMemberFullInfo { return resp.Members }
+ return util.GetPageAll(ctx, constant.GetGroupMemberListRouter, req, fn)
+}
+
+func (g *Group) GetDesignatedGroupMembers(ctx context.Context, groupID string, userID []string) ([]*sdkws.GroupMemberFullInfo, error) {
+ resp := &group.GetGroupMembersInfoResp{}
+ if err := util.ApiPost(ctx, constant.GetGroupMembersInfoRouter, &group.GetGroupMembersInfoReq{GroupID: groupID, UserIDs: userID}, resp); err != nil {
+ return nil, err
+ }
+ return resp.Members, nil
+}
+
+func (g *Group) GetGroupAbstractInfo(ctx context.Context, groupID string) (*group.GroupAbstractInfo, error) {
+ resp, err := util.CallApi[group.GetGroupAbstractInfoResp](ctx, constant.GetGroupAbstractInfoRouter, &group.GetGroupAbstractInfoReq{GroupIDs: []string{groupID}})
+ if err != nil {
+ return nil, err
+ }
+ if len(resp.GroupAbstractInfos) == 0 {
+ return nil, errors.New("group not found")
+ }
+ return resp.GroupAbstractInfos[0], nil
+}
diff --git a/go/chao-sdk-core/internal/group/sync2.go b/go/chao-sdk-core/internal/group/sync2.go
new file mode 100644
index 0000000..a64a26c
--- /dev/null
+++ b/go/chao-sdk-core/internal/group/sync2.go
@@ -0,0 +1,347 @@
+package group
+
+import (
+ "context"
+ "sync"
+
+ "gorm.io/gorm"
+
+ "github.com/openimsdk/openim-sdk-core/v3/internal/incrversion"
+ "github.com/openimsdk/openim-sdk-core/v3/internal/util"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ constantpb "github.com/openimsdk/protocol/constant"
+ "github.com/openimsdk/protocol/group"
+ "github.com/openimsdk/protocol/sdkws"
+ "github.com/openimsdk/tools/errs"
+ "github.com/openimsdk/tools/log"
+ "github.com/openimsdk/tools/utils/datautil"
+)
+
+type BatchIncrementalReq struct {
+ UserID string `json:"user_id"`
+ List []*group.GetIncrementalGroupMemberReq `json:"list"`
+}
+type BatchIncrementalResp struct {
+ List map[string]*group.GetIncrementalGroupMemberResp `json:"list"`
+}
+
+func (g *Group) getIncrementalGroupMemberBatch(ctx context.Context, groups []*group.GetIncrementalGroupMemberReq) (map[string]*group.GetIncrementalGroupMemberResp, error) {
+ resp, err := util.CallApi[BatchIncrementalResp](ctx, constant.GetIncrementalGroupMemberBatch, &BatchIncrementalReq{UserID: g.loginUserID, List: groups})
+ if err != nil {
+ return nil, err
+ }
+ return resp.List, nil
+}
+
+func (g *Group) groupAndMemberVersionTableName() string {
+ return "local_group_entities_version"
+}
+
+func (g *Group) groupTableName() string {
+ return model_struct.LocalGroup{}.TableName()
+}
+
+func (g *Group) IncrSyncJoinGroupMember(ctx context.Context) error {
+ groups, err := g.db.GetJoinedGroupListDB(ctx)
+ if err != nil {
+ return err
+ }
+ groupIDs := datautil.Slice(groups, func(e *model_struct.LocalGroup) string {
+ return e.GroupID
+ })
+ return g.IncrSyncGroupAndMember(ctx, groupIDs...)
+}
+
+func (g *Group) IncrSyncGroupAndMember(ctx context.Context, groupIDs ...string) error {
+ var wg sync.WaitGroup
+ if len(groupIDs) == 0 {
+ return nil
+ }
+ const maxSyncNum = constantpb.MaxSyncPullNumber
+ groupIDSet := datautil.SliceSet(groupIDs)
+ var groups []*group.GetIncrementalGroupMemberReq
+ if len(groupIDs) > maxSyncNum {
+ groups = make([]*group.GetIncrementalGroupMemberReq, 0, maxSyncNum)
+ } else {
+ groups = make([]*group.GetIncrementalGroupMemberReq, 0, len(groupIDs))
+ }
+ for {
+ if len(groupIDSet) == 0 {
+ return nil
+ }
+ for groupID := range groupIDSet {
+ if len(groups) == cap(groups) {
+ break
+ }
+ req := group.GetIncrementalGroupMemberReq{
+ GroupID: groupID,
+ }
+ lvs, err := g.db.GetVersionSync(ctx, g.groupAndMemberVersionTableName(), groupID)
+ if err == nil {
+ req.VersionID = lvs.VersionID
+ req.Version = lvs.Version
+ } else if errs.Unwrap(err) != gorm.ErrRecordNotFound {
+ return err
+ }
+ groups = append(groups, &req)
+ }
+ groupVersion, err := g.getIncrementalGroupMemberBatch(ctx, groups)
+ if err != nil {
+ return err
+ }
+ groups = groups[:0]
+ for groupID, resp := range groupVersion {
+ tempResp := resp
+ tempGroupID := groupID
+ wg.Add(1)
+ go func() error {
+ if err := g.syncGroupAndMember(ctx, tempGroupID, tempResp); err != nil {
+ return err
+ }
+ wg.Done()
+ return nil
+ }()
+ delete(groupIDSet, tempGroupID)
+ }
+ wg.Wait()
+ num := len(groupIDSet)
+ _ = num
+ }
+}
+
+func (g *Group) syncGroupAndMember(ctx context.Context, groupID string, resp *group.GetIncrementalGroupMemberResp) error {
+ groupMemberSyncer := incrversion.VersionSynchronizer[*model_struct.LocalGroupMember, *group.GetIncrementalGroupMemberResp]{
+ Ctx: ctx,
+ DB: g.db,
+ TableName: g.groupAndMemberVersionTableName(),
+ EntityID: groupID,
+ Key: func(localGroupMember *model_struct.LocalGroupMember) string {
+ return localGroupMember.UserID
+ },
+ Local: func() ([]*model_struct.LocalGroupMember, error) {
+ return g.db.GetGroupMemberListByGroupID(ctx, groupID)
+ },
+ ServerVersion: func() *group.GetIncrementalGroupMemberResp {
+ return resp
+ },
+ Full: func(resp *group.GetIncrementalGroupMemberResp) bool {
+ return resp.Full
+ },
+ Version: func(resp *group.GetIncrementalGroupMemberResp) (string, uint64) {
+ return resp.VersionID, resp.Version
+ },
+ Delete: func(resp *group.GetIncrementalGroupMemberResp) []string {
+ return resp.Delete
+ },
+ Update: func(resp *group.GetIncrementalGroupMemberResp) []*model_struct.LocalGroupMember {
+ return datautil.Batch(ServerGroupMemberToLocalGroupMember, resp.Update)
+ },
+ Insert: func(resp *group.GetIncrementalGroupMemberResp) []*model_struct.LocalGroupMember {
+ return datautil.Batch(ServerGroupMemberToLocalGroupMember, resp.Insert)
+ },
+ ExtraData: func(resp *group.GetIncrementalGroupMemberResp) any {
+ return resp.Group
+ },
+ ExtraDataProcessor: func(ctx context.Context, data any) error {
+ groupInfo, ok := data.(*sdkws.GroupInfo)
+ if !ok {
+ return errs.New("group info type error")
+ }
+ if groupInfo == nil {
+ return nil
+ }
+ local, err := g.db.GetJoinedGroupListDB(ctx)
+ if err != nil {
+ return err
+ }
+ log.ZDebug(ctx, "group info", "groupInfo", groupInfo)
+ changes := datautil.Batch(ServerGroupToLocalGroup, []*sdkws.GroupInfo{groupInfo})
+ kv := datautil.SliceToMapAny(local, func(e *model_struct.LocalGroup) (string, *model_struct.LocalGroup) {
+ return e.GroupID, e
+ })
+ for i, change := range changes {
+ key := change.GroupID
+ kv[key] = changes[i]
+ }
+ server := datautil.Values(kv)
+ return g.groupSyncer.Sync(ctx, server, local, nil)
+ },
+ Syncer: func(server, local []*model_struct.LocalGroupMember) error {
+ return g.groupMemberSyncer.Sync(ctx, server, local, nil)
+ },
+ FullSyncer: func(ctx context.Context) error {
+ return g.groupMemberSyncer.FullSync(ctx, groupID)
+ },
+ FullID: func(ctx context.Context) ([]string, error) {
+ resp, err := util.CallApi[group.GetFullGroupMemberUserIDsResp](ctx, constant.GetFullGroupMemberUserIDs, &group.GetFullGroupMemberUserIDsReq{
+ GroupID: groupID,
+ })
+ if err != nil {
+ return nil, err
+ }
+ return resp.UserIDs, nil
+ },
+ }
+ return groupMemberSyncer.Sync()
+}
+
+func (g *Group) onlineSyncGroupAndMember(ctx context.Context, groupID string, deleteGroupMembers, updateGroupMembers, insertGroupMembers []*sdkws.GroupMemberFullInfo,
+ updateGroup *sdkws.GroupInfo, version uint64, versionID string) error {
+ groupMemberSyncer := incrversion.VersionSynchronizer[*model_struct.LocalGroupMember, *group.GetIncrementalGroupMemberResp]{
+ Ctx: ctx,
+ DB: g.db,
+ TableName: g.groupAndMemberVersionTableName(),
+ EntityID: groupID,
+ Key: func(localGroupMember *model_struct.LocalGroupMember) string {
+ return localGroupMember.UserID
+ },
+ Local: func() ([]*model_struct.LocalGroupMember, error) {
+ return g.db.GetGroupMemberListByGroupID(ctx, groupID)
+ },
+ ServerVersion: func() *group.GetIncrementalGroupMemberResp {
+ return &group.GetIncrementalGroupMemberResp{
+ Version: version,
+ VersionID: versionID,
+ Full: false,
+ Delete: datautil.Slice(deleteGroupMembers, func(e *sdkws.GroupMemberFullInfo) string {
+ return e.UserID
+ }),
+ Insert: insertGroupMembers,
+ Update: updateGroupMembers,
+ Group: updateGroup,
+ }
+ },
+ Server: func(version *model_struct.LocalVersionSync) (*group.GetIncrementalGroupMemberResp, error) {
+ singleGroupReq := &group.GetIncrementalGroupMemberReq{
+ GroupID: groupID,
+ VersionID: version.VersionID,
+ Version: version.Version,
+ }
+ resp, err := util.CallApi[BatchIncrementalResp](ctx, constant.GetIncrementalGroupMemberBatch,
+ &BatchIncrementalReq{UserID: g.loginUserID, List: []*group.GetIncrementalGroupMemberReq{singleGroupReq}})
+ if err != nil {
+ return nil, err
+ }
+ if resp.List != nil {
+ if singleGroupResp, ok := resp.List[groupID]; ok {
+ return singleGroupResp, nil
+ }
+ }
+ return nil, errs.New("group member version record not found")
+
+ },
+ Full: func(resp *group.GetIncrementalGroupMemberResp) bool {
+ return resp.Full
+ },
+ Version: func(resp *group.GetIncrementalGroupMemberResp) (string, uint64) {
+ return resp.VersionID, resp.Version
+ },
+ Delete: func(resp *group.GetIncrementalGroupMemberResp) []string {
+ return resp.Delete
+ },
+ Update: func(resp *group.GetIncrementalGroupMemberResp) []*model_struct.LocalGroupMember {
+ return datautil.Batch(ServerGroupMemberToLocalGroupMember, resp.Update)
+ },
+ Insert: func(resp *group.GetIncrementalGroupMemberResp) []*model_struct.LocalGroupMember {
+ return datautil.Batch(ServerGroupMemberToLocalGroupMember, resp.Insert)
+ },
+ ExtraData: func(resp *group.GetIncrementalGroupMemberResp) any {
+ return resp.Group
+ },
+ ExtraDataProcessor: func(ctx context.Context, data any) error {
+ groupInfo, ok := data.(*sdkws.GroupInfo)
+ if !ok {
+ return errs.New("group info type error")
+ }
+ if groupInfo == nil {
+ return nil
+ }
+ local, err := g.db.GetJoinedGroupListDB(ctx)
+ if err != nil {
+ return err
+ }
+ log.ZDebug(ctx, "group info", "groupInfo", groupInfo)
+ changes := datautil.Batch(ServerGroupToLocalGroup, []*sdkws.GroupInfo{groupInfo})
+ kv := datautil.SliceToMapAny(local, func(e *model_struct.LocalGroup) (string, *model_struct.LocalGroup) {
+ return e.GroupID, e
+ })
+ for i, change := range changes {
+ key := change.GroupID
+ kv[key] = changes[i]
+ }
+ server := datautil.Values(kv)
+ return g.groupSyncer.Sync(ctx, server, local, nil)
+ },
+ Syncer: func(server, local []*model_struct.LocalGroupMember) error {
+ return g.groupMemberSyncer.Sync(ctx, server, local, nil)
+ },
+ FullSyncer: func(ctx context.Context) error {
+ return g.groupMemberSyncer.FullSync(ctx, groupID)
+ },
+ FullID: func(ctx context.Context) ([]string, error) {
+ resp, err := util.CallApi[group.GetFullGroupMemberUserIDsResp](ctx, constant.GetFullGroupMemberUserIDs, &group.GetFullGroupMemberUserIDsReq{
+ GroupID: groupID,
+ })
+ if err != nil {
+ return nil, err
+ }
+ return resp.UserIDs, nil
+ },
+ }
+ return groupMemberSyncer.CheckVersionSync()
+}
+
+func (g *Group) IncrSyncJoinGroup(ctx context.Context) error {
+ opt := incrversion.VersionSynchronizer[*model_struct.LocalGroup, *group.GetIncrementalJoinGroupResp]{
+ Ctx: ctx,
+ DB: g.db,
+ TableName: g.groupTableName(),
+ EntityID: g.loginUserID,
+ Key: func(LocalGroup *model_struct.LocalGroup) string {
+ return LocalGroup.GroupID
+ },
+ Local: func() ([]*model_struct.LocalGroup, error) {
+ return g.db.GetJoinedGroupListDB(ctx)
+ },
+ Server: func(version *model_struct.LocalVersionSync) (*group.GetIncrementalJoinGroupResp, error) {
+ return util.CallApi[group.GetIncrementalJoinGroupResp](ctx, constant.GetIncrementalJoinGroup, &group.GetIncrementalJoinGroupReq{
+ UserID: g.loginUserID,
+ Version: version.Version,
+ VersionID: version.VersionID,
+ })
+ },
+ Full: func(resp *group.GetIncrementalJoinGroupResp) bool {
+ return resp.Full
+ },
+ Version: func(resp *group.GetIncrementalJoinGroupResp) (string, uint64) {
+ return resp.VersionID, resp.Version
+ },
+ Delete: func(resp *group.GetIncrementalJoinGroupResp) []string {
+ return resp.Delete
+ },
+ Update: func(resp *group.GetIncrementalJoinGroupResp) []*model_struct.LocalGroup {
+ return datautil.Batch(ServerGroupToLocalGroup, resp.Update)
+ },
+ Insert: func(resp *group.GetIncrementalJoinGroupResp) []*model_struct.LocalGroup {
+ return datautil.Batch(ServerGroupToLocalGroup, resp.Insert)
+ },
+ Syncer: func(server, local []*model_struct.LocalGroup) error {
+ return g.groupSyncer.Sync(ctx, server, local, nil)
+ },
+ FullSyncer: func(ctx context.Context) error {
+ return g.groupSyncer.FullSync(ctx, g.loginUserID)
+ },
+ FullID: func(ctx context.Context) ([]string, error) {
+ resp, err := util.CallApi[group.GetFullJoinGroupIDsResp](ctx, constant.GetFullJoinedGroupIDs, &group.GetFullJoinGroupIDsReq{
+ UserID: g.loginUserID,
+ })
+ if err != nil {
+ return nil, err
+ }
+ return resp.GroupIDs, nil
+
+ },
+ }
+ return opt.Sync()
+}
diff --git a/go/chao-sdk-core/internal/group/sync2_test.go b/go/chao-sdk-core/internal/group/sync2_test.go
new file mode 100644
index 0000000..654521e
--- /dev/null
+++ b/go/chao-sdk-core/internal/group/sync2_test.go
@@ -0,0 +1 @@
+package group
diff --git a/go/chao-sdk-core/internal/incrversion/option.go b/go/chao-sdk-core/internal/incrversion/option.go
new file mode 100644
index 0000000..50b43ea
--- /dev/null
+++ b/go/chao-sdk-core/internal/incrversion/option.go
@@ -0,0 +1,265 @@
+package incrversion
+
+import (
+ "context"
+ "reflect"
+ "sort"
+
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/db_interface"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/tools/errs"
+ "github.com/openimsdk/tools/log"
+ "github.com/openimsdk/tools/utils/datautil"
+ "gorm.io/gorm"
+)
+
+type VersionSynchronizer[V, R any] struct {
+ Ctx context.Context
+ DB db_interface.VersionSyncModel
+ TableName string
+ EntityID string
+ Key func(V) string
+ Local func() ([]V, error)
+ ServerVersion func() R
+ Server func(version *model_struct.LocalVersionSync) (R, error)
+ Full func(resp R) bool
+ Version func(resp R) (string, uint64)
+ Delete func(resp R) []string
+ Update func(resp R) []V
+ Insert func(resp R) []V
+ ExtraData func(resp R) any
+ ExtraDataProcessor func(ctx context.Context, data any) error
+ Syncer func(server, local []V) error
+ FullSyncer func(ctx context.Context) error
+ FullID func(ctx context.Context) ([]string, error)
+}
+
+func (o *VersionSynchronizer[V, R]) getVersionInfo() (*model_struct.LocalVersionSync, error) {
+ versionInfo, err := o.DB.GetVersionSync(o.Ctx, o.TableName, o.EntityID)
+ if err != nil && errs.Unwrap(err) != gorm.ErrRecordNotFound {
+ log.ZWarn(o.Ctx, "get version info", err)
+ return nil, err
+
+ }
+ return versionInfo, nil
+}
+
+func (o *VersionSynchronizer[V, R]) updateVersionInfo(lvs *model_struct.LocalVersionSync, resp R) error {
+ lvs.Table = o.TableName
+ lvs.EntityID = o.EntityID
+ lvs.VersionID, lvs.Version = o.Version(resp)
+ return o.DB.SetVersionSync(o.Ctx, lvs)
+}
+func judgeInterfaceIsNil(data any) bool {
+ return reflect.ValueOf(data).Kind() == reflect.Ptr && reflect.ValueOf(data).IsNil()
+}
+
+func (o *VersionSynchronizer[V, R]) Sync() error {
+ var lvs *model_struct.LocalVersionSync
+ var resp R
+ var extraData any
+ if o.ServerVersion == nil {
+ var err error
+ lvs, err = o.getVersionInfo()
+ if err != nil {
+ return err
+ }
+ resp, err = o.Server(lvs)
+ if err != nil {
+ return err
+ }
+ } else {
+ var err error
+ lvs, err = o.getVersionInfo()
+ if err != nil {
+ return err
+ }
+ resp = o.ServerVersion()
+ }
+ delIDs := o.Delete(resp)
+ changes := o.Update(resp)
+ insert := o.Insert(resp)
+ if o.ExtraData != nil {
+ temp := o.ExtraData(resp)
+ if !judgeInterfaceIsNil(temp) {
+ extraData = temp
+ }
+ }
+ if len(delIDs) == 0 && len(changes) == 0 && len(insert) == 0 && !o.Full(resp) && extraData == nil {
+ log.ZDebug(o.Ctx, "no data to sync", "table", o.TableName, "entityID", o.EntityID)
+ return nil
+ }
+
+ if o.Full(resp) {
+ err := o.FullSyncer(o.Ctx)
+ if err != nil {
+ return err
+ }
+ lvs.UIDList, err = o.FullID(o.Ctx)
+ if err != nil {
+ return err
+ }
+ } else {
+ if len(delIDs) > 0 {
+ lvs.UIDList = DeleteElements(lvs.UIDList, delIDs)
+ }
+ if len(insert) > 0 {
+ lvs.UIDList = append(lvs.UIDList, datautil.Slice(insert, o.Key)...)
+
+ }
+ local, err := o.Local()
+ if err != nil {
+ return err
+ }
+ kv := datautil.SliceToMapAny(local, func(v V) (string, V) {
+ return o.Key(v), v
+ })
+
+ changes = append(changes, insert...)
+
+ for i, change := range changes {
+ key := o.Key(change)
+ kv[key] = changes[i]
+ }
+
+ for _, id := range delIDs {
+ delete(kv, id)
+ }
+ server := datautil.Values(kv)
+ if err := o.Syncer(server, local); err != nil {
+ return err
+ }
+ if extraData != nil && o.ExtraDataProcessor != nil {
+ if err := o.ExtraDataProcessor(o.Ctx, extraData); err != nil {
+ return err
+ }
+
+ }
+ }
+ return o.updateVersionInfo(lvs, resp)
+}
+
+func (o *VersionSynchronizer[V, R]) CheckVersionSync() error {
+ lvs, err := o.getVersionInfo()
+ if err != nil {
+ return err
+ }
+ var extraData any
+ resp := o.ServerVersion()
+ delIDs := o.Delete(resp)
+ changes := o.Update(resp)
+ insert := o.Insert(resp)
+ versionID, version := o.Version(resp)
+ if o.ExtraData != nil {
+ temp := o.ExtraData(resp)
+ if !judgeInterfaceIsNil(temp) {
+ extraData = temp
+ }
+ }
+ if len(delIDs) == 0 && len(changes) == 0 && len(insert) == 0 && !o.Full(resp) && extraData == nil {
+ log.ZWarn(o.Ctx, "exception no data to sync", errs.New("notification no data"), "table", o.TableName, "entityID", o.EntityID)
+ return nil
+ }
+ log.ZDebug(o.Ctx, "check version sync", "table", o.TableName, "entityID", o.EntityID, "versionID", versionID, "localVersionID", lvs.VersionID, "version", version, "localVersion", lvs.Version)
+ /// If the version unique ID cannot correspond with the local version,
+ // it indicates that the data might have been tampered with or an exception has occurred.
+ //Trigger the complete client-server incremental synchronization.
+ if versionID != lvs.VersionID {
+ log.ZDebug(o.Ctx, "version id not match", errs.New("version id not match"), "versionID", versionID, "localVersionID", lvs.VersionID)
+ o.ServerVersion = nil
+ return o.Sync()
+ }
+ if lvs.Version+1 == version {
+ if len(delIDs) > 0 {
+ lvs.UIDList = DeleteElements(lvs.UIDList, delIDs)
+ }
+ if len(insert) > 0 {
+ lvs.UIDList = append(lvs.UIDList, datautil.Slice(insert, o.Key)...)
+
+ }
+ local, err := o.Local()
+ if err != nil {
+ return err
+ }
+ kv := datautil.SliceToMapAny(local, func(v V) (string, V) {
+ return o.Key(v), v
+ })
+ changes = append(changes, insert...)
+ for i, change := range changes {
+ key := o.Key(change)
+ kv[key] = changes[i]
+ }
+
+ for _, id := range delIDs {
+ delete(kv, id)
+ }
+ server := datautil.Values(kv)
+ if err := o.Syncer(server, local); err != nil {
+ return err
+ }
+ if extraData != nil && o.ExtraDataProcessor != nil {
+ if err := o.ExtraDataProcessor(o.Ctx, extraData); err != nil {
+ return err
+ }
+
+ }
+ return o.updateVersionInfo(lvs, resp)
+ } else if version <= lvs.Version {
+ log.ZWarn(o.Ctx, "version less than local version", errs.New("version less than local version"),
+ "table", o.TableName, "entityID", o.EntityID, "version", version, "localVersion", lvs.Version)
+ return nil
+ } else {
+ // If the version number has a gap with the local version number,
+ //it indicates that some pushed data might be missing.
+ //Trigger the complete client-server incremental synchronization.
+ o.ServerVersion = nil
+ return o.Sync()
+ }
+}
+
+// DeleteElements å é¤åįä¸å
åĢå¨åĻä¸ä¸Ēåįä¸įå
į´ īŧåšļäŋæåįéĄēåē
+func DeleteElements[E comparable](es []E, toDelete []E) []E {
+ // å°čĻå é¤įå
į´ åå¨å¨åå¸éåä¸
+ deleteSet := make(map[E]struct{}, len(toDelete))
+ for _, e := range toDelete {
+ deleteSet[e] = struct{}{}
+ }
+
+ // éčŋä¸ä¸Ēį´ĸåŧ j æĨčˇč¸Ēæ°įåįäŊįŊŽ
+ j := 0
+ for _, e := range es {
+ if _, found := deleteSet[e]; !found {
+ es[j] = e
+ j++
+ }
+ }
+ return es[:j]
+}
+
+// DeleteElement å é¤åįä¸įæåŽå
į´ īŧåšļäŋæåįéĄēåē
+func DeleteElement[E comparable](es []E, element E) []E {
+ j := 0
+ for _, e := range es {
+ if e != element {
+ es[j] = e
+ j++
+ }
+ }
+ return es[:j]
+}
+
+// Slice Converts slice types in batches and sorts the resulting slice using a custom comparator
+func Slice[E any, T any](es []E, fn func(e E) T, less func(a, b T) bool) []T {
+ // čŊŦæĸåį
+ v := make([]T, len(es))
+ for i := 0; i < len(es); i++ {
+ v[i] = fn(es[i])
+ }
+
+ // æåēåį
+ sort.Slice(v, func(i, j int) bool {
+ return less(v[i], v[j])
+ })
+
+ return v
+}
diff --git a/go/chao-sdk-core/internal/interaction/compressor.go b/go/chao-sdk-core/internal/interaction/compressor.go
new file mode 100644
index 0000000..10414d2
--- /dev/null
+++ b/go/chao-sdk-core/internal/interaction/compressor.go
@@ -0,0 +1,61 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package interaction
+
+import (
+ "bytes"
+ "compress/gzip"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "io"
+)
+
+type Compressor interface {
+ Compress(rawData []byte) ([]byte, error)
+ DeCompress(compressedData []byte) ([]byte, error)
+}
+
+type GzipCompressor struct {
+ compressProtocol string
+}
+
+func NewGzipCompressor() *GzipCompressor {
+ return &GzipCompressor{compressProtocol: "gzip"}
+}
+
+func (g *GzipCompressor) Compress(rawData []byte) ([]byte, error) {
+ gzipBuffer := bytes.Buffer{}
+ gz := gzip.NewWriter(&gzipBuffer)
+ if _, err := gz.Write(rawData); err != nil {
+ return nil, utils.Wrap(err, "")
+ }
+ if err := gz.Close(); err != nil {
+ return nil, utils.Wrap(err, "")
+ }
+ return gzipBuffer.Bytes(), nil
+}
+
+func (g *GzipCompressor) DeCompress(compressedData []byte) ([]byte, error) {
+ buff := bytes.NewBuffer(compressedData)
+ reader, err := gzip.NewReader(buff)
+ if err != nil {
+ return nil, utils.Wrap(err, "NewReader failed")
+ }
+ compressedData, err = io.ReadAll(reader)
+ if err != nil {
+ return nil, utils.Wrap(err, "ReadAll failed")
+ }
+ _ = reader.Close()
+ return compressedData, nil
+}
diff --git a/go/chao-sdk-core/internal/interaction/constant.go b/go/chao-sdk-core/internal/interaction/constant.go
new file mode 100644
index 0000000..a92ac5c
--- /dev/null
+++ b/go/chao-sdk-core/internal/interaction/constant.go
@@ -0,0 +1,39 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package interaction
+
+const (
+ WebSocket = iota
+ Tcp
+)
+
+const (
+ // MessageText is for UTF-8 encoded text messages like JSON.
+ MessageText = iota + 1
+ // MessageBinary is for binary messages like protobufs.
+ MessageBinary
+ // CloseMessage denotes a close control message. The optional message
+ // payload contains a numeric code and text. Use the FormatCloseMessage
+ // function to format a close message payload.
+ CloseMessage = 8
+
+ // PingMessage denotes a ping control message. The optional message payload
+ // is UTF-8 encoded text.
+ PingMessage = 9
+
+ // PongMessage denotes a pong control message. The optional message payload
+ // is UTF-8 encoded text.
+ PongMessage = 10
+)
diff --git a/go/chao-sdk-core/internal/interaction/context.go b/go/chao-sdk-core/internal/interaction/context.go
new file mode 100644
index 0000000..9845010
--- /dev/null
+++ b/go/chao-sdk-core/internal/interaction/context.go
@@ -0,0 +1,52 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package interaction
+
+import (
+ "time"
+
+ "github.com/openimsdk/protocol/constant"
+)
+
+type ConnContext struct {
+ RemoteAddr string
+}
+
+func (c *ConnContext) Deadline() (deadline time.Time, ok bool) {
+ return
+}
+
+func (c *ConnContext) Done() <-chan struct{} {
+ return nil
+}
+
+func (c *ConnContext) Err() error {
+ return nil
+}
+
+func (c *ConnContext) Value(key any) any {
+ switch key {
+ case constant.RemoteAddr:
+ return c.RemoteAddr
+ default:
+ return ""
+ }
+}
+
+func newContext(remoteAddr string) *ConnContext {
+ return &ConnContext{
+ RemoteAddr: remoteAddr,
+ }
+}
diff --git a/go/chao-sdk-core/internal/interaction/encoder.go b/go/chao-sdk-core/internal/interaction/encoder.go
new file mode 100644
index 0000000..2052b80
--- /dev/null
+++ b/go/chao-sdk-core/internal/interaction/encoder.go
@@ -0,0 +1,51 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package interaction
+
+import (
+ "bytes"
+ "encoding/gob"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+)
+
+type Encoder interface {
+ Encode(data interface{}) ([]byte, error)
+ Decode(encodeData []byte, decodeData interface{}) error
+}
+
+type GobEncoder struct {
+}
+
+func NewGobEncoder() *GobEncoder {
+ return &GobEncoder{}
+}
+func (g *GobEncoder) Encode(data interface{}) ([]byte, error) {
+ buff := bytes.Buffer{}
+ enc := gob.NewEncoder(&buff)
+ err := enc.Encode(data)
+ if err != nil {
+ return nil, err
+ }
+ return buff.Bytes(), nil
+}
+func (g *GobEncoder) Decode(encodeData []byte, decodeData interface{}) error {
+ buff := bytes.NewBuffer(encodeData)
+ dec := gob.NewDecoder(buff)
+ err := dec.Decode(decodeData)
+ if err != nil {
+ return utils.Wrap(err, "")
+ }
+ return nil
+}
diff --git a/go/chao-sdk-core/internal/interaction/long_conn_mgr.go b/go/chao-sdk-core/internal/interaction/long_conn_mgr.go
new file mode 100644
index 0000000..5869a8f
--- /dev/null
+++ b/go/chao-sdk-core/internal/interaction/long_conn_mgr.go
@@ -0,0 +1,579 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package interaction
+
+import (
+ "context"
+ "encoding/json"
+ "errors"
+ "fmt"
+ "github.com/openimsdk/openim-sdk-core/v3/open_im_sdk_callback"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/ccontext"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/common"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/sdkerrs"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/sdk_struct"
+ "io"
+ "runtime"
+ "strconv"
+ "strings"
+ "sync"
+ "time"
+
+ "github.com/golang/protobuf/proto"
+ "github.com/gorilla/websocket"
+ "github.com/openimsdk/protocol/sdkws"
+ "github.com/openimsdk/tools/errs"
+ "github.com/openimsdk/tools/log"
+)
+
+const (
+ // Time allowed to write a message to the peer.
+ writeWait = 10 * time.Second
+
+ // Time allowed to read the next pong message from the peer.
+ pongWait = 30 * time.Second
+
+ // Send pings to peer with this period. Must be less than pongWait.
+ pingPeriod = (pongWait * 9) / 10
+
+ // Maximum message size allowed from peer.
+ maxMessageSize = 1024 * 1024
+
+ //Maximum number of reconnection attempts
+ maxReconnectAttempts = 300
+)
+
+const (
+ DefaultNotConnect = iota
+ Closed = iota + 1
+ Connecting
+ Connected
+)
+
+var (
+ newline = []byte{'\n'}
+ space = []byte{' '}
+)
+
+var (
+ ErrChanClosed = errors.New("send channel closed")
+ ErrConnClosed = errors.New("conn has closed")
+ ErrNotSupportMessageProtocol = errors.New("not support message protocol")
+ ErrClientClosed = errors.New("client actively close the connection")
+ ErrPanic = errors.New("panic error")
+)
+
+type LongConnMgr struct {
+ //conn status mutex
+ w sync.Mutex
+ connStatus int
+ // The long connection,can be set tcp or websocket.
+ conn LongConn
+ listener open_im_sdk_callback.OnConnListener
+ // Buffered channel of outbound messages.
+ send chan Message
+ pushMsgAndMaxSeqCh chan common.Cmd2Value
+ conversationCh chan common.Cmd2Value
+ loginMgrCh chan common.Cmd2Value
+ heartbeatCh chan common.Cmd2Value
+ closedErr error
+ ctx context.Context
+ IsCompression bool
+ Syncer *WsRespAsyn
+ encoder Encoder
+ compressor Compressor
+ reconnectStrategy ReconnectStrategy
+
+ mutex sync.Mutex
+ IsBackground bool
+ // write conn lock
+ connWrite *sync.Mutex
+}
+
+type Message struct {
+ Message GeneralWsReq
+ Resp chan *GeneralWsResp
+}
+
+func NewLongConnMgr(ctx context.Context, listener open_im_sdk_callback.OnConnListener, heartbeatCmdCh, pushMsgAndMaxSeqCh, loginMgrCh chan common.Cmd2Value) *LongConnMgr {
+ l := &LongConnMgr{listener: listener, pushMsgAndMaxSeqCh: pushMsgAndMaxSeqCh,
+ loginMgrCh: loginMgrCh, IsCompression: true,
+ Syncer: NewWsRespAsyn(), encoder: NewGobEncoder(), compressor: NewGzipCompressor(),
+ reconnectStrategy: NewExponentialRetry()}
+ l.send = make(chan Message, 10)
+ l.conn = NewWebSocket(WebSocket)
+ l.connWrite = new(sync.Mutex)
+ l.ctx = ctx
+ l.heartbeatCh = heartbeatCmdCh
+ return l
+}
+func (c *LongConnMgr) Run(ctx context.Context) {
+ //fmt.Println(mcontext.GetOperationID(ctx), "login run", string(debug.Stack()))
+ go c.readPump(ctx)
+ go c.writePump(ctx)
+ go c.heartbeat(ctx)
+}
+
+func (c *LongConnMgr) SendReqWaitResp(ctx context.Context, m proto.Message, reqIdentifier int, resp proto.Message) error {
+ data, err := proto.Marshal(m)
+ if err != nil {
+ return sdkerrs.ErrArgs
+ }
+ msg := Message{
+ Message: GeneralWsReq{
+ ReqIdentifier: reqIdentifier,
+ SendID: ccontext.Info(ctx).UserID(),
+ OperationID: ccontext.Info(ctx).OperationID(),
+ Data: data,
+ },
+ Resp: make(chan *GeneralWsResp, 1),
+ }
+ c.send <- msg
+ log.ZDebug(ctx, "send message to send channel success", "msg", m, "reqIdentifier", reqIdentifier)
+ select {
+ case <-ctx.Done():
+ return sdkerrs.ErrCtxDeadline
+ case v, ok := <-msg.Resp:
+ if !ok {
+ return errors.New("response channel closed")
+ }
+ if v.ErrCode != 0 {
+ return errs.NewCodeError(v.ErrCode, v.ErrMsg)
+ }
+ if err := proto.Unmarshal(v.Data, resp); err != nil {
+ return sdkerrs.ErrArgs
+ }
+ return nil
+ }
+}
+
+// readPump pumps messages from the websocket connection to the hub.
+//
+// The application runs readPump in a per-connection goroutine. The application
+// ensures that there is at most one reader on a connection by executing all
+// reads from this goroutine.
+
+func (c *LongConnMgr) readPump(ctx context.Context) {
+ log.ZDebug(ctx, "readPump start", "goroutine ID:", getGoroutineID())
+ defer func() {
+ _ = c.close()
+ log.ZWarn(c.ctx, "readPump closed", c.closedErr)
+ }()
+ connNum := 0
+ //c.conn.SetPongHandler(function(string) error { c.conn.SetReadDeadline(time.Now().Add(pongWait)); return nil })
+ for {
+ ctx = ccontext.WithOperationID(ctx, utils.OperationIDGenerator())
+ needRecon, err := c.reConn(ctx, &connNum)
+ if !needRecon {
+ c.closedErr = err
+ return
+ }
+ if err != nil {
+ log.ZWarn(c.ctx, "reConn", err)
+ time.Sleep(c.reconnectStrategy.GetSleepInterval())
+ continue
+ }
+ c.conn.SetReadLimit(maxMessageSize)
+ _ = c.conn.SetReadDeadline(pongWait)
+ messageType, message, err := c.conn.ReadMessage()
+ if err != nil {
+ //if websocket.IsUnexpectedCloseError(err, websocket.CloseGoingAway, websocket.CloseAbnormalClosure) {
+ // log.Printf("error: %v", err)
+ //}
+ //break
+ //c.closedErr = err
+ log.ZError(c.ctx, "readMessage err", err, "goroutine ID:", getGoroutineID())
+ _ = c.close()
+ continue
+ }
+ switch messageType {
+ case MessageBinary:
+ err := c.handleMessage(message)
+ if err != nil {
+ c.closedErr = err
+ return
+ }
+ case MessageText:
+ c.closedErr = ErrNotSupportMessageProtocol
+ return
+ //case PingMessage:
+ // err := c.writePongMsg()
+ // log.ZError(c.ctx, "writePongMsg", err)
+ case CloseMessage:
+ c.closedErr = ErrClientClosed
+ return
+ default:
+ }
+
+ }
+}
+
+// writePump pumps messages from the hub to the websocket connection.
+//
+// A goroutine running writePump is started for each connection. The
+// application ensures that there is at most one writer to a connection by
+// executing all writes from this goroutine.
+func (c *LongConnMgr) writePump(ctx context.Context) {
+ log.ZDebug(ctx, "writePump start", "goroutine ID:", getGoroutineID())
+
+ defer func() {
+ c.close()
+ close(c.send)
+ }()
+ for {
+ select {
+ case <-ctx.Done():
+ c.closedErr = ctx.Err()
+ return
+ case message, ok := <-c.send:
+ if !ok {
+ // The hub closed the channel.
+ _ = c.conn.SetWriteDeadline(writeWait)
+ err := c.conn.WriteMessage(websocket.CloseMessage, []byte{})
+ if err != nil {
+ log.ZError(c.ctx, "send close message error", err)
+ }
+ c.closedErr = ErrChanClosed
+ return
+ }
+ log.ZDebug(c.ctx, "writePump recv message", "reqIdentifier", message.Message.ReqIdentifier,
+ "operationID", message.Message.OperationID, "sendID", message.Message.SendID)
+ resp, err := c.sendAndWaitResp(&message.Message)
+ if err != nil {
+ resp = &GeneralWsResp{
+ ReqIdentifier: message.Message.ReqIdentifier,
+ OperationID: message.Message.OperationID,
+ Data: nil,
+ }
+ if code, ok := errs.Unwrap(err).(errs.CodeError); ok {
+ resp.ErrCode = code.Code()
+ resp.ErrMsg = code.Msg()
+ } else {
+ log.ZError(c.ctx, "writeBinaryMsgAndRetry failed", err, "wsReq", message.Message)
+ }
+
+ }
+ nErr := c.Syncer.notifyCh(message.Resp, resp, 1)
+ if nErr != nil {
+ log.ZError(c.ctx, "TriggerCmdNewMsgCome failed", nErr, "wsResp", resp)
+ }
+ }
+ }
+}
+
+func (c *LongConnMgr) heartbeat(ctx context.Context) {
+ log.ZDebug(ctx, "heartbeat start", "goroutine ID:", getGoroutineID())
+ ticker := time.NewTicker(pingPeriod)
+ defer func() {
+ ticker.Stop()
+ log.ZWarn(c.ctx, "heartbeat closed", nil, "heartbeat", "heartbeat done sdk logout.....")
+ }()
+ for {
+ select {
+ case <-ctx.Done():
+ log.ZInfo(ctx, "heartbeat done sdk logout.....")
+ return
+ case <-c.heartbeatCh:
+ c.sendPingToServer(ctx)
+ case <-ticker.C:
+ c.sendPingToServer(ctx)
+ }
+ }
+
+}
+func getGoroutineID() int64 {
+ buf := make([]byte, 64)
+ buf = buf[:runtime.Stack(buf, false)]
+ idField := strings.Fields(strings.TrimPrefix(string(buf), "goroutine "))[0]
+ id, err := strconv.ParseInt(idField, 10, 64)
+ if err != nil {
+ panic(fmt.Sprintf("cannot get goroutine id: %v", err))
+ }
+ return id
+}
+func (c *LongConnMgr) sendPingToServer(ctx context.Context) {
+ if c.conn == nil {
+ return
+ }
+ var m sdkws.GetMaxSeqReq
+ m.UserID = ccontext.Info(ctx).UserID()
+ opID := utils.OperationIDGenerator()
+ sCtx := ccontext.WithOperationID(c.ctx, opID)
+ log.ZInfo(sCtx, "ping and getMaxSeq start", "goroutine ID:", getGoroutineID())
+ data, err := proto.Marshal(&m)
+ if err != nil {
+ log.ZError(sCtx, "proto.Marshal", err)
+ return
+ }
+ req := &GeneralWsReq{
+ ReqIdentifier: constant.GetNewestSeq,
+ SendID: m.UserID,
+ OperationID: opID,
+ Data: data,
+ }
+ resp, err := c.sendAndWaitResp(req)
+ if err != nil {
+ log.ZError(sCtx, "sendAndWaitResp", err)
+ _ = c.close()
+ time.Sleep(time.Second * 1)
+ return
+ } else {
+ if resp.ErrCode != 0 {
+ log.ZError(sCtx, "getMaxSeq failed", nil, "errCode:", resp.ErrCode, "errMsg:", resp.ErrMsg)
+ }
+ var wsSeqResp sdkws.GetMaxSeqResp
+ err = proto.Unmarshal(resp.Data, &wsSeqResp)
+ if err != nil {
+ log.ZError(sCtx, "proto.Unmarshal", err)
+ }
+ var cmd sdk_struct.CmdMaxSeqToMsgSync
+ cmd.ConversationMaxSeqOnSvr = wsSeqResp.MaxSeqs
+
+ err := common.TriggerCmdMaxSeq(sCtx, &cmd, c.pushMsgAndMaxSeqCh)
+ if err != nil {
+ log.ZError(sCtx, "TriggerCmdMaxSeq failed", err)
+ }
+ }
+}
+func (c *LongConnMgr) sendAndWaitResp(msg *GeneralWsReq) (*GeneralWsResp, error) {
+ tempChan, err := c.writeBinaryMsgAndRetry(msg)
+ defer c.Syncer.DelCh(msg.MsgIncr)
+ if err != nil {
+ return nil, err
+ } else {
+ select {
+ case resp := <-tempChan:
+ return resp, nil
+ case <-time.After(time.Second * 5):
+ return nil, sdkerrs.ErrNetworkTimeOut
+ }
+
+ }
+}
+
+func (c *LongConnMgr) writeBinaryMsgAndRetry(msg *GeneralWsReq) (chan *GeneralWsResp, error) {
+ msgIncr, tempChan := c.Syncer.AddCh(msg.SendID)
+ msg.MsgIncr = msgIncr
+ if c.GetConnectionStatus() != Connected && msg.ReqIdentifier == constant.GetNewestSeq {
+ return tempChan, sdkerrs.ErrNetwork.WrapMsg("connection closed,conning...")
+ }
+ for i := 0; i < maxReconnectAttempts; i++ {
+ err := c.writeBinaryMsg(*msg)
+ if err != nil {
+ log.ZError(c.ctx, "send binary message error", err, "message", msg)
+ c.closedErr = err
+ _ = c.close()
+ time.Sleep(time.Second * 1)
+ continue
+ } else {
+ return tempChan, nil
+ }
+ }
+ return nil, sdkerrs.ErrNetwork.WrapMsg("send binary message error")
+}
+
+func (c *LongConnMgr) writeBinaryMsg(req GeneralWsReq) error {
+ c.connWrite.Lock()
+ defer c.connWrite.Unlock()
+ encodeBuf, err := c.encoder.Encode(req)
+ if err != nil {
+ return err
+ }
+ if c.GetConnectionStatus() != Connected {
+ return sdkerrs.ErrNetwork.WrapMsg("connection closed,re conning...")
+ }
+ _ = c.conn.SetWriteDeadline(writeWait)
+ if c.IsCompression {
+ resultBuf, compressErr := c.compressor.Compress(encodeBuf)
+ if compressErr != nil {
+ return compressErr
+ }
+ return c.conn.WriteMessage(MessageBinary, resultBuf)
+ } else {
+ return c.conn.WriteMessage(MessageBinary, encodeBuf)
+ }
+}
+func (c *LongConnMgr) close() error {
+ c.w.Lock()
+ defer c.w.Unlock()
+ if c.connStatus == Closed || c.connStatus == Connecting || c.connStatus == DefaultNotConnect {
+ return nil
+ }
+ c.connStatus = Closed
+ log.ZWarn(c.ctx, "conn closed", c.closedErr)
+ return c.conn.Close()
+}
+
+func (c *LongConnMgr) handleMessage(message []byte) error {
+ if c.IsCompression {
+ var decompressErr error
+ message, decompressErr = c.compressor.DeCompress(message)
+ if decompressErr != nil {
+ log.ZError(c.ctx, "DeCompress failed", decompressErr, message)
+ return sdkerrs.ErrMsgDeCompression
+ }
+ }
+ var wsResp GeneralWsResp
+ err := c.encoder.Decode(message, &wsResp)
+ if err != nil {
+ log.ZError(c.ctx, "decodeBinaryWs err", err, "message", message)
+ return sdkerrs.ErrMsgDecodeBinaryWs
+ }
+ ctx := context.WithValue(c.ctx, "operationID", wsResp.OperationID)
+ log.ZInfo(ctx, "recv msg", "errCode", wsResp.ErrCode, "errMsg", wsResp.ErrMsg,
+ "reqIdentifier", wsResp.ReqIdentifier)
+ switch wsResp.ReqIdentifier {
+ case constant.PushMsg:
+ if err = c.doPushMsg(ctx, wsResp); err != nil {
+ log.ZError(ctx, "doWSPushMsg failed", err, "wsResp", wsResp)
+ }
+ case constant.LogoutMsg:
+ if err := c.Syncer.NotifyResp(ctx, wsResp); err != nil {
+ log.ZError(ctx, "notifyResp failed", err, "wsResp", wsResp)
+ }
+ return sdkerrs.ErrLoginOut
+ case constant.KickOnlineMsg:
+ log.ZDebug(ctx, "client kicked offline")
+ c.listener.OnKickedOffline()
+ _ = common.TriggerCmdLogOut(ctx, c.loginMgrCh)
+ return errors.New("client kicked offline")
+ case constant.GetNewestSeq:
+ fallthrough
+ case constant.PullMsgBySeqList:
+ fallthrough
+ case constant.SendMsg:
+ fallthrough
+ case constant.SendSignalMsg:
+ fallthrough
+ case constant.SetBackgroundStatus:
+ if err := c.Syncer.NotifyResp(ctx, wsResp); err != nil {
+ log.ZError(ctx, "notifyResp failed", err, "reqIdentifier", wsResp.ReqIdentifier, "errCode",
+ wsResp.ErrCode, "errMsg", wsResp.ErrMsg, "msgIncr", wsResp.MsgIncr, "operationID", wsResp.OperationID)
+ }
+ default:
+ // log.Error(wsResp.OperationID, "type failed, ", wsResp.ReqIdentifier)
+ return sdkerrs.ErrMsgBinaryTypeNotSupport
+ }
+ return nil
+}
+func (c *LongConnMgr) IsConnected() bool {
+ c.w.Lock()
+ defer c.w.Unlock()
+ if c.connStatus == Connected {
+ return true
+ }
+ return false
+
+}
+func (c *LongConnMgr) GetConnectionStatus() int {
+ c.w.Lock()
+ defer c.w.Unlock()
+ return c.connStatus
+}
+
+func (c *LongConnMgr) SetConnectionStatus(status int) {
+ c.w.Lock()
+ defer c.w.Unlock()
+ c.connStatus = status
+}
+func (c *LongConnMgr) reConn(ctx context.Context, num *int) (needRecon bool, err error) {
+ if c.IsConnected() {
+ return true, nil
+ }
+ c.connWrite.Lock()
+ defer c.connWrite.Unlock()
+ log.ZDebug(ctx, "conn start")
+ c.listener.OnConnecting()
+ c.SetConnectionStatus(Connecting)
+ url := fmt.Sprintf("%s?sendID=%s&token=%s&platformID=%d&operationID=%s&isBackground=%t",
+ ccontext.Info(ctx).WsAddr(), ccontext.Info(ctx).UserID(), ccontext.Info(ctx).Token(),
+ ccontext.Info(ctx).PlatformID(), ccontext.Info(ctx).OperationID(), c.GetBackground())
+ if c.IsCompression {
+ url += fmt.Sprintf("&compression=%s", "gzip")
+ }
+ resp, err := c.conn.Dial(url, nil)
+ if err != nil {
+ c.SetConnectionStatus(Closed)
+ if resp != nil {
+ body, err := io.ReadAll(resp.Body)
+ if err != nil {
+ return true, err
+ }
+ log.ZInfo(ctx, "reConn resp", "body", string(body))
+ var apiResp struct {
+ ErrCode int `json:"errCode"`
+ ErrMsg string `json:"errMsg"`
+ ErrDlt string `json:"errDlt"`
+ }
+ if err := json.Unmarshal(body, &apiResp); err != nil {
+ return true, err
+ }
+ err = errs.NewCodeError(apiResp.ErrCode, apiResp.ErrMsg).WithDetail(apiResp.ErrDlt).Wrap()
+ ccontext.GetApiErrCodeCallback(ctx).OnError(ctx, err)
+ switch apiResp.ErrCode {
+ case
+ errs.TokenExpiredError,
+ errs.TokenMalformedError,
+ errs.TokenNotValidYetError,
+ errs.TokenUnknownError:
+ return false, err
+ default:
+ return true, err
+ }
+ }
+ c.listener.OnConnectFailed(sdkerrs.NetworkError, err.Error())
+ return true, err
+ }
+ c.listener.OnConnectSuccess()
+ c.ctx = newContext(c.conn.LocalAddr())
+ c.ctx = context.WithValue(ctx, "ConnContext", c.ctx)
+ c.SetConnectionStatus(Connected)
+ *num++
+ log.ZInfo(c.ctx, "long conn establish success", "localAddr", c.conn.LocalAddr(), "connNum", *num)
+ c.reconnectStrategy.Reset()
+ _ = common.TriggerCmdConnected(ctx, c.pushMsgAndMaxSeqCh)
+ return true, nil
+}
+
+func (c *LongConnMgr) doPushMsg(ctx context.Context, wsResp GeneralWsResp) error {
+ var msg sdkws.PushMessages
+ err := proto.Unmarshal(wsResp.Data, &msg)
+ if err != nil {
+ return err
+ }
+ return common.TriggerCmdPushMsg(ctx, &msg, c.pushMsgAndMaxSeqCh)
+}
+func (c *LongConnMgr) Close(ctx context.Context) {
+ if c.GetConnectionStatus() == Connected {
+ log.ZInfo(ctx, "network change conn close")
+ c.closedErr = errors.New("closed by client network change")
+ _ = c.close()
+ } else {
+ log.ZInfo(ctx, "conn already closed")
+ }
+
+}
+func (c *LongConnMgr) GetBackground() bool {
+ c.mutex.Lock()
+ defer c.mutex.Unlock()
+ return c.IsBackground
+}
+func (c *LongConnMgr) SetBackground(isBackground bool) {
+ c.mutex.Lock()
+ defer c.mutex.Unlock()
+ c.IsBackground = isBackground
+}
diff --git a/go/chao-sdk-core/internal/interaction/long_connection.go b/go/chao-sdk-core/internal/interaction/long_connection.go
new file mode 100644
index 0000000..d06d668
--- /dev/null
+++ b/go/chao-sdk-core/internal/interaction/long_connection.go
@@ -0,0 +1,44 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package interaction
+
+import (
+ "net/http"
+ "time"
+)
+
+type PongHandler func(string) error
+type LongConn interface {
+ //Close this connection
+ Close() error
+ // WriteMessage Write message to connection,messageType means data type,can be set binary(2) and text(1).
+ WriteMessage(messageType int, message []byte) error
+ // ReadMessage Read message from connection.
+ ReadMessage() (int, []byte, error)
+ // SetReadDeadline sets the read deadline on the underlying network connection,
+ //after a read has timed out, will return an error.
+ SetReadDeadline(timeout time.Duration) error
+ // SetWriteDeadline sets to write deadline when send message,when read has timed out,will return error.
+ SetWriteDeadline(timeout time.Duration) error
+ // Dial Try to dial a connection,url must set auth args,header can control compress data
+ Dial(urlStr string, requestHeader http.Header) (*http.Response, error)
+ // IsNil Whether the connection of the current long connection is nil
+ IsNil() bool
+ // SetReadLimit sets the maximum size for a message read from the peer.bytes
+ SetReadLimit(limit int64)
+ SetPongHandler(handler PongHandler)
+ // LocalAddr returns the local network address.
+ LocalAddr() string
+}
diff --git a/go/chao-sdk-core/internal/interaction/msg_sync.go b/go/chao-sdk-core/internal/interaction/msg_sync.go
new file mode 100644
index 0000000..43475b7
--- /dev/null
+++ b/go/chao-sdk-core/internal/interaction/msg_sync.go
@@ -0,0 +1,387 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package interaction
+
+import (
+ "context"
+ "strings"
+
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/common"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/db_interface"
+ "github.com/openimsdk/openim-sdk-core/v3/sdk_struct"
+
+ "github.com/openimsdk/protocol/sdkws"
+ "github.com/openimsdk/tools/log"
+)
+
+const (
+ connectPullNums = 1
+ defaultPullNums = 10
+ SplitPullMsgNum = 100
+)
+
+// The callback synchronization starts. The reconnection ends
+type MsgSyncer struct {
+ loginUserID string // login user ID
+ longConnMgr *LongConnMgr // long connection manager
+ PushMsgAndMaxSeqCh chan common.Cmd2Value // channel for receiving push messages and the maximum SEQ number
+ conversationCh chan common.Cmd2Value // storage and session triggering
+ syncedMaxSeqs map[string]int64 // map of the maximum synced SEQ numbers for all group IDs
+ db db_interface.DataBase // data store
+ syncTimes int // times of sync
+ ctx context.Context // context
+ reinstalled bool //true if the app was uninstalled and reinstalled
+
+}
+
+// NewMsgSyncer creates a new instance of the message synchronizer.
+func NewMsgSyncer(ctx context.Context, conversationCh, PushMsgAndMaxSeqCh chan common.Cmd2Value,
+ loginUserID string, longConnMgr *LongConnMgr, db db_interface.DataBase, syncTimes int) (*MsgSyncer, error) {
+ m := &MsgSyncer{
+ loginUserID: loginUserID,
+ longConnMgr: longConnMgr,
+ PushMsgAndMaxSeqCh: PushMsgAndMaxSeqCh,
+ conversationCh: conversationCh,
+ ctx: ctx,
+ syncedMaxSeqs: make(map[string]int64),
+ db: db,
+ syncTimes: syncTimes,
+ }
+ if err := m.loadSeq(ctx); err != nil {
+ log.ZError(ctx, "loadSeq err", err)
+ return nil, err
+ }
+ return m, nil
+}
+
+// seq The db reads the data to the memory,set syncedMaxSeqs
+func (m *MsgSyncer) loadSeq(ctx context.Context) error {
+ conversationIDList, err := m.db.GetAllConversationIDList(ctx)
+ if err != nil {
+ log.ZError(ctx, "get conversation id list failed", err)
+ return err
+ }
+ if len(conversationIDList) == 0 {
+ m.reinstalled = true
+ }
+ //TODO With a large number of sessions, this could potentially cause blocking and needs optimization.
+ for _, v := range conversationIDList {
+ maxSyncedSeq, err := m.db.GetConversationNormalMsgSeq(ctx, v)
+ if err != nil {
+ log.ZError(ctx, "get group normal seq failed", err, "conversationID", v)
+ } else {
+ m.syncedMaxSeqs[v] = maxSyncedSeq
+ }
+ }
+ notificationSeqs, err := m.db.GetNotificationAllSeqs(ctx)
+ if err != nil {
+ log.ZError(ctx, "get notification seq failed", err)
+ return err
+ }
+ for _, notificationSeq := range notificationSeqs {
+ m.syncedMaxSeqs[notificationSeq.ConversationID] = notificationSeq.Seq
+ }
+ log.ZDebug(ctx, "loadSeq", "syncedMaxSeqs", m.syncedMaxSeqs)
+ return nil
+}
+
+// DoListener Listen to the message pipe of the message synchronizer
+// and process received and pushed messages
+func (m *MsgSyncer) DoListener(ctx context.Context) {
+ for {
+ select {
+ case cmd := <-m.PushMsgAndMaxSeqCh:
+ m.handlePushMsgAndEvent(cmd)
+ case <-ctx.Done():
+ log.ZInfo(m.ctx, "msg syncer done, sdk logout.....")
+ return
+ }
+ }
+}
+
+// get seqs need sync interval
+func (m *MsgSyncer) getSeqsNeedSync(syncedMaxSeq, maxSeq int64) []int64 {
+ var seqs []int64
+ for i := syncedMaxSeq + 1; i <= maxSeq; i++ {
+ seqs = append(seqs, i)
+ }
+ return seqs
+}
+
+// recv msg from
+func (m *MsgSyncer) handlePushMsgAndEvent(cmd common.Cmd2Value) {
+ switch cmd.Cmd {
+ case constant.CmdConnSuccesss:
+ log.ZInfo(cmd.Ctx, "recv long conn mgr connected", "cmd", cmd.Cmd, "value", cmd.Value)
+ m.doConnected(cmd.Ctx)
+ case constant.CmdMaxSeq:
+ log.ZInfo(cmd.Ctx, "recv max seqs from long conn mgr, start sync msgs", "cmd", cmd.Cmd, "value", cmd.Value)
+ m.compareSeqsAndBatchSync(cmd.Ctx, cmd.Value.(*sdk_struct.CmdMaxSeqToMsgSync).ConversationMaxSeqOnSvr, defaultPullNums)
+ case constant.CmdPushMsg:
+ m.doPushMsg(cmd.Ctx, cmd.Value.(*sdkws.PushMessages))
+ }
+}
+
+func (m *MsgSyncer) compareSeqsAndBatchSync(ctx context.Context, maxSeqToSync map[string]int64, pullNums int64) {
+ needSyncSeqMap := make(map[string][2]int64)
+ //when app reinstalled do not pull notifications messages.
+ if m.reinstalled {
+ notificationsSeqMap := make(map[string]int64)
+ messagesSeqMap := make(map[string]int64)
+ for conversationID, seq := range maxSeqToSync {
+ if IsNotification(conversationID) {
+ notificationsSeqMap[conversationID] = seq
+ } else {
+ messagesSeqMap[conversationID] = seq
+ }
+ }
+ for conversationID, seq := range notificationsSeqMap {
+ err := m.db.SetNotificationSeq(ctx, conversationID, seq)
+ if err != nil {
+ log.ZWarn(ctx, "SetNotificationSeq err", err, "conversationID", conversationID, "seq", seq)
+ continue
+ } else {
+ m.syncedMaxSeqs[conversationID] = seq
+ }
+ }
+ for conversationID, maxSeq := range messagesSeqMap {
+ if syncedMaxSeq, ok := m.syncedMaxSeqs[conversationID]; ok {
+ if maxSeq > syncedMaxSeq {
+ needSyncSeqMap[conversationID] = [2]int64{syncedMaxSeq + 1, maxSeq}
+ }
+ } else {
+ needSyncSeqMap[conversationID] = [2]int64{0, maxSeq}
+ }
+ }
+ m.reinstalled = false
+ } else {
+ for conversationID, maxSeq := range maxSeqToSync {
+ if syncedMaxSeq, ok := m.syncedMaxSeqs[conversationID]; ok {
+ if maxSeq > syncedMaxSeq {
+ needSyncSeqMap[conversationID] = [2]int64{syncedMaxSeq + 1, maxSeq}
+ }
+ } else {
+ needSyncSeqMap[conversationID] = [2]int64{0, maxSeq}
+ }
+ }
+ }
+ _ = m.syncAndTriggerMsgs(m.ctx, needSyncSeqMap, pullNums)
+}
+
+func (m *MsgSyncer) doPushMsg(ctx context.Context, push *sdkws.PushMessages) {
+ log.ZDebug(ctx, "push msgs", "push", push, "syncedMaxSeqs", m.syncedMaxSeqs)
+ m.pushTriggerAndSync(ctx, push.Msgs, m.triggerConversation)
+ m.pushTriggerAndSync(ctx, push.NotificationMsgs, m.triggerNotification)
+}
+
+func (m *MsgSyncer) pushTriggerAndSync(ctx context.Context, pullMsgs map[string]*sdkws.PullMsgs, triggerFunc func(ctx context.Context, msgs map[string]*sdkws.PullMsgs) error) {
+ if len(pullMsgs) == 0 {
+ return
+ }
+ needSyncSeqMap := make(map[string][2]int64)
+ var lastSeq int64
+ var storageMsgs []*sdkws.MsgData
+ for conversationID, msgs := range pullMsgs {
+ for _, msg := range msgs.Msgs {
+ if msg.Seq == 0 {
+ _ = triggerFunc(ctx, map[string]*sdkws.PullMsgs{conversationID: {Msgs: []*sdkws.MsgData{msg}}})
+ continue
+ }
+ lastSeq = msg.Seq
+ storageMsgs = append(storageMsgs, msg)
+ }
+ if lastSeq == m.syncedMaxSeqs[conversationID]+int64(len(storageMsgs)) && lastSeq != 0 {
+ log.ZDebug(ctx, "trigger msgs", "msgs", storageMsgs)
+ _ = triggerFunc(ctx, map[string]*sdkws.PullMsgs{conversationID: {Msgs: storageMsgs}})
+ m.syncedMaxSeqs[conversationID] = lastSeq
+ } else if lastSeq != 0 && lastSeq > m.syncedMaxSeqs[conversationID] {
+ //must pull message when message type is notification
+ needSyncSeqMap[conversationID] = [2]int64{m.syncedMaxSeqs[conversationID] + 1, lastSeq}
+ }
+ }
+ m.syncAndTriggerMsgs(ctx, needSyncSeqMap, defaultPullNums)
+}
+
+// Called after successful reconnection to synchronize the latest message
+func (m *MsgSyncer) doConnected(ctx context.Context) {
+ common.TriggerCmdNotification(m.ctx, sdk_struct.CmdNewMsgComeToConversation{SyncFlag: constant.MsgSyncBegin}, m.conversationCh)
+ var resp sdkws.GetMaxSeqResp
+ if err := m.longConnMgr.SendReqWaitResp(m.ctx, &sdkws.GetMaxSeqReq{UserID: m.loginUserID}, constant.GetNewestSeq, &resp); err != nil {
+ log.ZError(m.ctx, "get max seq error", err)
+ common.TriggerCmdNotification(m.ctx, sdk_struct.CmdNewMsgComeToConversation{SyncFlag: constant.MsgSyncFailed}, m.conversationCh)
+ return
+ } else {
+ log.ZDebug(m.ctx, "get max seq success", "resp", resp)
+ }
+ m.compareSeqsAndBatchSync(ctx, resp.MaxSeqs, connectPullNums)
+ common.TriggerCmdNotification(m.ctx, sdk_struct.CmdNewMsgComeToConversation{SyncFlag: constant.MsgSyncEnd}, m.conversationCh)
+}
+
+func IsNotification(conversationID string) bool {
+ return strings.HasPrefix(conversationID, "n_")
+}
+
+// Fragment synchronization message, seq refresh after successful trigger
+func (m *MsgSyncer) syncAndTriggerMsgs(ctx context.Context, seqMap map[string][2]int64, syncMsgNum int64) error {
+ if len(seqMap) > 0 {
+ log.ZDebug(ctx, "current sync seqMap", "seqMap", seqMap)
+ tempSeqMap := make(map[string][2]int64, 50)
+ msgNum := 0
+ for k, v := range seqMap {
+ oneConversationSyncNum := v[1] - v[0] + 1
+ if (oneConversationSyncNum/SplitPullMsgNum) > 1 && IsNotification(k) {
+ nSeqMap := make(map[string][2]int64, 1)
+ count := int(oneConversationSyncNum / SplitPullMsgNum)
+ startSeq := v[0]
+ var end int64
+ for i := 0; i <= count; i++ {
+ if i == count {
+ nSeqMap[k] = [2]int64{startSeq, v[1]}
+ } else {
+ end = startSeq + int64(SplitPullMsgNum)
+ if end > v[1] {
+ end = v[1]
+ i = count
+ }
+ nSeqMap[k] = [2]int64{startSeq, end}
+ }
+ resp, err := m.pullMsgBySeqRange(ctx, nSeqMap, syncMsgNum)
+ if err != nil {
+ log.ZError(ctx, "syncMsgFromSvr err", err, "nSeqMap", nSeqMap)
+ return err
+ }
+ _ = m.triggerConversation(ctx, resp.Msgs)
+ _ = m.triggerNotification(ctx, resp.NotificationMsgs)
+ for conversationID, seqs := range nSeqMap {
+ m.syncedMaxSeqs[conversationID] = seqs[1]
+ }
+ startSeq = end + 1
+ }
+ continue
+ }
+ tempSeqMap[k] = v
+ if oneConversationSyncNum > 0 {
+ msgNum += int(oneConversationSyncNum)
+ }
+ if msgNum >= SplitPullMsgNum {
+ resp, err := m.pullMsgBySeqRange(ctx, tempSeqMap, syncMsgNum)
+ if err != nil {
+ log.ZError(ctx, "syncMsgFromSvr err", err, "tempSeqMap", tempSeqMap)
+ return err
+ }
+ _ = m.triggerConversation(ctx, resp.Msgs)
+ _ = m.triggerNotification(ctx, resp.NotificationMsgs)
+ for conversationID, seqs := range tempSeqMap {
+ m.syncedMaxSeqs[conversationID] = seqs[1]
+ }
+ tempSeqMap = make(map[string][2]int64, 50)
+ msgNum = 0
+ }
+ }
+
+ resp, err := m.pullMsgBySeqRange(ctx, tempSeqMap, syncMsgNum)
+ if err != nil {
+ log.ZError(ctx, "syncMsgFromSvr err", err, "seqMap", seqMap)
+ return err
+ }
+ _ = m.triggerConversation(ctx, resp.Msgs)
+ _ = m.triggerNotification(ctx, resp.NotificationMsgs)
+ for conversationID, seqs := range seqMap {
+ m.syncedMaxSeqs[conversationID] = seqs[1]
+ }
+ } else {
+ log.ZDebug(ctx, "noting conversation to sync", "syncMsgNum", syncMsgNum)
+ }
+ return nil
+}
+
+func (m *MsgSyncer) splitSeqs(split int, seqsNeedSync []int64) (splitSeqs [][]int64) {
+ if len(seqsNeedSync) <= split {
+ splitSeqs = append(splitSeqs, seqsNeedSync)
+ return
+ }
+ for i := 0; i < len(seqsNeedSync); i += split {
+ end := i + split
+ if end > len(seqsNeedSync) {
+ end = len(seqsNeedSync)
+ }
+ splitSeqs = append(splitSeqs, seqsNeedSync[i:end])
+ }
+ return
+}
+
+func (m *MsgSyncer) pullMsgBySeqRange(ctx context.Context, seqMap map[string][2]int64, syncMsgNum int64) (resp *sdkws.PullMessageBySeqsResp, err error) {
+ log.ZDebug(ctx, "pullMsgBySeqRange", "seqMap", seqMap, "syncMsgNum", syncMsgNum)
+
+ req := sdkws.PullMessageBySeqsReq{UserID: m.loginUserID}
+ for conversationID, seqs := range seqMap {
+ req.SeqRanges = append(req.SeqRanges, &sdkws.SeqRange{
+ ConversationID: conversationID,
+ Begin: seqs[0],
+ End: seqs[1],
+ Num: syncMsgNum,
+ })
+ }
+ resp = &sdkws.PullMessageBySeqsResp{}
+ if err := m.longConnMgr.SendReqWaitResp(ctx, &req, constant.PullMsgBySeqList, resp); err != nil {
+ return nil, err
+ }
+ return resp, nil
+}
+
+// synchronizes messages by SEQs.
+func (m *MsgSyncer) syncMsgBySeqs(ctx context.Context, conversationID string, seqsNeedSync []int64) (allMsgs []*sdkws.MsgData, err error) {
+ pullMsgReq := sdkws.PullMessageBySeqsReq{}
+ pullMsgReq.UserID = m.loginUserID
+ split := constant.SplitPullMsgNum
+ seqsList := m.splitSeqs(split, seqsNeedSync)
+ for i := 0; i < len(seqsList); {
+ var pullMsgResp sdkws.PullMessageBySeqsResp
+ err := m.longConnMgr.SendReqWaitResp(ctx, &pullMsgReq, constant.PullMsgBySeqList, &pullMsgResp)
+ if err != nil {
+ log.ZError(ctx, "syncMsgFromSvrSplit err", err, "pullMsgReq", pullMsgReq)
+ continue
+ }
+ i++
+ allMsgs = append(allMsgs, pullMsgResp.Msgs[conversationID].Msgs...)
+ }
+ return allMsgs, nil
+}
+
+// triggers a conversation with a new message.
+func (m *MsgSyncer) triggerConversation(ctx context.Context, msgs map[string]*sdkws.PullMsgs) error {
+ if len(msgs) >= 0 {
+ err := common.TriggerCmdNewMsgCome(ctx, sdk_struct.CmdNewMsgComeToConversation{Msgs: msgs}, m.conversationCh)
+ if err != nil {
+ log.ZError(ctx, "triggerCmdNewMsgCome err", err, "msgs", msgs)
+ }
+ log.ZDebug(ctx, "triggerConversation", "msgs", msgs)
+ return err
+ }
+ return nil
+}
+
+func (m *MsgSyncer) triggerNotification(ctx context.Context, msgs map[string]*sdkws.PullMsgs) error {
+ if len(msgs) >= 0 {
+ err := common.TriggerCmdNotification(ctx, sdk_struct.CmdNewMsgComeToConversation{Msgs: msgs}, m.conversationCh)
+ if err != nil {
+ log.ZError(ctx, "triggerCmdNewMsgCome err", err, "msgs", msgs)
+ }
+ return err
+ }
+ return nil
+
+}
diff --git a/go/chao-sdk-core/internal/interaction/reconnect.go b/go/chao-sdk-core/internal/interaction/reconnect.go
new file mode 100644
index 0000000..e2efd26
--- /dev/null
+++ b/go/chao-sdk-core/internal/interaction/reconnect.go
@@ -0,0 +1,32 @@
+package interaction
+
+import (
+ "time"
+)
+
+type ReconnectStrategy interface {
+ GetSleepInterval() time.Duration
+ Reset()
+}
+
+type ExponentialRetry struct {
+ attempts []int
+ index int
+}
+
+func NewExponentialRetry() *ExponentialRetry {
+ return &ExponentialRetry{
+ attempts: []int{1, 2, 4, 8, 16},
+ index: -1,
+ }
+}
+
+func (rs *ExponentialRetry) GetSleepInterval() time.Duration {
+ rs.index++
+ interval := rs.index % len(rs.attempts)
+ return time.Second * time.Duration(rs.attempts[interval])
+}
+
+func (rs *ExponentialRetry) Reset() {
+ rs.index = -1
+}
diff --git a/go/chao-sdk-core/internal/interaction/ws_default.go b/go/chao-sdk-core/internal/interaction/ws_default.go
new file mode 100644
index 0000000..b767310
--- /dev/null
+++ b/go/chao-sdk-core/internal/interaction/ws_default.go
@@ -0,0 +1,87 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build !js
+
+package interaction
+
+import (
+ "net/http"
+ "time"
+
+ "github.com/gorilla/websocket"
+)
+
+type Default struct {
+ ConnType int
+ conn *websocket.Conn
+ isSetConf bool
+}
+
+func (d *Default) SetReadDeadline(timeout time.Duration) error {
+ return d.conn.SetReadDeadline(time.Now().Add(timeout))
+}
+
+func (d *Default) SetWriteDeadline(timeout time.Duration) error {
+ return d.conn.SetWriteDeadline(time.Now().Add(timeout))
+}
+
+func (d *Default) SetReadLimit(limit int64) {
+ if !d.isSetConf {
+ d.conn.SetReadLimit(limit)
+ }
+
+}
+
+func (d *Default) SetPongHandler(handler PongHandler) {
+ if !d.isSetConf {
+ d.conn.SetPongHandler(handler)
+ d.isSetConf = true
+ }
+}
+
+func (d *Default) LocalAddr() string {
+ return d.conn.LocalAddr().String()
+}
+
+func NewWebSocket(connType int) *Default {
+ return &Default{ConnType: connType}
+}
+func (d *Default) Close() error {
+ return d.conn.Close()
+}
+
+func (d *Default) WriteMessage(messageType int, message []byte) error {
+ return d.conn.WriteMessage(messageType, message)
+}
+
+func (d *Default) ReadMessage() (int, []byte, error) {
+ return d.conn.ReadMessage()
+}
+
+func (d *Default) Dial(urlStr string, requestHeader http.Header) (*http.Response, error) {
+ conn, httpResp, err := websocket.DefaultDialer.Dial(urlStr, requestHeader)
+ if err == nil {
+ d.conn = conn
+ }
+ return httpResp, err
+
+}
+
+func (d *Default) IsNil() bool {
+ if d.conn != nil {
+ return false
+ }
+ return true
+}
diff --git a/go/chao-sdk-core/internal/interaction/ws_js.go b/go/chao-sdk-core/internal/interaction/ws_js.go
new file mode 100644
index 0000000..1f2b243
--- /dev/null
+++ b/go/chao-sdk-core/internal/interaction/ws_js.go
@@ -0,0 +1,140 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build js && wasm
+// +build js,wasm
+
+package interaction
+
+import (
+ "bytes"
+ "context"
+ "encoding/json"
+ "fmt"
+ "github.com/openimsdk/tools/log"
+ "io"
+ "net/http"
+ "net/url"
+ "nhooyr.io/websocket"
+ "time"
+)
+
+type JSWebSocket struct {
+ ConnType int
+ conn *websocket.Conn
+ sendConn *websocket.Conn
+}
+
+func (w *JSWebSocket) SetReadDeadline(timeout time.Duration) error {
+ return nil
+}
+
+func (w *JSWebSocket) SetWriteDeadline(timeout time.Duration) error {
+ return nil
+}
+
+func (w *JSWebSocket) SetReadLimit(limit int64) {
+ w.conn.SetReadLimit(limit)
+}
+
+func (w *JSWebSocket) SetPongHandler(handler PongHandler) {
+
+}
+
+func (w *JSWebSocket) LocalAddr() string {
+ return ""
+}
+
+func NewWebSocket(connType int) *JSWebSocket {
+ return &JSWebSocket{ConnType: connType}
+}
+
+func (w *JSWebSocket) Close() error {
+ return w.conn.Close(websocket.StatusGoingAway, "Actively close the conn have old conn")
+}
+
+func (w *JSWebSocket) WriteMessage(messageType int, message []byte) error {
+ return w.conn.Write(context.Background(), websocket.MessageType(messageType), message)
+}
+
+func (w *JSWebSocket) ReadMessage() (int, []byte, error) {
+ messageType, b, err := w.conn.Read(context.Background())
+ return int(messageType), b, err
+}
+
+func (w *JSWebSocket) dial(ctx context.Context, urlStr string) (*websocket.Conn, *http.Response, error) {
+ u, err := url.Parse(urlStr)
+ if err != nil {
+ return nil, nil, err
+ }
+ query := u.Query()
+ query.Set("isMsgResp", "true")
+ u.RawQuery = query.Encode()
+ conn, httpResp, err := websocket.Dial(ctx, u.String(), nil)
+ if err != nil {
+ return nil, nil, err
+ }
+ if httpResp == nil {
+ httpResp = &http.Response{
+ StatusCode: http.StatusSwitchingProtocols,
+ }
+ }
+ _, data, err := conn.Read(ctx)
+ if err != nil {
+ _ = conn.CloseNow()
+ return nil, nil, fmt.Errorf("read response error %w", err)
+ }
+ var apiResp struct {
+ ErrCode int `json:"errCode"`
+ ErrMsg string `json:"errMsg"`
+ ErrDlt string `json:"errDlt"`
+ }
+ if err := json.Unmarshal(data, &apiResp); err != nil {
+ return nil, nil, fmt.Errorf("unmarshal response error %w", err)
+ }
+ if apiResp.ErrCode == 0 {
+ return conn, httpResp, nil
+ }
+ log.ZDebug(ctx, "ws msg read resp", "data", string(data))
+ httpResp.Body = io.NopCloser(bytes.NewReader(data))
+ return conn, httpResp, fmt.Errorf("read response error %d %s %s",
+ apiResp.ErrCode, apiResp.ErrMsg, apiResp.ErrDlt)
+}
+
+func (w *JSWebSocket) Dial(urlStr string, _ http.Header) (*http.Response, error) {
+ ctx, cancel := context.WithTimeout(context.Background(), time.Minute)
+ defer cancel()
+ conn, httpResp, err := w.dial(ctx, urlStr)
+ if err == nil {
+ w.conn = conn
+ }
+ return httpResp, err
+}
+
+//func (w *JSWebSocket) Dial(urlStr string, _ http.Header) (*http.Response, error) {
+// ctx, cancel := context.WithTimeout(context.Background(), time.Minute)
+// defer cancel()
+// conn, httpResp, err := websocket.Dial(ctx, urlStr, nil)
+// if err == nil {
+// w.conn = conn
+// }
+// return httpResp, err
+//}
+
+func (w *JSWebSocket) IsNil() bool {
+ if w.conn != nil {
+ return false
+ }
+ return true
+}
diff --git a/go/chao-sdk-core/internal/interaction/ws_resp_asyn.go b/go/chao-sdk-core/internal/interaction/ws_resp_asyn.go
new file mode 100644
index 0000000..b798cb0
--- /dev/null
+++ b/go/chao-sdk-core/internal/interaction/ws_resp_asyn.go
@@ -0,0 +1,168 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package interaction
+
+import (
+ "context"
+ "errors"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "sync"
+ "time"
+
+ "github.com/openimsdk/tools/log"
+)
+
+type GeneralWsResp struct {
+ ReqIdentifier int `json:"reqIdentifier"`
+ ErrCode int `json:"errCode"`
+ ErrMsg string `json:"errMsg"`
+ MsgIncr string `json:"msgIncr"`
+ OperationID string `json:"operationID"`
+ Data []byte `json:"data"`
+}
+
+type GeneralWsReq struct {
+ ReqIdentifier int `json:"reqIdentifier"`
+ Token string `json:"token"`
+ SendID string `json:"sendID"`
+ OperationID string `json:"operationID"`
+ MsgIncr string `json:"msgIncr"`
+ Data []byte `json:"data"`
+}
+
+type WsRespAsyn struct {
+ wsNotification map[string]chan *GeneralWsResp
+ wsMutex sync.RWMutex
+}
+
+func NewWsRespAsyn() *WsRespAsyn {
+ return &WsRespAsyn{wsNotification: make(map[string]chan *GeneralWsResp, 10)}
+}
+
+func GenMsgIncr(userID string) string {
+ return userID + "_" + utils.OperationIDGenerator()
+}
+
+func (u *WsRespAsyn) AddCh(userID string) (string, chan *GeneralWsResp) {
+ u.wsMutex.Lock()
+ defer u.wsMutex.Unlock()
+ msgIncr := GenMsgIncr(userID)
+
+ ch := make(chan *GeneralWsResp, 1)
+ _, ok := u.wsNotification[msgIncr]
+ if ok {
+ }
+ u.wsNotification[msgIncr] = ch
+ return msgIncr, ch
+}
+
+func (u *WsRespAsyn) AddChByIncr(msgIncr string) chan *GeneralWsResp {
+ u.wsMutex.Lock()
+ defer u.wsMutex.Unlock()
+ ch := make(chan *GeneralWsResp, 1)
+ _, ok := u.wsNotification[msgIncr]
+ if ok {
+ log.ZError(context.Background(), "Repeat failed", nil, msgIncr)
+ }
+ u.wsNotification[msgIncr] = ch
+ return ch
+}
+
+func (u *WsRespAsyn) GetCh(msgIncr string) chan *GeneralWsResp {
+ ch, ok := u.wsNotification[msgIncr]
+ if ok {
+ return ch
+ }
+ return nil
+}
+
+func (u *WsRespAsyn) DelCh(msgIncr string) {
+ u.wsMutex.Lock()
+ defer u.wsMutex.Unlock()
+ ch, ok := u.wsNotification[msgIncr]
+ if ok {
+ close(ch)
+ delete(u.wsNotification, msgIncr)
+ }
+}
+
+func (u *WsRespAsyn) notifyCh(ch chan *GeneralWsResp, value *GeneralWsResp, timeout int64) error {
+ var flag = 0
+ select {
+ case ch <- value:
+ flag = 1
+ case <-time.After(time.Second * time.Duration(timeout)):
+ flag = 2
+ }
+ if flag == 1 {
+ return nil
+ } else {
+ return errors.New("send cmd timeout")
+ }
+}
+
+// write a unit test for this function
+func (u *WsRespAsyn) NotifyResp(ctx context.Context, wsResp GeneralWsResp) error {
+ u.wsMutex.Lock()
+ defer u.wsMutex.Unlock()
+
+ ch := u.GetCh(wsResp.MsgIncr)
+ if ch == nil {
+ return utils.Wrap(errors.New("no ch"), "GetCh failed "+wsResp.MsgIncr)
+ }
+ for {
+ err := u.notifyCh(ch, &wsResp, 1)
+ if err != nil {
+ log.ZWarn(ctx, "TriggerCmdNewMsgCome failed ", err, "ch", ch, "wsResp", wsResp)
+ continue
+
+ }
+ return nil
+ }
+}
+func (u *WsRespAsyn) WaitResp(ctx context.Context, ch chan *GeneralWsResp, timeout int) (*GeneralWsResp, error) {
+ select {
+ case r, ok := <-ch:
+ if !ok { //ch has been closed
+ //log.Debug(operationID, "ws network has been changed ")
+ return nil, nil
+ }
+ //log.Debug(operationID, "ws ch recvMsg success, code ", r.ErrCode)
+ if r.ErrCode != 0 {
+ //log.Error(operationID, "ws ch recvMsg failed, code, err msg: ", r.ErrCode, r.ErrMsg)
+ //switch r.ErrCode {
+ //case int(constant.ErrInBlackList.ErrCode):
+ // return nil, &constant.ErrInBlackList
+ //case int(constant.ErrNotFriend.ErrCode):
+ // return nil, &constant.ErrNotFriend
+ //}
+ //return nil, errors.New(utils.IntToString(r.ErrCode) + ":" + r.ErrMsg)
+ } else {
+ return r, nil
+ }
+
+ case <-time.After(time.Second * time.Duration(timeout)):
+ //log.Error(operationID, "ws ch recvMsg err, timeout")
+ //if w.conn.IsNil() {
+ // return nil, errors.New("ws ch recvMsg err, timeout,conn is nil")
+ //}
+ //if w.conn.CheckSendConnDiffNow() {
+ // return nil, constant.WsRecvConnDiff
+ //} else {
+ // return nil, constant.WsRecvConnSame
+ //}
+ }
+ return nil, nil
+}
diff --git a/go/chao-sdk-core/internal/third/log.go b/go/chao-sdk-core/internal/third/log.go
new file mode 100644
index 0000000..aff0b6e
--- /dev/null
+++ b/go/chao-sdk-core/internal/third/log.go
@@ -0,0 +1,85 @@
+package third
+
+import (
+ "context"
+ "errors"
+ "fmt"
+ "github.com/openimsdk/openim-sdk-core/v3/internal/file"
+ "github.com/openimsdk/openim-sdk-core/v3/internal/util"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/ccontext"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/protocol/third"
+ "io"
+ "math/rand"
+ "os"
+ "path/filepath"
+ "strings"
+ "time"
+)
+
+func (c *Third) UploadLogs(ctx context.Context, progress Progress) error {
+ logFilePath := c.LogFilePath
+ entrys, err := os.ReadDir(logFilePath)
+ if err != nil {
+ return err
+ }
+ files := make([]string, 0, len(entrys))
+ for _, entry := range entrys {
+ if (!entry.IsDir()) && (!strings.HasSuffix(entry.Name(), ".zip")) && checkLogPath(entry.Name()) {
+ files = append(files, filepath.Join(logFilePath, entry.Name()))
+ }
+ }
+ if len(files) == 0 {
+ return errors.New("not found log file")
+ }
+ zippath := filepath.Join(logFilePath, fmt.Sprintf("%d_%d.zip", time.Now().UnixMilli(), rand.Uint32()))
+ defer os.Remove(zippath)
+ if err := zipFiles(zippath, files); err != nil {
+ return err
+ }
+ reqUpload := &file.UploadFileReq{Filepath: zippath, Name: fmt.Sprintf("sdk_log_%s_%s", c.loginUserID, filepath.Base(zippath)), Cause: "sdklog", ContentType: "application/zip"}
+ resp, err := c.fileUploader.UploadFile(ctx, reqUpload, &progressConvert{ctx: ctx, p: progress})
+ if err != nil {
+ return err
+ }
+ ccontext.Info(ctx)
+ reqLog := &third.UploadLogsReq{
+ Platform: c.platformID,
+ SystemType: c.systemType,
+ Version: c.version,
+ FileURLs: []*third.FileURL{{Filename: zippath, URL: resp.URL}},
+ }
+ _, err = util.CallApi[third.UploadLogsResp](ctx, constant.UploadLogsRouter, reqLog)
+ return err
+}
+
+func checkLogPath(logPath string) bool {
+ if len(logPath) < len("open-im-sdk-core.yyyy-mm-dd") {
+ return false
+ }
+ logTime := logPath[len(logPath)-len(".yyyy-mm-dd"):]
+ if _, err := time.Parse(".2006-01-02", logTime); err != nil {
+ return false
+ }
+ if !strings.HasPrefix(logPath, "open-im-sdk-core.") {
+ return false
+ }
+
+ return true
+}
+
+func (c *Third) fileCopy(src, dst string) error {
+ _ = os.RemoveAll(dst)
+ srcFile, err := os.Open(src)
+ if err != nil {
+ return err
+ }
+ defer srcFile.Close()
+ dstFile, err := os.OpenFile(dst, os.O_CREATE|os.O_WRONLY, 0777)
+ if err != nil {
+ return err
+ }
+ defer dstFile.Close()
+ _, err = io.Copy(dstFile, srcFile)
+ return err
+}
diff --git a/go/chao-sdk-core/internal/third/log_test.go b/go/chao-sdk-core/internal/third/log_test.go
new file mode 100644
index 0000000..b9ced54
--- /dev/null
+++ b/go/chao-sdk-core/internal/third/log_test.go
@@ -0,0 +1,74 @@
+package third
+
+import (
+ "fmt"
+ "os"
+ "path/filepath"
+ "testing"
+)
+
+func TestLogMatch(t *testing.T) {
+
+ filenames := []string{
+ "log1.txt",
+ "log2.log",
+ "log3.log.txt",
+ "log4.log.2022-01-01",
+ "log5.log.2022-01-01.txt",
+ "log20230918.log",
+ "OpenIM.CronTask.log.all.2023-09-18", "OpenIM.log.all.2023-09-18",
+ }
+
+ expected := []string{
+ "OpenIM.CronTask.log.all.2023-09-18", "OpenIM.log.all.2023-09-18",
+ }
+
+ var actual []string
+ for _, filename := range filenames {
+ if checkLogPath(filename) {
+ actual = append(actual, filename)
+ }
+ }
+
+ if len(actual) != len(expected) {
+ t.Errorf("Expected %d matches, but got %d", len(expected), len(actual))
+ }
+
+ for i := range expected {
+ if actual[i] != expected[i] {
+ t.Errorf("Expected match %d to be %q, but got %q", i, expected[i], actual[i])
+ }
+ }
+}
+
+func TestName(t *testing.T) {
+ dir := `C:\Users\openIM\Desktop\testlog`
+
+ dirs, err := os.ReadDir(dir)
+ if err != nil {
+ panic(err)
+ }
+ for _, entry := range dirs {
+ if !entry.IsDir() {
+ info, err := entry.Info()
+ if err != nil {
+ panic(err)
+ }
+ fmt.Println(entry.Name(), info.Size(), info.ModTime())
+ }
+ }
+
+ if true {
+ return
+ }
+
+ files := []string{
+ //filepath.Join(dir, "open-im-sdk-core.2023-10-13"),
+ filepath.Join(dir, "open-im-sdk-core.2023-11-15"),
+ //filepath.Join(dir, "open-im-sdk-core.2023-11-17"),
+ }
+
+ if err := zipFiles(filepath.Join(dir, "test1.zip"), files); err != nil {
+ t.Error(err)
+ }
+}
diff --git a/go/chao-sdk-core/internal/third/progress.go b/go/chao-sdk-core/internal/third/progress.go
new file mode 100644
index 0000000..3156ecd
--- /dev/null
+++ b/go/chao-sdk-core/internal/third/progress.go
@@ -0,0 +1,37 @@
+package third
+
+import (
+ "context"
+)
+
+type Progress interface {
+ OnProgress(current int64, size int64)
+}
+
+type progressConvert struct {
+ ctx context.Context
+ p Progress
+}
+
+func (p *progressConvert) Open(size int64) {
+ p.p.OnProgress(0, size)
+}
+
+func (p *progressConvert) PartSize(partSize int64, num int) {}
+
+func (p *progressConvert) HashPartProgress(index int, size int64, partHash string) {}
+
+func (p *progressConvert) HashPartComplete(partsHash string, fileHash string) {}
+
+func (p *progressConvert) UploadID(uploadID string) {}
+
+func (p *progressConvert) UploadPartComplete(index int, partSize int64, partHash string) {}
+
+func (p *progressConvert) UploadComplete(fileSize int64, streamSize int64, storageSize int64) {
+ //log.ZDebug(p.ctx, "upload log progress", "fileSize", fileSize, "current", streamSize)
+ p.p.OnProgress(streamSize, fileSize)
+}
+
+func (p *progressConvert) Complete(size int64, url string, typ int) {
+ p.p.OnProgress(size, size)
+}
diff --git a/go/chao-sdk-core/internal/third/third.go b/go/chao-sdk-core/internal/third/third.go
new file mode 100644
index 0000000..a7bf835
--- /dev/null
+++ b/go/chao-sdk-core/internal/third/third.go
@@ -0,0 +1,57 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package third
+
+import (
+ "context"
+ "github.com/openimsdk/openim-sdk-core/v3/internal/util"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/protocol/third"
+
+ "github.com/openimsdk/openim-sdk-core/v3/internal/file"
+)
+
+type Third struct {
+ platformID int32
+ loginUserID string
+ version string
+ systemType string
+ LogFilePath string
+ fileUploader *file.File
+}
+
+func NewThird(platformID int32, loginUserID, version, systemType, LogFilePath string, fileUploader *file.File) *Third {
+ return &Third{platformID: platformID, loginUserID: loginUserID, version: version, systemType: systemType, LogFilePath: LogFilePath, fileUploader: fileUploader}
+}
+
+func (c *Third) UpdateFcmToken(ctx context.Context, fcmToken string, expireTime int64) error {
+ req := third.FcmUpdateTokenReq{
+ PlatformID: c.platformID,
+ FcmToken: fcmToken,
+ Account: c.loginUserID,
+ ExpireTime: expireTime}
+ _, err := util.CallApi[third.FcmUpdateTokenResp](ctx, constant.FcmUpdateTokenRouter, &req)
+ return err
+
+}
+
+func (c *Third) SetAppBadge(ctx context.Context, appUnreadCount int32) error {
+ req := third.SetAppBadgeReq{
+ UserID: c.loginUserID,
+ AppUnreadCount: appUnreadCount,
+ }
+ _, err := util.CallApi[third.SetAppBadgeResp](ctx, constant.SetAppBadgeRouter, &req)
+ return err
+}
diff --git a/go/chao-sdk-core/internal/third/zip.go b/go/chao-sdk-core/internal/third/zip.go
new file mode 100644
index 0000000..aeaea62
--- /dev/null
+++ b/go/chao-sdk-core/internal/third/zip.go
@@ -0,0 +1,75 @@
+package third
+
+import (
+ "archive/zip"
+ "io"
+ "os"
+ "path/filepath"
+)
+
+func (c *Third) addFileToZip(zipWriter *zip.Writer, filename string) error {
+ file, err := os.Open(filename)
+ if err != nil {
+ return err
+ }
+ defer file.Close()
+ info, err := file.Stat()
+ if err != nil {
+ return err
+ }
+ header, err := zip.FileInfoHeader(info)
+ if err != nil {
+ return err
+ }
+ header.Name = filepath.Base(filename)
+ header.Method = zip.Deflate
+ writer, err := zipWriter.CreateHeader(header)
+ if err != nil {
+ return err
+ }
+ _, err = io.Copy(writer, io.LimitReader(file, info.Size()))
+ return err
+}
+
+func zipFiles(zipPath string, files []string) error {
+ zipFile, err := os.Create(zipPath)
+ if err != nil {
+ return err
+ }
+ defer zipFile.Close()
+ zipWriter := zip.NewWriter(zipFile)
+ defer zipWriter.Close()
+ addFileToZip := func(fp string) error {
+ file, err := os.Open(fp)
+ if err != nil {
+ return err
+ }
+ defer file.Close()
+ info, err := file.Stat()
+ if err != nil {
+ return err
+ }
+ header, err := zip.FileInfoHeader(info)
+ if err != nil {
+ return err
+ }
+ header.Name = filepath.Base(file.Name())
+ header.Method = zip.Deflate
+ writer, err := zipWriter.CreateHeader(header)
+ if err != nil {
+ return err
+ }
+ _, err = io.Copy(writer, io.LimitReader(file, info.Size()))
+ return err
+ }
+ for _, file := range files {
+ err := addFileToZip(file)
+ if err != nil {
+ return err
+ }
+ }
+ if err := zipWriter.Flush(); err != nil {
+ return err
+ }
+ return nil
+}
diff --git a/go/chao-sdk-core/internal/user/convert.go b/go/chao-sdk-core/internal/user/convert.go
new file mode 100644
index 0000000..2f68844
--- /dev/null
+++ b/go/chao-sdk-core/internal/user/convert.go
@@ -0,0 +1,43 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package user
+
+import (
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/protocol/user"
+
+ "github.com/openimsdk/protocol/sdkws"
+)
+
+func ServerUserToLocalUser(user *sdkws.UserInfo) *model_struct.LocalUser {
+ return &model_struct.LocalUser{
+ UserID: user.UserID,
+ Nickname: user.Nickname,
+ FaceURL: user.FaceURL,
+ CreateTime: user.CreateTime,
+ Ex: user.Ex,
+ //AppMangerLevel: user.AppMangerLevel,
+ GlobalRecvMsgOpt: user.GlobalRecvMsgOpt,
+ //AttachedInfo: user.AttachedInfo,
+ }
+}
+func ServerCommandToLocalCommand(data *user.AllCommandInfoResp) *model_struct.LocalUserCommand {
+ return &model_struct.LocalUserCommand{
+ Type: data.Type,
+ CreateTime: data.CreateTime,
+ Uuid: data.Uuid,
+ Value: data.Value,
+ }
+}
diff --git a/go/chao-sdk-core/internal/user/sdk.go b/go/chao-sdk-core/internal/user/sdk.go
new file mode 100644
index 0000000..6a97c91
--- /dev/null
+++ b/go/chao-sdk-core/internal/user/sdk.go
@@ -0,0 +1,89 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package user
+
+import (
+ "context"
+ "github.com/openimsdk/openim-sdk-core/v3/internal/util"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ pbUser "github.com/openimsdk/protocol/user"
+ userPb "github.com/openimsdk/protocol/user"
+
+ "github.com/openimsdk/protocol/sdkws"
+)
+
+func (u *User) GetUsersInfo(ctx context.Context, userIDs []string) ([]*model_struct.LocalUser, error) {
+ return u.GetUsersInfoFromSvr(ctx, userIDs)
+}
+
+func (u *User) GetSelfUserInfo(ctx context.Context) (*model_struct.LocalUser, error) {
+ return u.getSelfUserInfo(ctx)
+}
+
+// Deprecated: user SetSelfInfoEx instead
+func (u *User) SetSelfInfo(ctx context.Context, userInfo *sdkws.UserInfo) error {
+ return u.updateSelfUserInfo(ctx, userInfo)
+}
+func (u *User) SetSelfInfoEx(ctx context.Context, userInfo *sdkws.UserInfoWithEx) error {
+ return u.updateSelfUserInfoEx(ctx, userInfo)
+}
+func (u *User) SetGlobalRecvMessageOpt(ctx context.Context, opt int) error {
+ if err := util.ApiPost(ctx, constant.SetGlobalRecvMessageOptRouter,
+ &pbUser.SetGlobalRecvMessageOptReq{UserID: u.loginUserID, GlobalRecvMsgOpt: int32(opt)}, nil); err != nil {
+ return err
+ }
+ u.SyncLoginUserInfo(ctx)
+ return nil
+}
+
+func (u *User) UpdateMsgSenderInfo(ctx context.Context, nickname, faceURL string) (err error) {
+ if nickname != "" {
+ if err = u.DataBase.UpdateMsgSenderNickname(ctx, u.loginUserID, nickname, constant.SingleChatType); err != nil {
+ return err
+ }
+ }
+ if faceURL != "" {
+ if err = u.DataBase.UpdateMsgSenderFaceURL(ctx, u.loginUserID, faceURL, constant.SingleChatType); err != nil {
+ return err
+ }
+ }
+ return nil
+}
+
+func (u *User) SubscribeUsersStatus(ctx context.Context, userIDs []string) ([]*userPb.OnlineStatus, error) {
+ userStatus, err := u.subscribeUsersStatus(ctx, userIDs)
+ if err != nil {
+ return nil, err
+ }
+ u.OnlineStatusCache.DeleteAll()
+ u.OnlineStatusCache.StoreAll(func(value *userPb.OnlineStatus) string {
+ return value.UserID
+ }, userStatus)
+ return userStatus, nil
+}
+
+func (u *User) UnsubscribeUsersStatus(ctx context.Context, userIDs []string) error {
+ u.OnlineStatusCache.DeleteAll()
+ return u.unsubscribeUsersStatus(ctx, userIDs)
+}
+
+func (u *User) GetSubscribeUsersStatus(ctx context.Context) ([]*userPb.OnlineStatus, error) {
+ return u.getSubscribeUsersStatus(ctx)
+}
+
+func (u *User) GetUserStatus(ctx context.Context, userIDs []string) ([]*userPb.OnlineStatus, error) {
+ return u.getUserStatus(ctx, userIDs)
+}
diff --git a/go/chao-sdk-core/internal/user/sync.go b/go/chao-sdk-core/internal/user/sync.go
new file mode 100644
index 0000000..e3fd118
--- /dev/null
+++ b/go/chao-sdk-core/internal/user/sync.go
@@ -0,0 +1,97 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package user
+
+import (
+ "context"
+ "errors"
+ "github.com/openimsdk/openim-sdk-core/v3/internal/util"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ userPb "github.com/openimsdk/protocol/user"
+ "github.com/openimsdk/tools/utils/datautil"
+
+ "github.com/openimsdk/tools/errs"
+ "github.com/openimsdk/tools/log"
+ "gorm.io/gorm"
+)
+
+func (u *User) SyncLoginUserInfo(ctx context.Context) error {
+ remoteUser, err := u.GetSingleUserFromSvr(ctx, u.loginUserID)
+ if err != nil {
+ return err
+ }
+ localUser, err := u.GetLoginUser(ctx, u.loginUserID)
+ if err != nil && errs.Unwrap(err) != gorm.ErrRecordNotFound {
+ log.ZError(ctx, "SyncLoginUserInfo", err)
+ }
+ var localUsers []*model_struct.LocalUser
+ if err == nil {
+ localUsers = []*model_struct.LocalUser{localUser}
+ }
+ log.ZDebug(ctx, "SyncLoginUserInfo", "remoteUser", remoteUser, "localUser", localUser)
+ return u.userSyncer.Sync(ctx, []*model_struct.LocalUser{remoteUser}, localUsers, nil)
+}
+
+func (u *User) SyncUserStatus(ctx context.Context, fromUserID string, status int32, platformID int32) {
+ userOnlineStatus := userPb.OnlineStatus{
+ UserID: fromUserID,
+ Status: status,
+ PlatformIDs: []int32{platformID},
+ }
+ if v, ok := u.OnlineStatusCache.Load(fromUserID); ok {
+ if status == constant.Online {
+ v.PlatformIDs = utils.RemoveRepeatedElementsInList(append(v.PlatformIDs, platformID))
+ u.OnlineStatusCache.Store(fromUserID, v)
+ } else {
+ v.PlatformIDs = utils.RemoveOneInList(v.PlatformIDs, platformID)
+ if len(v.PlatformIDs) == 0 {
+ v.Status = constant.Offline
+ v.PlatformIDs = []int32{}
+ u.OnlineStatusCache.Delete(fromUserID)
+ }
+ }
+ u.listener().OnUserStatusChanged(utils.StructToJsonString(v))
+ } else {
+ if status == constant.Online {
+ u.OnlineStatusCache.Store(fromUserID, &userOnlineStatus)
+ u.listener().OnUserStatusChanged(utils.StructToJsonString(userOnlineStatus))
+ } else {
+ log.ZWarn(ctx, "exception", errors.New("user not exist"), "fromUserID", fromUserID,
+ "status", status, "platformID", platformID)
+ }
+ }
+}
+
+type CommandInfoResponse struct {
+ CommandResp []*userPb.AllCommandInfoResp `json:"CommandResp"`
+}
+
+func (u *User) SyncAllCommand(ctx context.Context) error {
+ var serverData CommandInfoResponse
+ err := util.ApiPost(ctx, constant.ProcessUserCommandGetAll, userPb.ProcessUserCommandGetAllReq{
+ UserID: u.loginUserID,
+ }, &serverData)
+ if err != nil {
+ return err
+ }
+ localData, err := u.DataBase.ProcessUserCommandGetAll(ctx)
+ if err != nil {
+ return err
+ }
+ log.ZDebug(ctx, "sync command", "data from server", serverData, "data from local", localData)
+ return u.commandSyncer.Sync(ctx, datautil.Batch(ServerCommandToLocalCommand, serverData.CommandResp), localData, nil)
+}
diff --git a/go/chao-sdk-core/internal/user/user.go b/go/chao-sdk-core/internal/user/user.go
new file mode 100644
index 0000000..1819309
--- /dev/null
+++ b/go/chao-sdk-core/internal/user/user.go
@@ -0,0 +1,427 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package user
+
+import (
+ "context"
+ "fmt"
+ "github.com/openimsdk/openim-sdk-core/v3/internal/cache"
+ "github.com/openimsdk/openim-sdk-core/v3/internal/util"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/db_interface"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/sdkerrs"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/syncer"
+ authPb "github.com/openimsdk/protocol/auth"
+ "github.com/openimsdk/protocol/sdkws"
+ userPb "github.com/openimsdk/protocol/user"
+ "github.com/openimsdk/tools/log"
+ "github.com/openimsdk/tools/utils/datautil"
+
+ "github.com/openimsdk/openim-sdk-core/v3/open_im_sdk_callback"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/common"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ PbConstant "github.com/openimsdk/protocol/constant"
+)
+
+type BasicInfo struct {
+ Nickname string
+ FaceURL string
+}
+
+// User is a struct that represents a user in the system.
+type User struct {
+ db_interface.DataBase
+ loginUserID string
+ listener func() open_im_sdk_callback.OnUserListener
+ userSyncer *syncer.Syncer[*model_struct.LocalUser, syncer.NoResp, string]
+ commandSyncer *syncer.Syncer[*model_struct.LocalUserCommand, syncer.NoResp, string]
+ conversationCh chan common.Cmd2Value
+ UserBasicCache *cache.Cache[string, *BasicInfo]
+ OnlineStatusCache *cache.Cache[string, *userPb.OnlineStatus]
+}
+
+// SetListener sets the user's listener.
+func (u *User) SetListener(listener func() open_im_sdk_callback.OnUserListener) {
+ u.listener = listener
+}
+
+// NewUser creates a new User object.
+func NewUser(dataBase db_interface.DataBase, loginUserID string, conversationCh chan common.Cmd2Value) *User {
+ user := &User{DataBase: dataBase, loginUserID: loginUserID, conversationCh: conversationCh}
+ user.initSyncer()
+ user.UserBasicCache = cache.NewCache[string, *BasicInfo]()
+ user.OnlineStatusCache = cache.NewCache[string, *userPb.OnlineStatus]()
+ return user
+}
+
+func (u *User) initSyncer() {
+ u.userSyncer = syncer.New[*model_struct.LocalUser, syncer.NoResp, string](
+ func(ctx context.Context, value *model_struct.LocalUser) error {
+ return u.InsertLoginUser(ctx, value)
+ },
+ func(ctx context.Context, value *model_struct.LocalUser) error {
+ return fmt.Errorf("not support delete user %s", value.UserID)
+ },
+ func(ctx context.Context, serverUser, localUser *model_struct.LocalUser) error {
+ return u.DataBase.UpdateLoginUser(context.Background(), serverUser)
+ },
+ func(user *model_struct.LocalUser) string {
+ return user.UserID
+ },
+ nil,
+ func(ctx context.Context, state int, server, local *model_struct.LocalUser) error {
+ switch state {
+ case syncer.Update:
+ u.listener().OnSelfInfoUpdated(utils.StructToJsonString(server))
+ if server.Nickname != local.Nickname || server.FaceURL != local.FaceURL {
+ _ = common.TriggerCmdUpdateMessage(ctx, common.UpdateMessageNode{Action: constant.UpdateMsgFaceUrlAndNickName,
+ Args: common.UpdateMessageInfo{SessionType: constant.SingleChatType, UserID: server.UserID, FaceURL: server.FaceURL, Nickname: server.Nickname}}, u.conversationCh)
+ }
+ }
+ return nil
+ },
+ )
+ u.commandSyncer = syncer.New[*model_struct.LocalUserCommand, syncer.NoResp, string](
+ func(ctx context.Context, command *model_struct.LocalUserCommand) error {
+ // Logic to insert a command
+ return u.DataBase.ProcessUserCommandAdd(ctx, command)
+ },
+ func(ctx context.Context, command *model_struct.LocalUserCommand) error {
+ // Logic to delete a command
+ return u.DataBase.ProcessUserCommandDelete(ctx, command)
+ },
+ func(ctx context.Context, serverCommand *model_struct.LocalUserCommand, localCommand *model_struct.LocalUserCommand) error {
+ // Logic to update a command
+ if serverCommand == nil || localCommand == nil {
+ return fmt.Errorf("nil command reference")
+ }
+ return u.DataBase.ProcessUserCommandUpdate(ctx, serverCommand)
+ },
+ func(command *model_struct.LocalUserCommand) string {
+ // Return a unique identifier for the command
+ if command == nil {
+ return ""
+ }
+ return command.Uuid
+ },
+ func(a *model_struct.LocalUserCommand, b *model_struct.LocalUserCommand) bool {
+ // Compare two commands to check if they are equal
+ if a == nil || b == nil {
+ return false
+ }
+ return a.Uuid == b.Uuid && a.Type == b.Type && a.Value == b.Value
+ },
+ func(ctx context.Context, state int, serverCommand *model_struct.LocalUserCommand, localCommand *model_struct.LocalUserCommand) error {
+ if u.listener == nil {
+ return nil
+ }
+ switch state {
+ case syncer.Delete:
+ u.listener().OnUserCommandDelete(utils.StructToJsonString(serverCommand))
+ case syncer.Update:
+ u.listener().OnUserCommandUpdate(utils.StructToJsonString(serverCommand))
+ case syncer.Insert:
+ u.listener().OnUserCommandAdd(utils.StructToJsonString(serverCommand))
+ }
+ return nil
+ },
+ )
+}
+
+//func (u *User) equal(a, b *model_struct.LocalUser) bool {
+// if a.CreateTime != b.CreateTime {
+// log.ZDebug(context.Background(), "user equal", "a", a.CreateTime, "b", b.CreateTime)
+// }
+// if a.UserID != b.UserID {
+// log.ZDebug(context.Background(), "user equal", "a", a.UserID, "b", b.UserID)
+// }
+// if a.Ex != b.Ex {
+// log.ZDebug(context.Background(), "user equal", "a", a.Ex, "b", b.Ex)
+// }
+//
+// if a.Nickname != b.Nickname {
+// log.ZDebug(context.Background(), "user equal", "a", a.Nickname, "b", b.Nickname)
+// }
+// if a.FaceURL != b.FaceURL {
+// log.ZDebug(context.Background(), "user equal", "a", a.FaceURL, "b", b.FaceURL)
+// }
+// if a.AttachedInfo != b.AttachedInfo {
+// log.ZDebug(context.Background(), "user equal", "a", a.AttachedInfo, "b", b.AttachedInfo)
+// }
+// if a.GlobalRecvMsgOpt != b.GlobalRecvMsgOpt {
+// log.ZDebug(context.Background(), "user equal", "a", a.GlobalRecvMsgOpt, "b", b.GlobalRecvMsgOpt)
+// }
+// if a.AppMangerLevel != b.AppMangerLevel {
+// log.ZDebug(context.Background(), "user equal", "a", a.AppMangerLevel, "b", b.AppMangerLevel)
+// }
+// return a.UserID == b.UserID && a.Nickname == b.Nickname && a.FaceURL == b.FaceURL &&
+// a.CreateTime == b.CreateTime && a.AttachedInfo == b.AttachedInfo &&
+// a.Ex == b.Ex && a.GlobalRecvMsgOpt == b.GlobalRecvMsgOpt && a.AppMangerLevel == b.AppMangerLevel
+//}
+
+// DoNotification handles incoming notifications for the user.
+func (u *User) DoNotification(ctx context.Context, msg *sdkws.MsgData) {
+ log.ZDebug(ctx, "user notification", "msg", *msg)
+ go func() {
+ switch msg.ContentType {
+ case constant.UserInfoUpdatedNotification:
+ u.userInfoUpdatedNotification(ctx, msg)
+ case constant.UserStatusChangeNotification:
+ u.userStatusChangeNotification(ctx, msg)
+ case constant.UserCommandAddNotification:
+ u.userCommandAddNotification(ctx, msg)
+ case constant.UserCommandDeleteNotification:
+ u.userCommandDeleteNotification(ctx, msg)
+ case constant.UserCommandUpdateNotification:
+ u.userCommandUpdateNotification(ctx, msg)
+ default:
+ // log.Error(operationID, "type failed ", msg.ClientMsgID, msg.ServerMsgID, msg.ContentType)
+ }
+ }()
+}
+
+// userInfoUpdatedNotification handles notifications about updated user information.
+func (u *User) userInfoUpdatedNotification(ctx context.Context, msg *sdkws.MsgData) {
+ log.ZDebug(ctx, "userInfoUpdatedNotification", "msg", *msg)
+ tips := sdkws.UserInfoUpdatedTips{}
+ if err := utils.UnmarshalNotificationElem(msg.Content, &tips); err != nil {
+ log.ZError(ctx, "comm.UnmarshalTips failed", err, "msg", msg.Content)
+ return
+ }
+
+ if tips.UserID == u.loginUserID {
+ u.SyncLoginUserInfo(ctx)
+ } else {
+ log.ZDebug(ctx, "detail.UserID != u.loginUserID, do nothing", "detail.UserID", tips.UserID, "u.loginUserID", u.loginUserID)
+ }
+}
+
+// userStatusChangeNotification get subscriber status change callback
+func (u *User) userStatusChangeNotification(ctx context.Context, msg *sdkws.MsgData) {
+ log.ZDebug(ctx, "userStatusChangeNotification", "msg", *msg)
+ tips := sdkws.UserStatusChangeTips{}
+ if err := utils.UnmarshalNotificationElem(msg.Content, &tips); err != nil {
+ log.ZError(ctx, "comm.UnmarshalTips failed", err, "msg", msg.Content)
+ return
+ }
+ if tips.FromUserID == u.loginUserID {
+ log.ZDebug(ctx, "self terminal login", "tips", tips)
+ return
+ }
+ u.SyncUserStatus(ctx, tips.FromUserID, tips.Status, tips.PlatformID)
+}
+
+// userCommandAddNotification handle notification when user add favorite
+func (u *User) userCommandAddNotification(ctx context.Context, msg *sdkws.MsgData) {
+ log.ZDebug(ctx, "userCommandAddNotification", "msg", *msg)
+ tip := sdkws.UserCommandAddTips{}
+ if tip.ToUserID == u.loginUserID {
+ u.SyncAllCommand(ctx)
+ } else {
+ log.ZDebug(ctx, "ToUserID != u.loginUserID, do nothing", "detail.UserID", tip.ToUserID, "u.loginUserID", u.loginUserID)
+ }
+}
+
+// userCommandDeleteNotification handle notification when user delete favorite
+func (u *User) userCommandDeleteNotification(ctx context.Context, msg *sdkws.MsgData) {
+ log.ZDebug(ctx, "userCommandAddNotification", "msg", *msg)
+ tip := sdkws.UserCommandDeleteTips{}
+ if tip.ToUserID == u.loginUserID {
+ u.SyncAllCommand(ctx)
+ } else {
+ log.ZDebug(ctx, "ToUserID != u.loginUserID, do nothing", "detail.UserID", tip.ToUserID, "u.loginUserID", u.loginUserID)
+ }
+}
+
+// userCommandUpdateNotification handle notification when user update favorite
+func (u *User) userCommandUpdateNotification(ctx context.Context, msg *sdkws.MsgData) {
+ log.ZDebug(ctx, "userCommandAddNotification", "msg", *msg)
+ tip := sdkws.UserCommandUpdateTips{}
+ if tip.ToUserID == u.loginUserID {
+ u.SyncAllCommand(ctx)
+ } else {
+ log.ZDebug(ctx, "ToUserID != u.loginUserID, do nothing", "detail.UserID", tip.ToUserID, "u.loginUserID", u.loginUserID)
+ }
+}
+
+// GetUsersInfoFromSvr retrieves user information from the server.
+func (u *User) GetUsersInfoFromSvr(ctx context.Context, userIDs []string) ([]*model_struct.LocalUser, error) {
+ resp, err := util.CallApi[userPb.GetDesignateUsersResp](ctx, constant.GetUsersInfoRouter, userPb.GetDesignateUsersReq{UserIDs: userIDs})
+ if err != nil {
+ return nil, sdkerrs.WrapMsg(err, "GetUsersInfoFromSvr failed")
+ }
+ return datautil.Batch(ServerUserToLocalUser, resp.UsersInfo), nil
+}
+
+// GetSingleUserFromSvr retrieves user information from the server.
+func (u *User) GetSingleUserFromSvr(ctx context.Context, userID string) (*model_struct.LocalUser, error) {
+ users, err := u.GetUsersInfoFromSvr(ctx, []string{userID})
+ if err != nil {
+ return nil, err
+ }
+ if len(users) > 0 {
+ return users[0], nil
+ }
+ return nil, sdkerrs.ErrUserIDNotFound.WrapMsg(fmt.Sprintf("getSelfUserInfo failed, userID: %s not exist", userID))
+}
+
+// getSelfUserInfo retrieves the user's information.
+func (u *User) getSelfUserInfo(ctx context.Context) (*model_struct.LocalUser, error) {
+ userInfo, errLocal := u.GetLoginUser(ctx, u.loginUserID)
+ if errLocal != nil {
+ srvUserInfo, errServer := u.GetServerUserInfo(ctx, []string{u.loginUserID})
+ if errServer != nil {
+ return nil, errServer
+ }
+ if len(srvUserInfo) == 0 {
+ return nil, sdkerrs.ErrUserIDNotFound
+ }
+ userInfo = ServerUserToLocalUser(srvUserInfo[0])
+ _ = u.InsertLoginUser(ctx, userInfo)
+ }
+ return userInfo, nil
+}
+
+// updateSelfUserInfo updates the user's information.
+func (u *User) updateSelfUserInfo(ctx context.Context, userInfo *sdkws.UserInfo) error {
+ userInfo.UserID = u.loginUserID
+ if err := util.ApiPost(ctx, constant.UpdateSelfUserInfoRouter, userPb.UpdateUserInfoReq{UserInfo: userInfo}, nil); err != nil {
+ return err
+ }
+ _ = u.SyncLoginUserInfo(ctx)
+ return nil
+}
+
+// updateSelfUserInfoEx updates the user's information with Ex field.
+func (u *User) updateSelfUserInfoEx(ctx context.Context, userInfo *sdkws.UserInfoWithEx) error {
+ userInfo.UserID = u.loginUserID
+ if err := util.ApiPost(ctx, constant.UpdateSelfUserInfoExRouter, userPb.UpdateUserInfoExReq{UserInfo: userInfo}, nil); err != nil {
+ return err
+ }
+ _ = u.SyncLoginUserInfo(ctx)
+ return nil
+}
+
+// CRUD user command
+func (u *User) ProcessUserCommandAdd(ctx context.Context, userCommand *userPb.ProcessUserCommandAddReq) error {
+ if err := util.ApiPost(ctx, constant.ProcessUserCommandAdd, userPb.ProcessUserCommandAddReq{UserID: u.loginUserID, Type: userCommand.Type, Uuid: userCommand.Uuid, Value: userCommand.Value}, nil); err != nil {
+ return err
+ }
+ return u.SyncAllCommand(ctx)
+
+}
+
+// ProcessUserCommandDelete delete user's choice
+func (u *User) ProcessUserCommandDelete(ctx context.Context, userCommand *userPb.ProcessUserCommandDeleteReq) error {
+ if err := util.ApiPost(ctx, constant.ProcessUserCommandDelete, userPb.ProcessUserCommandDeleteReq{UserID: u.loginUserID,
+ Type: userCommand.Type, Uuid: userCommand.Uuid}, nil); err != nil {
+ return err
+ }
+ return u.SyncAllCommand(ctx)
+}
+
+// ProcessUserCommandUpdate update user's choice
+func (u *User) ProcessUserCommandUpdate(ctx context.Context, userCommand *userPb.ProcessUserCommandUpdateReq) error {
+ if err := util.ApiPost(ctx, constant.ProcessUserCommandUpdate, userPb.ProcessUserCommandUpdateReq{UserID: u.loginUserID,
+ Type: userCommand.Type, Uuid: userCommand.Uuid, Value: userCommand.Value}, nil); err != nil {
+ return err
+ }
+ return u.SyncAllCommand(ctx)
+}
+
+// ProcessUserCommandGet get user's choice
+func (u *User) ProcessUserCommandGetAll(ctx context.Context) ([]*userPb.CommandInfoResp, error) {
+ localCommands, err := u.DataBase.ProcessUserCommandGetAll(ctx)
+ if err != nil {
+ return nil, err // Handle the error appropriately
+ }
+
+ var result []*userPb.CommandInfoResp
+ for _, localCommand := range localCommands {
+ result = append(result, &userPb.CommandInfoResp{
+ Type: localCommand.Type,
+ CreateTime: localCommand.CreateTime,
+ Uuid: localCommand.Uuid,
+ Value: localCommand.Value,
+ })
+ }
+
+ return result, nil
+}
+
+// ParseTokenFromSvr parses a token from the server.
+func (u *User) ParseTokenFromSvr(ctx context.Context) (int64, error) {
+ resp, err := util.CallApi[authPb.ParseTokenResp](ctx, constant.ParseTokenRouter, authPb.ParseTokenReq{})
+ return resp.ExpireTimeSeconds, err
+}
+
+// GetServerUserInfo retrieves user information from the server.
+func (u *User) GetServerUserInfo(ctx context.Context, userIDs []string) ([]*sdkws.UserInfo, error) {
+ resp, err := util.CallApi[userPb.GetDesignateUsersResp](ctx, constant.GetUsersInfoRouter, &userPb.GetDesignateUsersReq{UserIDs: userIDs})
+ if err != nil {
+ return nil, err
+ }
+ return resp.UsersInfo, nil
+}
+
+// subscribeUsersStatus Presence status of subscribed users.
+func (u *User) subscribeUsersStatus(ctx context.Context, userIDs []string) ([]*userPb.OnlineStatus, error) {
+ resp, err := util.CallApi[userPb.SubscribeOrCancelUsersStatusResp](ctx, constant.SubscribeUsersStatusRouter, &userPb.SubscribeOrCancelUsersStatusReq{
+ UserID: u.loginUserID,
+ UserIDs: userIDs,
+ Genre: PbConstant.SubscriberUser,
+ })
+ if err != nil {
+ return nil, err
+ }
+ return resp.StatusList, nil
+}
+
+// unsubscribeUsersStatus Unsubscribe a user's presence.
+func (u *User) unsubscribeUsersStatus(ctx context.Context, userIDs []string) error {
+ _, err := util.CallApi[userPb.SubscribeOrCancelUsersStatusResp](ctx, constant.SubscribeUsersStatusRouter, &userPb.SubscribeOrCancelUsersStatusReq{
+ UserID: u.loginUserID,
+ UserIDs: userIDs,
+ Genre: PbConstant.Unsubscribe,
+ })
+ if err != nil {
+ return err
+ }
+ return nil
+}
+
+// getSubscribeUsersStatus Get the online status of subscribers.
+func (u *User) getSubscribeUsersStatus(ctx context.Context) ([]*userPb.OnlineStatus, error) {
+ resp, err := util.CallApi[userPb.GetSubscribeUsersStatusResp](ctx, constant.GetSubscribeUsersStatusRouter, &userPb.GetSubscribeUsersStatusReq{
+ UserID: u.loginUserID,
+ })
+ if err != nil {
+ return nil, err
+ }
+ return resp.StatusList, nil
+}
+
+// getUserStatus Get the online status of users.
+func (u *User) getUserStatus(ctx context.Context, userIDs []string) ([]*userPb.OnlineStatus, error) {
+ resp, err := util.CallApi[userPb.GetUserStatusResp](ctx, constant.GetUserStatusRouter, &userPb.GetUserStatusReq{
+ UserID: u.loginUserID,
+ UserIDs: userIDs,
+ })
+ if err != nil {
+ return nil, err
+ }
+ return resp.StatusList, nil
+}
diff --git a/go/chao-sdk-core/internal/util/notice.go b/go/chao-sdk-core/internal/util/notice.go
new file mode 100644
index 0000000..06ec7f1
--- /dev/null
+++ b/go/chao-sdk-core/internal/util/notice.go
@@ -0,0 +1,28 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package util
+
+//func NoticeChange[T any](fn func(data string)) func(ctx context.Context, state int, value T) error {
+// return func(ctx context.Context, state int, value T) error {
+// if state != syncer.Unchanged {
+// data, err := json.Marshal(value)
+// if err != nil {
+// return err
+// }
+// fn(string(data))
+// }
+// return nil
+// }
+//}
diff --git a/go/chao-sdk-core/internal/util/post.go b/go/chao-sdk-core/internal/util/post.go
new file mode 100644
index 0000000..4941454
--- /dev/null
+++ b/go/chao-sdk-core/internal/util/post.go
@@ -0,0 +1,239 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package util
+
+import (
+ "bytes"
+ "context"
+ "encoding/json"
+ "fmt"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/ccontext"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/page"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/sdkerrs"
+ "github.com/openimsdk/tools/errs"
+ "io"
+ "net/http"
+ "time"
+
+ "github.com/openimsdk/protocol/sdkws"
+ "github.com/openimsdk/tools/log"
+)
+
+// apiClient is a global HTTP client with a timeout of one minute.
+var apiClient = &http.Client{
+ Timeout: time.Second * 30,
+}
+
+// ApiResponse represents the standard structure of an API response.
+type ApiResponse struct {
+ ErrCode int `json:"errCode"`
+ ErrMsg string `json:"errMsg"`
+ ErrDlt string `json:"errDlt"`
+ Data json.RawMessage `json:"data"`
+}
+
+// ApiPost performs an HTTP POST request to a specified API endpoint.
+// It serializes the request object, sends it to the API, and unmarshals the response into the resp object.
+// It handles logging, error wrapping, and operation ID validation.
+// Context (ctx) is used for passing metadata and control information.
+// api: the API endpoint to which the request is sent.
+// req: the request object to be sent to the API.
+// resp: a pointer to the response object where the API response will be unmarshalled.
+// Returns an error if the request fails at any stage.
+func ApiPost(ctx context.Context, api string, req, resp any) (err error) {
+ // Extract operationID from context and validate.
+ operationID, _ := ctx.Value("operationID").(string)
+ if operationID == "" {
+ err := sdkerrs.ErrArgs.WrapMsg("call api operationID is empty")
+ log.ZError(ctx, "ApiRequest", err, "type", "ctx not set operationID")
+ return err
+ }
+
+ // Deferred function to log the result of the API call.
+ defer func(start time.Time) {
+ elapsed := time.Since(start).Milliseconds()
+ if err == nil {
+ log.ZDebug(ctx, "CallApi", "api", api, "state", "success", "cost time", fmt.Sprintf("%dms", elapsed))
+ } else {
+ log.ZError(ctx, "CallApi", err, "api", api, "state", "failed", "cost time", fmt.Sprintf("%dms", elapsed))
+ }
+ }(time.Now())
+
+ // Serialize the request object to JSON.
+ reqBody, err := json.Marshal(req)
+ if err != nil {
+ log.ZError(ctx, "ApiRequest", err, "type", "json.Marshal(req) failed")
+ return sdkerrs.ErrSdkInternal.WrapMsg("json.Marshal(req) failed " + err.Error())
+ }
+
+ // Construct the full API URL and create a new HTTP request with context.
+ ctxInfo := ccontext.Info(ctx)
+ reqUrl := ctxInfo.ApiAddr() + api
+ request, err := http.NewRequestWithContext(ctx, http.MethodPost, reqUrl, bytes.NewReader(reqBody))
+ if err != nil {
+ log.ZError(ctx, "ApiRequest", err, "type", "http.NewRequestWithContext failed")
+ return sdkerrs.ErrSdkInternal.WrapMsg("sdk http.NewRequestWithContext failed " + err.Error())
+ }
+
+ // Set headers for the request.
+ log.ZDebug(ctx, "ApiRequest", "url", reqUrl, "body", string(reqBody))
+ request.ContentLength = int64(len(reqBody))
+ request.Header.Set("Content-Type", "application/json")
+ request.Header.Set("operationID", operationID)
+ request.Header.Set("token", ctxInfo.Token())
+
+ // Send the request and receive the response.
+ response, err := apiClient.Do(request)
+ if err != nil {
+ log.ZError(ctx, "ApiRequest", err, "type", "network error")
+ return sdkerrs.ErrNetwork.WrapMsg("ApiPost http.Client.Do failed " + err.Error())
+ }
+
+ // Ensure the response body is closed after processing.
+ defer response.Body.Close()
+
+ // Read the response body.
+ respBody, err := io.ReadAll(response.Body)
+ if err != nil {
+ log.ZError(ctx, "ApiResponse", err, "type", "read body", "status", response.Status)
+ return sdkerrs.ErrSdkInternal.WrapMsg("io.ReadAll(ApiResponse) failed " + err.Error())
+ }
+
+ // Log the response for debugging purposes.
+ log.ZDebug(ctx, "ApiResponse", "url", reqUrl, "status", response.Status, "body", string(respBody))
+
+ // Unmarshal the response body into the ApiResponse structure.
+ var baseApi ApiResponse
+ if err := json.Unmarshal(respBody, &baseApi); err != nil {
+ log.ZError(ctx, "ApiResponse", err, "type", "api code parse")
+ return sdkerrs.ErrSdkInternal.WrapMsg(fmt.Sprintf("api %s json.Unmarshal(%q, %T) failed %s", api, string(respBody), &baseApi, err.Error()))
+ }
+
+ // Check if the API returned an error code and handle it.
+ if baseApi.ErrCode != 0 {
+ err := sdkerrs.New(baseApi.ErrCode, baseApi.ErrMsg, baseApi.ErrDlt)
+ ccontext.GetApiErrCodeCallback(ctx).OnError(ctx, err)
+ log.ZError(ctx, "ApiResponse", err, "type", "api code error", "msg", baseApi.ErrMsg, "dlt", baseApi.ErrDlt)
+ return err
+ }
+
+ // If no data is received, or it's null, return with no error.
+ if resp == nil || len(baseApi.Data) == 0 || string(baseApi.Data) == "null" {
+ return nil
+ }
+
+ // Unmarshal the actual data part of the response into the provided response object.
+ if err := json.Unmarshal(baseApi.Data, resp); err != nil {
+ log.ZError(ctx, "ApiResponse", err, "type", "api data parse", "data", string(baseApi.Data), "bind", fmt.Sprintf("%T", resp))
+ return sdkerrs.ErrSdkInternal.WrapMsg(fmt.Sprintf("json.Unmarshal(%q, %T) failed %s", string(baseApi.Data), resp, err.Error()))
+ }
+
+ return nil
+}
+
+// CallApi wraps ApiPost to make an API call and unmarshal the response into a new instance of type T.
+func CallApi[T any](ctx context.Context, api string, req any) (*T, error) {
+ var resp T
+ if err := ApiPost(ctx, api, req, &resp); err != nil {
+ return nil, err
+ }
+ return &resp, nil
+}
+
+// GetPageAll handles pagination for API requests. It iterates over pages of data until all data is retrieved.
+// A is the request type with pagination support, B is the response type, and C is the type of data to be returned.
+// The function fn processes each page of response data to extract a slice of C.
+func GetPageAll[A interface {
+ GetPagination() *sdkws.RequestPagination
+}, B, C any](ctx context.Context, api string, req A, fn func(resp *B) []C) ([]C, error) {
+ if req.GetPagination().ShowNumber <= 0 {
+ req.GetPagination().ShowNumber = 50
+ }
+ var res []C
+ for i := int32(0); ; i++ {
+ req.GetPagination().PageNumber = i + 1
+ memberResp, err := CallApi[B](ctx, api, req)
+ if err != nil {
+ return nil, err
+ }
+ list := fn(memberResp)
+ res = append(res, list...)
+ if len(list) < int(req.GetPagination().ShowNumber) {
+ break
+ }
+ }
+ return res, nil
+}
+
+func GetPageAllWithMaxNum[A interface {
+ GetPagination() *sdkws.RequestPagination
+}, B, C any](ctx context.Context, api string, req A, fn func(resp *B) []C, maxItems int) ([]C, error) {
+ if req.GetPagination().ShowNumber <= 0 {
+ req.GetPagination().ShowNumber = 50
+ }
+ var res []C
+ totalFetched := 0
+ for i := int32(0); ; i++ {
+ req.GetPagination().PageNumber = i + 1
+ memberResp, err := CallApi[B](ctx, api, req)
+ if err != nil {
+ return nil, err
+ }
+ list := fn(memberResp)
+ res = append(res, list...)
+ totalFetched += len(list)
+ if len(list) < int(req.GetPagination().ShowNumber) || (maxItems > 0 && totalFetched >= maxItems) {
+ break
+ }
+ }
+ if maxItems > 0 && len(res) > maxItems {
+ res = res[:maxItems]
+ }
+ return res, nil
+}
+
+func FetchAndInsertPagedData[RESP, L any](ctx context.Context, api string, req page.PageReq, fn func(resp *RESP) []L, batchInsertFn func(ctx context.Context, items []L) error,
+ insertFn func(ctx context.Context, item L) error, maxItems int) error {
+ if req.GetPagination().ShowNumber <= 0 {
+ req.GetPagination().ShowNumber = 50
+ }
+ var errSingle error
+ var errList []error
+ totalFetched := 0
+ for i := int32(0); ; i++ {
+ req.GetPagination().PageNumber = i + 1
+ memberResp, err := CallApi[RESP](ctx, api, req)
+ if err != nil {
+ return err
+ }
+ list := fn(memberResp)
+ if err := batchInsertFn(ctx, list); err != nil {
+ for _, item := range list {
+ errSingle = insertFn(ctx, item)
+ if errSingle != nil {
+ errList = append(errList, errs.New(errSingle.Error(), "item", item))
+ }
+ }
+ }
+ totalFetched += len(list)
+ if len(list) < int(req.GetPagination().ShowNumber) || (maxItems > 0 && totalFetched >= maxItems) {
+ break
+ }
+ }
+ if len(errList) > 0 {
+ return errs.WrapMsg(errList[0], "batch insert failed due to data exception")
+ }
+ return nil
+}
diff --git a/go/chao-sdk-core/internal/work_moments/sdk.go b/go/chao-sdk-core/internal/work_moments/sdk.go
new file mode 100644
index 0000000..f594a13
--- /dev/null
+++ b/go/chao-sdk-core/internal/work_moments/sdk.go
@@ -0,0 +1,40 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package workMoments
+
+//import (
+// "context"
+// "open_im_sdk/open_im_sdk_callback"
+// "open_im_sdk/pkg/db/model_struct"
+//)
+//
+//funcation (w *WorkMoments) SetListener(callback open_im_sdk_callback.OnWorkMomentsListener) {
+// if callback == nil {
+// return
+// }
+// w.listener = callback
+//}
+//
+//funcation (w *WorkMoments) GetWorkMomentsUnReadCount(ctx context.Context) (model_struct.LocalWorkMomentsNotificationUnreadCount, error) {
+// return w.getWorkMomentsNotificationUnReadCount(ctx)
+//}
+//
+//funcation (w *WorkMoments) GetWorkMomentsNotification(ctx context.Context, offset, count int) ([]*model_struct.WorkMomentNotificationMsg, error) {
+// return w.getWorkMomentsNotification(ctx, offset, count)
+//}
+//
+//funcation (w *WorkMoments) ClearWorkMomentsNotification(ctx context.Context) error {
+// return w.clearWorkMomentsNotification(ctx)
+//}
diff --git a/go/chao-sdk-core/internal/work_moments/work_moments.go b/go/chao-sdk-core/internal/work_moments/work_moments.go
new file mode 100644
index 0000000..2eacd31
--- /dev/null
+++ b/go/chao-sdk-core/internal/work_moments/work_moments.go
@@ -0,0 +1,78 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+package workMoments
+
+//
+//import (
+// "context"
+// "open_im_sdk/open_im_sdk_callback"
+// "open_im_sdk/pkg/db/db_interface"
+// "open_im_sdk/pkg/db/model_struct"
+// "open_im_sdk/pkg/utils"
+//
+// "github.com/openimsdk/tools/log"
+//)
+//
+//type WorkMoments struct {
+// listener open_im_sdk_callback.OnWorkMomentsListener
+// loginUserID string
+// db db_interface.DataBase
+//}
+//
+//funcation NewWorkMoments(loginUserID string, db db_interface.DataBase) *WorkMoments {
+// return &WorkMoments{loginUserID: loginUserID, db: db}
+//}
+//
+//funcation (w *WorkMoments) DoNotification(ctx context.Context, jsonDetail string) {
+// if w.listener == nil {
+// return
+// }
+// if err := w.db.InsertWorkMomentsNotification(ctx, jsonDetail); err != nil {
+// log.ZError(ctx, "InsertWorkMomentsNotification failed", err, "jsonDetail", jsonDetail)
+// return
+// }
+// if err := w.db.IncrWorkMomentsNotificationUnreadCount(ctx); err != nil {
+// log.ZError(ctx, "IncrWorkMomentsNotificationUnreadCount failed", err)
+// return
+// }
+// w.listener.OnRecvNewNotification()
+//}
+//
+//funcation (w *WorkMoments) getWorkMomentsNotification(ctx context.Context, offset, count int) ([]*model_struct.WorkMomentNotificationMsg, error) {
+// if err := w.db.MarkAllWorkMomentsNotificationAsRead(ctx); err != nil {
+// return nil, err
+// }
+// workMomentsNotifications, err := w.db.GetWorkMomentsNotification(ctx, offset, count)
+// if err != nil {
+// return nil, err
+// }
+// msgs := make([]*model_struct.WorkMomentNotificationMsg, len(workMomentsNotifications))
+// for i, v := range workMomentsNotifications {
+// workMomentNotificationMsg := model_struct.WorkMomentNotificationMsg{}
+// if err := utils.JsonStringToStruct(v.JsonDetail, &workMomentNotificationMsg); err != nil {
+// log.ZError(ctx, "invalid data", err, "jsonDetail", v.JsonDetail)
+// continue
+// }
+// msgs[i] = &workMomentNotificationMsg
+// }
+// return msgs, nil
+//}
+//
+//funcation (w *WorkMoments) clearWorkMomentsNotification(ctx context.Context) error {
+// return w.db.ClearWorkMomentsNotification(ctx)
+//}
+//
+//funcation (w *WorkMoments) getWorkMomentsNotificationUnReadCount(ctx context.Context) (model_struct.LocalWorkMomentsNotificationUnreadCount, error) {
+// return w.db.GetWorkMomentsUnReadCount(ctx)
+//}
diff --git a/go/chao-sdk-core/msgtest/config.go b/go/chao-sdk-core/msgtest/config.go
new file mode 100644
index 0000000..e02295c
--- /dev/null
+++ b/go/chao-sdk-core/msgtest/config.go
@@ -0,0 +1,38 @@
+package msgtest
+
+import (
+ "fmt"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/sdk_struct"
+)
+
+// config here
+
+// system
+var (
+ TESTIP = "59.36.173.89"
+ APIADDR = fmt.Sprintf("http://%v:10002", TESTIP)
+ WSADDR = fmt.Sprintf("ws://%v:10001", TESTIP)
+ SECRET = "openIM123"
+ MANAGERUSERID = "openIMAdmin"
+
+ PLATFORMID = constant.WindowsPlatformID
+ LogLevel = uint32(5)
+
+ REGISTERADDR = APIADDR + constant.UserRegister
+ TOKENADDR = APIADDR + constant.GetUsersToken
+)
+
+func GetConfig() *sdk_struct.IMConfig {
+ var cf sdk_struct.IMConfig
+ cf.ApiAddr = APIADDR
+ cf.PlatformID = int32(PLATFORMID)
+ cf.WsAddr = WSADDR
+ cf.DataDir = "./"
+ cf.LogLevel = LogLevel
+ cf.IsExternalExtensions = true
+ cf.IsLogStandardOutput = true
+ cf.LogFilePath = ""
+ return &cf
+
+}
diff --git a/go/chao-sdk-core/msgtest/conversation_test.go b/go/chao-sdk-core/msgtest/conversation_test.go
new file mode 100644
index 0000000..877a2df
--- /dev/null
+++ b/go/chao-sdk-core/msgtest/conversation_test.go
@@ -0,0 +1,7 @@
+package msgtest
+
+import "testing"
+
+func Test_CreateConversations(t *testing.T) {
+
+}
diff --git a/go/chao-sdk-core/msgtest/message_test.go b/go/chao-sdk-core/msgtest/message_test.go
new file mode 100644
index 0000000..f4f7c57
--- /dev/null
+++ b/go/chao-sdk-core/msgtest/message_test.go
@@ -0,0 +1,38 @@
+package msgtest
+
+import (
+ "context"
+ "github.com/openimsdk/openim-sdk-core/v3/msgtest/module"
+ "github.com/openimsdk/openim-sdk-core/v3/msgtest/sdk_user_simulator"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/ccontext"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/tools/log"
+ "testing"
+)
+
+func Test_SimulateMultiOnline(t *testing.T) {
+ ctx := ccontext.WithOperationID(context.Background(), "TEST_ROOT")
+ userIDList := []string{"1", "2"}
+ metaManager := module.NewMetaManager(APIADDR, SECRET, MANAGERUSERID)
+ userManager := metaManager.NewUserManager()
+ serverTime, err := metaManager.GetServerTime()
+ if err != nil {
+ t.Fatal(err)
+ }
+ offset := serverTime - utils.GetCurrentTimestampByMill()
+ sdk_user_simulator.SetServerTimeOffset(offset)
+ for _, userID := range userIDList {
+ token, err := userManager.GetToken(userID, int32(PLATFORMID))
+ if err != nil {
+ log.ZError(ctx, "get token failed, err: %v", err, "userID", userID)
+ continue
+ }
+ err = sdk_user_simulator.InitSDKAndLogin(userID, token)
+ if err != nil {
+ log.ZError(ctx, "login failed, err: %v", err, "userID", userID)
+ } else {
+ log.ZDebug(ctx, "login success, userID: %v", "userID", userID)
+ }
+ }
+
+}
diff --git a/go/chao-sdk-core/msgtest/module/api_msg_sender.go b/go/chao-sdk-core/msgtest/module/api_msg_sender.go
new file mode 100644
index 0000000..d165965
--- /dev/null
+++ b/go/chao-sdk-core/msgtest/module/api_msg_sender.go
@@ -0,0 +1,51 @@
+package module
+
+import (
+ "fmt"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/sdk_struct"
+
+ "github.com/openimsdk/protocol/msg"
+ "github.com/openimsdk/protocol/sdkws"
+)
+
+type ApiMsgSender struct {
+ *MetaManager
+}
+
+type SendMsgReq struct {
+ RecvID string `json:"recvID" binding:"required_if" message:"recvID is required if sessionType is SingleChatType or NotificationChatType"`
+ SendMsg
+}
+
+type SendMsg struct {
+ SendID string `json:"sendID" binding:"required"`
+ GroupID string `json:"groupID" binding:"required_if=SessionType 2|required_if=SessionType 3"`
+ SenderNickname string `json:"senderNickname"`
+ SenderFaceURL string `json:"senderFaceURL"`
+ SenderPlatformID int32 `json:"senderPlatformID"`
+ Content map[string]interface{} `json:"content" binding:"required" swaggerignore:"true"`
+ ContentType int32 `json:"contentType" binding:"required"`
+ SessionType int32 `json:"sessionType" binding:"required"`
+ IsOnlineOnly bool `json:"isOnlineOnly"`
+ NotOfflinePush bool `json:"notOfflinePush"`
+ OfflinePushInfo *sdkws.OfflinePushInfo `json:"offlinePushInfo"`
+}
+
+func (a *ApiMsgSender) SendMsg(sendID, recvID string, index int) error {
+ content := fmt.Sprintf("this is test msg user %s to user %s, index: %d", sendID, recvID, index)
+ text := sdk_struct.TextElem{Content: content}
+ req := &SendMsgReq{
+ RecvID: recvID,
+ SendMsg: SendMsg{
+ SendID: sendID,
+ SenderPlatformID: constant.WindowsPlatformID,
+ ContentType: constant.Text,
+ SessionType: constant.SingleChatType,
+ Content: map[string]interface{}{"content": utils.StructToJsonString(text)},
+ },
+ }
+ var resp msg.SendMsgResp
+ return a.postWithCtx(constant.SendMsgRouter, req, &resp)
+}
diff --git a/go/chao-sdk-core/msgtest/module/friend_manager.go b/go/chao-sdk-core/msgtest/module/friend_manager.go
new file mode 100644
index 0000000..675699f
--- /dev/null
+++ b/go/chao-sdk-core/msgtest/module/friend_manager.go
@@ -0,0 +1,18 @@
+package module
+
+import (
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/protocol/relation"
+)
+
+type TestFriendManager struct {
+ *MetaManager
+}
+
+func (t *TestFriendManager) ImportFriends(ownerUserID string, friendUserIDs []string) error {
+ req := &relation.ImportFriendReq{
+ OwnerUserID: ownerUserID,
+ FriendUserIDs: friendUserIDs,
+ }
+ return t.postWithCtx(constant.ImportFriendListRouter, &req, nil)
+}
diff --git a/go/chao-sdk-core/msgtest/module/group_manager.go b/go/chao-sdk-core/msgtest/module/group_manager.go
new file mode 100644
index 0000000..3dc9033
--- /dev/null
+++ b/go/chao-sdk-core/msgtest/module/group_manager.go
@@ -0,0 +1,75 @@
+package module
+
+import (
+ "context"
+ "fmt"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "time"
+
+ "github.com/openimsdk/protocol/group"
+ "github.com/openimsdk/protocol/sdkws"
+)
+
+type TestGroupManager struct {
+ *MetaManager
+}
+
+func (t *TestGroupManager) GenGroupID(prefix string) string {
+ return fmt.Sprintf("%s_test_group_id_%d", prefix, time.Now().UnixNano())
+}
+
+func (t *TestGroupManager) CreateGroup(groupID string, groupName string, ownerUserID string, userIDs []string) error {
+ const batch = 2000
+ var memberUserIDs []string
+ if len(userIDs) > batch {
+ memberUserIDs = userIDs[:batch]
+ } else {
+ memberUserIDs = userIDs
+ }
+ req := &group.CreateGroupReq{
+ MemberUserIDs: memberUserIDs,
+ OwnerUserID: ownerUserID,
+ GroupInfo: &sdkws.GroupInfo{
+ GroupID: groupID,
+ GroupName: groupName,
+ GroupType: constant.WorkingGroup,
+ CreatorUserID: ownerUserID,
+ },
+ }
+ resp := &group.CreateGroupResp{}
+ if err := t.postWithCtx(constant.CreateGroupRouter, &req, &resp); err != nil {
+ return err
+ }
+ if len(userIDs) > batch {
+ num := len(userIDs) / batch
+ if len(userIDs)%batch != 0 {
+ num++
+ }
+ for i := 1; i < num; i++ {
+ start := batch * i
+ end := batch*i + batch
+ if len(userIDs) < end {
+ end = len(userIDs)
+ }
+ req := map[string]any{
+ "groupID": groupID,
+ "invitedUserIDs": userIDs[start:end],
+ "reason": "test",
+ }
+ resp := struct{}{}
+ if err := t.postWithCtx(constant.RouterGroup+"/invite_user_to_group", req, &resp); err != nil {
+ return err
+ }
+ }
+ }
+ return nil
+}
+
+func (t *TestGroupManager) InviteUserToGroup(ctx context.Context, groupID string, invitedUserIDs []string) error {
+ req := &group.InviteUserToGroupReq{
+ GroupID: groupID,
+ InvitedUserIDs: invitedUserIDs,
+ }
+ resp := &group.InviteUserToGroupResp{}
+ return t.postWithCtx(constant.InviteUserToGroupRouter, &req, &resp)
+}
diff --git a/go/chao-sdk-core/msgtest/module/manager.go b/go/chao-sdk-core/msgtest/module/manager.go
new file mode 100644
index 0000000..d99dcaf
--- /dev/null
+++ b/go/chao-sdk-core/msgtest/module/manager.go
@@ -0,0 +1,140 @@
+package module
+
+import (
+ "bytes"
+ "context"
+ "encoding/json"
+ "fmt"
+ "github.com/openimsdk/openim-sdk-core/v3/internal/util"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/sdkerrs"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ authPB "github.com/openimsdk/protocol/auth"
+ "github.com/openimsdk/protocol/msg"
+ "github.com/openimsdk/tools/log"
+ "github.com/openimsdk/tools/mcontext"
+ "io"
+ "net/http"
+)
+
+const (
+ ManagerUserID = "openIMAdmin"
+)
+
+type MetaManager struct {
+ managerUserID string
+ apiAddr string
+ secret string
+ token string
+}
+
+func NewMetaManager(apiAddr, secret, managerUserID string) *MetaManager {
+ return &MetaManager{
+ managerUserID: managerUserID,
+ apiAddr: apiAddr,
+ secret: secret,
+ }
+}
+
+func (m *MetaManager) NewUserManager() *TestUserManager {
+ return &TestUserManager{m}
+}
+
+func (m *MetaManager) NewGroupMananger() *TestGroupManager {
+ return &TestGroupManager{m}
+}
+
+func (m *MetaManager) NewFriendManager() *TestFriendManager {
+ return &TestFriendManager{m}
+}
+
+func (m *MetaManager) NewApiMsgSender() *ApiMsgSender {
+ return &ApiMsgSender{m}
+}
+
+func (m *MetaManager) apiPost(ctx context.Context, route string, req, resp any) (err error) {
+ operationID, _ := ctx.Value("operationID").(string)
+ if operationID == "" {
+ err := sdkerrs.ErrArgs.Wrap("call api operationID is empty")
+ return err
+ }
+ reqBody, err := json.Marshal(req)
+ if err != nil {
+ return sdkerrs.ErrSdkInternal.Wrap("json.Marshal(req) failed " + err.Error())
+ }
+ reqUrl := m.apiAddr + route
+ request, err := http.NewRequestWithContext(ctx, http.MethodPost, reqUrl, bytes.NewReader(reqBody))
+ if err != nil {
+ return sdkerrs.ErrSdkInternal.Wrap("sdk http.NewRequestWithContext failed " + err.Error())
+ }
+ log.ZDebug(ctx, "ApiRequest", "url", reqUrl, "body", string(reqBody))
+ request.ContentLength = int64(len(reqBody))
+ request.Header.Set("Content-Type", "application/json")
+ request.Header.Set("operationID", operationID)
+ if m.token != "" {
+ request.Header.Set("token", m.token)
+ }
+ response, err := new(http.Client).Do(request)
+ if err != nil {
+ return sdkerrs.ErrNetwork.Wrap("ApiPost http.Client.Do failed " + err.Error())
+ }
+ defer response.Body.Close()
+ respBody, err := io.ReadAll(response.Body)
+ if err != nil {
+ log.ZError(ctx, "ApiResponse", err, "type", "read body", "status", response.Status)
+ return sdkerrs.ErrSdkInternal.Wrap("io.ReadAll(ApiResponse) failed " + err.Error())
+ }
+ log.ZDebug(ctx, "ApiResponse", "url", reqUrl, "status", response.Status, "body", string(respBody))
+ var baseApi util.ApiResponse
+ if err := json.Unmarshal(respBody, &baseApi); err != nil {
+ return sdkerrs.ErrSdkInternal.Wrap(fmt.Sprintf("api %s json.Unmarshal(%q, %T) failed %s", m.apiAddr, string(respBody), &baseApi, err.Error()))
+ }
+ if baseApi.ErrCode != 0 {
+ err := sdkerrs.New(baseApi.ErrCode, baseApi.ErrMsg, baseApi.ErrDlt)
+ return err
+ }
+ if resp == nil || len(baseApi.Data) == 0 || string(baseApi.Data) == "null" {
+ return nil
+ }
+ if err := json.Unmarshal(baseApi.Data, resp); err != nil {
+ return sdkerrs.ErrSdkInternal.Wrap(fmt.Sprintf("json.Unmarshal(%q, %T) failed %s", string(baseApi.Data), resp, err.Error()))
+ }
+ return nil
+}
+
+func (m *MetaManager) postWithCtx(route string, req, resp any) error {
+ return m.apiPost(m.buildCtx(), route, req, resp)
+}
+
+func (m *MetaManager) buildCtx() context.Context {
+ return mcontext.NewCtx(utils.OperationIDGenerator())
+}
+
+func (m *MetaManager) getToken(userID string, platformID int32) (string, error) {
+ req := authPB.UserTokenReq{PlatformID: platformID, UserID: userID, Secret: m.secret}
+ resp := authPB.UserTokenResp{}
+ err := m.postWithCtx(constant.GetUsersToken, &req, &resp)
+ if err != nil {
+ return "", err
+ }
+ return resp.Token, nil
+}
+
+func (m *MetaManager) initToken() error {
+ token, err := m.getToken(m.managerUserID, constant.AdminPlatformID)
+ if err != nil {
+ return err
+ }
+ m.token = token
+ return nil
+}
+func (m *MetaManager) GetServerTime() (int64, error) {
+ req := msg.GetServerTimeReq{}
+ resp := msg.GetServerTimeResp{}
+ err := m.postWithCtx(constant.GetServerTimeRouter, &req, &resp)
+ if err != nil {
+ return 0, err
+ } else {
+ return resp.ServerTime, nil
+ }
+}
diff --git a/go/chao-sdk-core/msgtest/module/msg_sender.go b/go/chao-sdk-core/msgtest/module/msg_sender.go
new file mode 100644
index 0000000..8878766
--- /dev/null
+++ b/go/chao-sdk-core/msgtest/module/msg_sender.go
@@ -0,0 +1,183 @@
+package module
+
+import (
+ "context"
+ "fmt"
+ "github.com/openimsdk/openim-sdk-core/v3/internal/interaction"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/ccontext"
+
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/common"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/sdk_struct"
+ "time"
+
+ "github.com/openimsdk/protocol/sdkws"
+ "github.com/openimsdk/tools/log"
+ "github.com/openimsdk/tools/mcontext"
+)
+
+type SendMsgUser struct {
+ longConnMgr *interaction.LongConnMgr
+ userID string
+ pushMsgAndMaxSeqCh chan common.Cmd2Value
+ recvPushMsgCallback func(msg *sdkws.MsgData)
+ failedMessageMap map[string]error
+ cancelFunc context.CancelFunc
+ ctx context.Context
+}
+
+func (b SendMsgUser) GetUserID() string {
+ return b.userID
+}
+
+func WithRecvPushMsgCallback(callback func(msg *sdkws.MsgData)) func(core *SendMsgUser) {
+ return func(core *SendMsgUser) {
+ core.recvPushMsgCallback = callback
+ }
+}
+
+func newIMconfig(platformID int32, apiAddr, wsAddr string) sdk_struct.IMConfig {
+ return sdk_struct.IMConfig{
+ PlatformID: platformID,
+ ApiAddr: apiAddr,
+ WsAddr: wsAddr,
+ }
+}
+
+func newUserCtx(userID, token string, imConfig sdk_struct.IMConfig) context.Context {
+ return ccontext.WithInfo(context.Background(), &ccontext.GlobalConfig{
+ UserID: userID,
+ Token: token,
+ IMConfig: imConfig})
+}
+
+func NewUser(userID, token string, imConfig sdk_struct.IMConfig, opts ...func(core *SendMsgUser)) *SendMsgUser {
+ pushMsgAndMaxSeqCh := make(chan common.Cmd2Value, 1000)
+ ctx := newUserCtx(userID, token, imConfig)
+ longConnMgr := interaction.NewLongConnMgr(ctx, &ConnListner{}, nil, pushMsgAndMaxSeqCh, nil)
+ core := &SendMsgUser{
+ pushMsgAndMaxSeqCh: pushMsgAndMaxSeqCh,
+ longConnMgr: longConnMgr,
+ userID: userID,
+ failedMessageMap: make(map[string]error),
+ ctx: ctx,
+ }
+ for _, opt := range opts {
+ opt(core)
+ }
+ baseCtx, cancel := context.WithCancel(ctx)
+ core.cancelFunc = cancel
+ go core.recvPushMsg(baseCtx)
+ go core.longConnMgr.Run(baseCtx)
+ return core
+}
+
+func (b *SendMsgUser) Close(ctx context.Context) {
+ b.longConnMgr.Close(ctx)
+ b.cancelFunc()
+}
+
+func (b *SendMsgUser) SendMsgWithContext(userID string, index int) error {
+ newCtx := mcontext.SetOperationID(b.ctx, utils.OperationIDGenerator())
+ return b.SendSingleMsg(newCtx, userID, index)
+}
+
+func (b *SendMsgUser) SendGroupMsgWithContext(groupID string, index int) error {
+ newCtx := mcontext.SetOperationID(b.ctx, utils.OperationIDGenerator())
+ return b.SendGroupMsg(newCtx, groupID, index)
+
+}
+
+func (b *SendMsgUser) SendSingleMsg(ctx context.Context, userID string, index int) error {
+ return b.sendMsg(ctx, userID, "", index, constant.SingleChatType, fmt.Sprintf("this is test msg user %s to user %s, index: %d", b.userID, userID, index))
+}
+
+func (b *SendMsgUser) BatchSendSingleMsg(ctx context.Context, userID string, index int) error {
+ content := fmt.Sprintf("this is test msg user %s to user %s, index: %d", b.userID, userID, index)
+ err := b.sendMsg(ctx, userID, "", index, constant.SingleChatType, content)
+ if err != nil {
+ log.ZError(ctx, "send msg failed", err, "userID", userID, "index", index, "content", content)
+ b.failedMessageMap[content] = err
+ }
+ return nil
+}
+
+func (b *SendMsgUser) SendGroupMsg(ctx context.Context, groupID string, index int) error {
+ return b.sendMsg(ctx, "", groupID, index, constant.SuperGroupChatType, fmt.Sprintf("this is test msg user %s to group %s, index: %d", b.userID, groupID, index))
+}
+
+func (b *SendMsgUser) BatchSendGroupMsg(ctx context.Context, groupID string, index int) error {
+ content := fmt.Sprintf("this is test msg user %s to group %s, index: %d", b.userID, groupID, index)
+ err := b.sendMsg(ctx, "", groupID, index, constant.SuperGroupChatType, content)
+ if err != nil {
+ log.ZError(ctx, "send msg failed", err, "groupID", groupID, "index", index, "content", content)
+ b.failedMessageMap[content] = err
+ }
+ return nil
+}
+
+func (b *SendMsgUser) sendMsg(ctx context.Context, userID, groupID string, index int, sesstionType int32, content string) error {
+ var resp sdkws.UserSendMsgResp
+ text := sdk_struct.TextElem{Content: content}
+ clientMsgID := utils.GetMsgID(b.userID)
+ msg := &sdkws.MsgData{
+ SendID: b.userID,
+ GroupID: groupID,
+ RecvID: userID,
+ SessionType: sesstionType,
+ ContentType: constant.Text,
+ SenderNickname: b.userID,
+ Content: []byte(utils.StructToJsonString(text)),
+ CreateTime: time.Now().UnixMilli(),
+ SenderPlatformID: constant.AdminPlatformID,
+ ClientMsgID: clientMsgID,
+ }
+ now := time.Now().UnixMilli()
+ if err := b.longConnMgr.SendReqWaitResp(ctx, msg, constant.SendMsg, &resp); err != nil {
+ b.failedMessageMap[clientMsgID] = err
+
+ return err
+ }
+ if resp.SendTime-now > 1500 {
+ log.ZWarn(ctx, "msg recv resp is too slow", nil, "sendTime", resp.SendTime, "now", now)
+ }
+ return nil
+}
+
+func (b *SendMsgUser) recvPushMsg(ctx context.Context) {
+ for {
+ select {
+ case cmd := <-b.pushMsgAndMaxSeqCh:
+ switch cmd.Cmd {
+ case constant.CmdPushMsg:
+ pushMsgs := cmd.Value.(*sdkws.PushMessages)
+ for _, push := range pushMsgs.Msgs {
+ for _, msg := range push.Msgs {
+ if b.recvPushMsgCallback == nil {
+ b.defaultRecvPushMsgCallback(msg)
+ } else {
+ b.recvPushMsgCallback(msg)
+ }
+ }
+ }
+ }
+ case <-ctx.Done():
+ return
+ }
+ }
+}
+
+func (b *SendMsgUser) defaultRecvPushMsgCallback(msg *sdkws.MsgData) {
+}
+
+type ConnListner struct {
+}
+
+func (c *ConnListner) OnConnecting() {}
+func (c *ConnListner) OnConnectSuccess() {}
+func (c *ConnListner) OnConnectFailed(errCode int32, errMsg string) {
+ // log.ZError(context.Background(), "connect failed", nil, "errCode", errCode, "errMsg", errMsg)
+}
+func (c *ConnListner) OnKickedOffline() {}
+func (c *ConnListner) OnUserTokenExpired() {}
diff --git a/go/chao-sdk-core/msgtest/module/user_manager.go b/go/chao-sdk-core/msgtest/module/user_manager.go
new file mode 100644
index 0000000..da98bf4
--- /dev/null
+++ b/go/chao-sdk-core/msgtest/module/user_manager.go
@@ -0,0 +1,43 @@
+package module
+
+import (
+ "fmt"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "time"
+
+ "github.com/openimsdk/protocol/sdkws"
+ userPB "github.com/openimsdk/protocol/user"
+)
+
+type TestUserManager struct {
+ *MetaManager
+}
+
+func (t *TestUserManager) GenUserIDs(num int) (userIDs []string) {
+ for i := 0; i < num; i++ {
+ userIDs = append(userIDs, fmt.Sprintf("testv3new_%d_%d", time.Now().UnixNano(), i))
+ }
+ return userIDs
+}
+
+func (t *TestUserManager) GenUserIDsWithPrefix(num int, prefix string) (userIDs []string) {
+ for i := 0; i < num; i++ {
+ userIDs = append(userIDs, fmt.Sprintf("%s_testv3new_%d_%d", prefix, time.Now().UnixNano(), i))
+ }
+ return userIDs
+}
+
+func (t *TestUserManager) RegisterUsers(userIDs ...string) error {
+ var users []*sdkws.UserInfo
+ for _, userID := range userIDs {
+ users = append(users, &sdkws.UserInfo{UserID: userID, Nickname: userID})
+ }
+ return t.postWithCtx(constant.UserRegister, &userPB.UserRegisterReq{
+ Secret: t.secret,
+ Users: users,
+ }, nil)
+}
+
+func (t *TestUserManager) GetToken(userID string, platformID int32) (string, error) {
+ return t.getToken(userID, platformID)
+}
diff --git a/go/chao-sdk-core/msgtest/pressure_test.go b/go/chao-sdk-core/msgtest/pressure_test.go
new file mode 100644
index 0000000..d0cf5af
--- /dev/null
+++ b/go/chao-sdk-core/msgtest/pressure_test.go
@@ -0,0 +1,301 @@
+package msgtest
+
+import (
+ "context"
+ "flag"
+ "fmt"
+ "sync"
+ "testing"
+ "time"
+
+ "github.com/openimsdk/openim-sdk-core/v3/msgtest/module"
+ "github.com/openimsdk/openim-sdk-core/v3/sdk_struct"
+
+ "github.com/openimsdk/tools/log"
+)
+
+const (
+ TenThousandGroupUserNum = 10000
+ ThousandGroupUserNum = 1000
+ HundredGroupUserNum = 100
+ FiftyGroupUserNum = 50
+
+ TenThousandGroupNum = 2
+ ThousandGroupNum = 5
+ HundredGroupNum = 50
+ FiftyGroupNum = 100
+
+ FastenedUserPrefix = "fastened_user_prefix"
+ RecvMsgPrefix = "recv_msg_prefix"
+)
+
+var (
+ totalOnlineUserNum int // æģå¨įēŋ፿ˇæ°
+ friendMsgSenderNum int // åĨŊåæļæ¯åéč
æ°
+ NotFriendMsgSenderNum int // éåĨŊåæļæ¯åéč
æ°
+ groupMsgSenderNum int // įž¤æļæ¯åéč
æ°
+ msgSenderNumEvreyUser int // æ¯ä¸Ē፿ˇįæļæ¯æ°
+ fastenedUserNum int // åēåŽį¨æˇæ°
+
+ recvMsgUserNum int // æļæ¯æĨæļč
æ°, æŊæ ˇč´Ļåˇ
+
+)
+
+func InitWithFlag() {
+ flag.IntVar(&totalOnlineUserNum, "t", 100000, "total online user num")
+ flag.IntVar(&friendMsgSenderNum, "f", 100, "friend msg sender num")
+ flag.IntVar(&NotFriendMsgSenderNum, "n", 100, "not friend msg sender num")
+ flag.IntVar(&groupMsgSenderNum, "g", 100, "group msg sender num")
+ flag.IntVar(&msgSenderNumEvreyUser, "m", 100, "msg sender num evrey user")
+
+ flag.IntVar(&recvMsgUserNum, "r", 20, "recv msg user num")
+ flag.IntVar(&fastenedUserNum, "u", 300, "fastened user num")
+}
+
+func init() {
+
+ InitWithFlag()
+
+ if err := log.InitFromConfig("sdk.log", "sdk", 4,
+ true, false, "./chat_log", 2, 24, "v1.0.0"); err != nil {
+ panic(err)
+ }
+}
+
+func Test_PressureFull(t *testing.T) {
+ flag.Parse()
+ if friendMsgSenderNum+NotFriendMsgSenderNum+groupMsgSenderNum > totalOnlineUserNum {
+ t.Fatal("sender num > total online user num")
+ }
+
+ p := NewPressureTester()
+ // gen userIDs
+ userIDs, fastenedUserIDs, recvMsgUserIDs := p.genUserIDs()
+
+ // register
+ if err := p.registerUsers(userIDs, fastenedUserIDs, recvMsgUserIDs); err != nil {
+ t.Fatalf("register users failed, err: %v", err)
+ }
+ // init users
+ p.initUserConns(userIDs, fastenedUserIDs)
+
+ // create groups
+ err := p.createTestGroups(userIDs, fastenedUserIDs, recvMsgUserIDs)
+ if err != nil {
+ t.Fatal(err)
+ }
+
+ // import friends
+ if err := p.importFriends(p.friendSenderUserIDs, fastenedUserIDs); err != nil {
+ t.Fatal(err)
+ }
+
+ p.pressureSendMsg()
+ // send msg test
+}
+
+func Test_InitUserConn(t *testing.T) {
+ flag.Parse()
+ p := NewPressureTester()
+ userNum := 10
+ // gen userIDs
+ userIDs := p.userManager.GenUserIDs(userNum)
+ // register
+ if err := p.registerUsers(userIDs, nil, nil); err != nil {
+ t.Fatalf("register users failed, err: %v", err)
+ }
+ // init users
+ p.initUserConns(userIDs, nil)
+}
+
+type PressureTester struct {
+ friendManager *module.TestFriendManager
+ userManager *module.TestUserManager
+ groupManager *module.TestGroupManager
+ msgSender map[string]*module.SendMsgUser
+ groupMsgSender map[string]*module.SendMsgUser
+
+ groupSenderUserIDs, friendSenderUserIDs, notfriendSenderUserIDs []string
+ recvMsgUserIDs []string
+
+ tenThousandGroupIDs, thousandGroupIDs, hundredGroupUserIDs, fiftyGroupUserIDs []string
+}
+
+func NewPressureTester() *PressureTester {
+ metaManager := module.NewMetaManager(APIADDR, SECRET, MANAGERUSERID)
+ return &PressureTester{friendManager: metaManager.NewFriendManager(), userManager: metaManager.NewUserManager(), groupManager: metaManager.NewGroupMananger(),
+ msgSender: make(map[string]*module.SendMsgUser), groupMsgSender: make(map[string]*module.SendMsgUser)}
+}
+
+func (p *PressureTester) genUserIDs() (userIDs, fastenedUserIDs, recvMsgUserIDs []string) {
+ userIDs = p.userManager.GenUserIDs(totalOnlineUserNum - fastenedUserNum) // å¨įēŋ፿ˇ
+ fastenedUserIDs = p.userManager.GenUserIDsWithPrefix(fastenedUserNum, FastenedUserPrefix) // æåŽ300፿ˇ
+ recvMsgUserIDs = p.userManager.GenUserIDsWithPrefix(recvMsgUserNum, RecvMsgPrefix) // æŊæ ˇį¨æˇåŽæ´SDK
+ return
+}
+
+func (p *PressureTester) registerUsers(userIDs []string, fastenedUserIDs []string, recvMsgUserIDs []string) error {
+ for i := 0; i < len(userIDs); i += 1000 {
+ end := i + 1000
+ if end > len(userIDs) {
+ end = len(userIDs)
+ }
+ userIDsSlice := userIDs[i:end]
+ if err := p.userManager.RegisterUsers(userIDsSlice...); err != nil {
+ return err
+ }
+ if len(userIDsSlice) < 1000 {
+ break
+ }
+ }
+ if len(fastenedUserIDs) != 0 {
+ if err := p.userManager.RegisterUsers(fastenedUserIDs...); err != nil {
+ return err
+ }
+ }
+ if len(recvMsgUserIDs) != 0 {
+ if err := p.userManager.RegisterUsers(recvMsgUserIDs...); err != nil {
+ return err
+ }
+ }
+ return nil
+}
+
+func (p *PressureTester) initUserConns(userIDs []string, fastenedUserIDs []string) {
+ for i, userID := range userIDs {
+ token, err := p.userManager.GetToken(userID, int32(PLATFORMID))
+ if err != nil {
+ log.ZError(context.Background(), "get token failed", err, "userID", userID, "platformID", PLATFORMID)
+ continue
+ }
+ user := module.NewUser(userID, token, sdk_struct.IMConfig{WsAddr: WSADDR, ApiAddr: APIADDR, PlatformID: int32(PLATFORMID)})
+ if 0 <= i && i < friendMsgSenderNum {
+ p.msgSender[userID] = user
+ p.friendSenderUserIDs = append(p.friendSenderUserIDs, userID)
+ } else if friendMsgSenderNum <= i && i < friendMsgSenderNum+NotFriendMsgSenderNum {
+ p.msgSender[userID] = user
+ p.notfriendSenderUserIDs = append(p.notfriendSenderUserIDs, userID)
+ }
+ }
+ if len(fastenedUserIDs) != 0 {
+ for _, userID := range fastenedUserIDs {
+ token, err := p.userManager.GetToken(userID, int32(PLATFORMID))
+ if err != nil {
+ log.ZError(context.Background(), "get token failed", err, "userID", userID, "platformID", PLATFORMID)
+ continue
+ }
+ user := module.NewUser(userID, token, sdk_struct.IMConfig{WsAddr: WSADDR, ApiAddr: APIADDR, PlatformID: int32(PLATFORMID)})
+ p.msgSender[userID] = user
+ p.groupSenderUserIDs = append(p.groupSenderUserIDs, userID)
+ }
+ }
+}
+
+func (p *PressureTester) createTestGroups(userIDs, fastenedUserIDs, recvMsgUserIDs []string) (err error) {
+ // create ten thousand group
+ for i := 1; i <= TenThousandGroupNum; i++ {
+ groupID := p.groupManager.GenGroupID(fmt.Sprintf("tenThousandGroup_%d", i))
+ err = p.groupManager.CreateGroup(groupID, "tenThousandGroup", userIDs[0], append(userIDs[(i-1)*TenThousandGroupUserNum:i*TenThousandGroupUserNum-1], fastenedUserIDs...))
+ if err != nil {
+ return
+ }
+ p.tenThousandGroupIDs = append(p.tenThousandGroupIDs, groupID)
+ }
+ // create two thousand group
+ exclude := TenThousandGroupNum * TenThousandGroupUserNum
+ for i := 1; i <= ThousandGroupNum; i++ {
+ groupID := p.groupManager.GenGroupID(fmt.Sprintf("thousandGroup_%d", i))
+ err = p.groupManager.CreateGroup(groupID, "thousandGroup", userIDs[0], append(userIDs[exclude+(i-1)*ThousandGroupUserNum:exclude+i*ThousandGroupUserNum-1], fastenedUserIDs...))
+ if err != nil {
+ return
+ }
+ p.thousandGroupIDs = append(p.thousandGroupIDs, groupID)
+ }
+ // create five hundred group
+ exclude += exclude + ThousandGroupNum*ThousandGroupUserNum
+ for i := 1; i <= HundredGroupNum; i++ {
+ groupID := p.groupManager.GenGroupID(fmt.Sprintf("hundredGroup_%d", i))
+ err = p.groupManager.CreateGroup(groupID, "hundredGroup", userIDs[0], append(fastenedUserIDs[0:80], recvMsgUserIDs...))
+ if err != nil {
+ return
+ }
+ p.hundredGroupUserIDs = append(p.hundredGroupUserIDs, groupID)
+ }
+ // create fifty group
+ exclude += exclude + HundredGroupNum*HundredGroupUserNum
+ for i := 1; i <= FiftyGroupNum; i++ {
+ groupID := p.groupManager.GenGroupID(fmt.Sprintf("fiftyGroup_%d", i))
+ err = p.groupManager.CreateGroup(groupID, "fiftyGroup", userIDs[0], append(fastenedUserIDs[0:30], recvMsgUserIDs...))
+ if err != nil {
+ return
+ }
+ p.fiftyGroupUserIDs = append(p.fiftyGroupUserIDs, groupID)
+ }
+ return
+}
+
+func (p *PressureTester) sendMsgs2Users(senderIDs, recvIDs []string, num int, duration time.Duration) {
+ var wg sync.WaitGroup
+ for _, senderID := range senderIDs {
+ for _, recvID := range recvIDs {
+ wg.Add(1)
+ go func(senderID, recvID string) {
+ defer wg.Done()
+ for i := 0; i < num; i++ {
+ if user, ok := p.msgSender[senderID]; ok {
+ user.SendMsgWithContext(recvID, i)
+ }
+ time.Sleep(duration)
+ }
+ }(senderID, recvID)
+ }
+ }
+ wg.Wait()
+}
+
+func (p *PressureTester) sendMsgs2Groups(senderIDs, groupIDs []string, num int, duration time.Duration) {
+ var wg sync.WaitGroup
+ for _, senderID := range senderIDs {
+ for _, groupID := range groupIDs {
+ wg.Add(1)
+ go func(senderID, groupID string) {
+ defer wg.Done()
+ for i := 0; i < num; i++ {
+ if user, ok := p.groupMsgSender[senderID]; ok {
+ user.SendGroupMsgWithContext(groupID, i)
+ }
+ time.Sleep(duration)
+ }
+ }(senderID, groupID)
+ }
+ }
+ wg.Wait()
+}
+
+func (p *PressureTester) pressureSendMsg() {
+ var wg sync.WaitGroup
+ wg.Add(3)
+ go func() {
+ defer wg.Done()
+ p.sendMsgs2Users(p.friendSenderUserIDs, p.recvMsgUserIDs, msgSenderNumEvreyUser, time.Second)
+ }()
+ go func() {
+ defer wg.Done()
+ p.sendMsgs2Users(p.notfriendSenderUserIDs, p.recvMsgUserIDs, msgSenderNumEvreyUser, time.Second)
+ }()
+ go func() {
+ defer wg.Done()
+ totalGroupIDs := append(append(p.tenThousandGroupIDs, p.thousandGroupIDs...), append(p.hundredGroupUserIDs, p.fiftyGroupUserIDs...)...)
+ p.sendMsgs2Groups(p.groupSenderUserIDs, totalGroupIDs, msgSenderNumEvreyUser, time.Second)
+ }()
+ wg.Wait()
+}
+
+func (p *PressureTester) importFriends(friendSenderUserIDs, recvMsgUserIDs []string) error {
+ for _, recvMsgUserID := range recvMsgUserIDs {
+ if err := p.friendManager.ImportFriends(recvMsgUserID, friendSenderUserIDs); err != nil {
+ return err
+ }
+ }
+ return nil
+}
diff --git a/go/chao-sdk-core/msgtest/sdk_user_simulator/listener.go b/go/chao-sdk-core/msgtest/sdk_user_simulator/listener.go
new file mode 100644
index 0000000..7f652ed
--- /dev/null
+++ b/go/chao-sdk-core/msgtest/sdk_user_simulator/listener.go
@@ -0,0 +1,252 @@
+package sdk_user_simulator
+
+import (
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/sdk_struct"
+)
+
+type conversationCallBack struct {
+}
+
+func (c *conversationCallBack) OnSyncServerFailed() {
+}
+
+func (c *conversationCallBack) OnNewConversation(conversationList string) {
+}
+
+func (c *conversationCallBack) OnConversationChanged(conversationList string) {
+}
+
+func (c *conversationCallBack) OnTotalUnreadMessageCountChanged(totalUnreadCount int32) {
+}
+
+func (c *conversationCallBack) OnRecvMessageExtensionsChanged(msgID string, reactionExtensionList string) {
+}
+
+func (c *conversationCallBack) OnRecvMessageExtensionsDeleted(msgID string, reactionExtensionKeyList string) {
+}
+
+func (c *conversationCallBack) OnSyncServerProgress(progress int) {
+}
+
+func (c *conversationCallBack) OnSyncServerStart() {
+
+}
+
+func (c *conversationCallBack) OnSyncServerFinish() {
+
+}
+
+func (c *conversationCallBack) OnConversationUserInputStatusChanged(change string) {
+
+}
+
+type userCallback struct {
+}
+
+func (c userCallback) OnUserStatusChanged(statusMap string) {
+
+}
+
+func (userCallback) OnSelfInfoUpdated(callbackData string) {
+
+}
+func (userCallback) OnUserCommandAdd(callbackData string) {
+
+}
+func (userCallback) OnUserCommandUpdate(callbackData string) {
+
+}
+func (userCallback) OnUserCommandDelete(callbackData string) {
+
+}
+
+type SingleMessage struct {
+ SendID string
+ ClientMsgID string
+ Delay int64
+}
+type MsgListenerCallBak struct {
+ userID string
+ GroupDelay map[string][]*SingleMessage
+ SingleDelay map[string][]*SingleMessage
+}
+
+func NewMsgListenerCallBak(userID string) *MsgListenerCallBak {
+ return &MsgListenerCallBak{userID: userID,
+ GroupDelay: make(map[string][]*SingleMessage),
+ SingleDelay: make(map[string][]*SingleMessage)}
+}
+
+func (m *MsgListenerCallBak) OnRecvNewMessage(message string) {
+ var sm sdk_struct.MsgStruct
+ utils.JsonStringToStruct(message, &sm)
+ switch sm.SessionType {
+ case constant.SingleChatType:
+ m.SingleDelay[sm.SendID] =
+ append(m.SingleDelay[sm.SendID], &SingleMessage{SendID: sm.SendID, ClientMsgID: sm.ClientMsgID, Delay: GetRelativeServerTime() - sm.SendTime})
+ case constant.SuperGroupChatType:
+ m.GroupDelay[sm.GroupID] =
+ append(m.GroupDelay[sm.GroupID], &SingleMessage{SendID: sm.SendID, ClientMsgID: sm.ClientMsgID, Delay: GetRelativeServerTime() - sm.SendTime})
+ default:
+ }
+
+}
+
+func (m *MsgListenerCallBak) OnRecvC2CReadReceipt(msgReceiptList string) {
+}
+
+func (m *MsgListenerCallBak) OnMsgDeleted(s string) {}
+
+func (m *MsgListenerCallBak) OnRecvOfflineNewMessage(message string) {
+}
+
+func (m *MsgListenerCallBak) OnRecvMessageExtensionsAdded(msgID string, reactionExtensionList string) {
+
+}
+
+func (m *MsgListenerCallBak) OnRecvGroupReadReceipt(groupMsgReceiptList string) {
+}
+func (m *MsgListenerCallBak) OnNewRecvMessageRevoked(messageRevoked string) {
+}
+
+func (m *MsgListenerCallBak) OnRecvMessageExtensionsChanged(msgID string, reactionExtensionList string) {
+
+}
+func (m *MsgListenerCallBak) OnRecvMessageExtensionsDeleted(msgID string, reactionExtensionKeyList string) {
+}
+
+func (m *MsgListenerCallBak) OnRecvOnlineOnlyMessage(message string) {
+
+}
+
+type testFriendListener struct {
+}
+
+func (testFriendListener) OnFriendApplicationAdded(callbackInfo string) {
+
+}
+func (testFriendListener) OnFriendApplicationDeleted(callbackInfo string) {
+
+}
+
+func (testFriendListener) OnFriendApplicationAccepted(callbackInfo string) {
+
+}
+
+func (testFriendListener) OnFriendApplicationRejected(callbackInfo string) {
+
+}
+
+func (testFriendListener) OnFriendAdded(callbackInfo string) {
+}
+
+func (testFriendListener) OnFriendDeleted(callbackInfo string) {
+
+}
+
+func (testFriendListener) OnBlackAdded(callbackInfo string) {
+
+}
+func (testFriendListener) OnBlackDeleted(callbackInfo string) {
+
+}
+
+func (testFriendListener) OnFriendInfoChanged(callbackInfo string) {
+
+}
+
+func (testFriendListener) OnSuccess() {
+
+}
+
+func (testFriendListener) OnError(code int32, msg string) {
+
+}
+
+type testGroupListener struct {
+}
+
+func (testGroupListener) OnJoinedGroupAdded(callbackInfo string) {
+
+}
+func (testGroupListener) OnJoinedGroupDeleted(callbackInfo string) {
+
+}
+
+func (testGroupListener) OnGroupMemberAdded(callbackInfo string) {
+
+}
+func (testGroupListener) OnGroupMemberDeleted(callbackInfo string) {
+
+}
+
+func (testGroupListener) OnGroupApplicationAdded(callbackInfo string) {
+
+}
+func (testGroupListener) OnGroupApplicationDeleted(callbackInfo string) {
+
+}
+
+func (testGroupListener) OnGroupInfoChanged(callbackInfo string) {
+
+}
+func (testGroupListener) OnGroupMemberInfoChanged(callbackInfo string) {
+
+}
+
+func (testGroupListener) OnGroupApplicationAccepted(callbackInfo string) {
+
+}
+func (testGroupListener) OnGroupApplicationRejected(callbackInfo string) {
+
+}
+
+func (testGroupListener) OnGroupDismissed(callbackInfo string) {
+
+}
+
+type testConnListener struct {
+}
+
+func (t *testConnListener) OnUserTokenInvalid(errMsg string) {}
+
+func (t *testConnListener) OnUserTokenExpired() {
+
+}
+func (t *testConnListener) OnConnecting() {
+
+}
+
+func (t *testConnListener) OnConnectSuccess() {
+
+}
+
+func (t *testConnListener) OnConnectFailed(ErrCode int32, ErrMsg string) {
+
+}
+
+func (t *testConnListener) OnKickedOffline() {
+
+}
+
+func (t *testConnListener) OnSelfInfoUpdated(info string) {
+
+}
+func (t *testConnListener) OnUserCommandAdd(info string) {
+
+}
+func (t *testConnListener) OnUserCommandUpdate(info string) {
+
+}
+func (t *testConnListener) OnUserCommandDelete(info string) {
+
+}
+func (t *testConnListener) OnSuccess() {
+
+}
+
+func (t *testConnListener) OnError(code int32, msg string) {
+
+}
diff --git a/go/chao-sdk-core/msgtest/sdk_user_simulator/user.go b/go/chao-sdk-core/msgtest/sdk_user_simulator/user.go
new file mode 100644
index 0000000..a92a1cc
--- /dev/null
+++ b/go/chao-sdk-core/msgtest/sdk_user_simulator/user.go
@@ -0,0 +1,121 @@
+package sdk_user_simulator
+
+import (
+ "context"
+ "fmt"
+ "github.com/openimsdk/openim-sdk-core/v3/open_im_sdk"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/ccontext"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/sdk_struct"
+ "github.com/openimsdk/tools/log"
+ "go.etcd.io/etcd/api/v3/version"
+)
+
+var (
+ UserMessageMap = make(map[string]*MsgListenerCallBak)
+ timeOffset int64
+)
+
+var (
+ TESTIP = "125.124.195.201"
+ APIADDR = fmt.Sprintf("http://%v:10002", TESTIP)
+ WSADDR = fmt.Sprintf("ws://%v:10001", TESTIP)
+ SECRET = "openIM123"
+ PLATFORMID = constant.WindowsPlatformID
+ LogLevel = uint32(5)
+)
+
+func SetServerTimeOffset(offset int64) {
+ timeOffset = offset
+}
+func GetRelativeServerTime() int64 {
+ return utils.GetCurrentTimestampByMill() + timeOffset
+}
+
+func InitSDKAndLogin(userID, token string) error {
+ userForSDK := open_im_sdk.NewLoginMgr()
+ var cf sdk_struct.IMConfig
+ cf.ApiAddr = APIADDR
+ cf.PlatformID = int32(PLATFORMID)
+ cf.WsAddr = WSADDR
+ cf.DataDir = "./"
+ cf.LogLevel = LogLevel
+ cf.IsExternalExtensions = true
+ cf.IsLogStandardOutput = true
+ cf.LogFilePath = ""
+ var testConnListener testConnListener
+ userForSDK.InitSDK(cf, &testConnListener)
+ if err := log.InitFromConfig(userID+"_open-im-sdk-core", "", int(LogLevel), true, false, cf.DataDir, 0, 24, version.Version); err != nil {
+ return err
+ }
+ ctx := ccontext.WithOperationID(userForSDK.BaseCtx(), utils.OperationIDGenerator())
+ SetListener(userForSDK, userID)
+ err := userForSDK.Login(ctx, userID, token)
+ if err != nil {
+ return err
+ }
+
+ return nil
+}
+
+func SetListener(userForSDK *open_im_sdk.LoginMgr, userID string) {
+ var testConversation conversationCallBack
+ userForSDK.SetConversationListener(&testConversation)
+
+ var testUser userCallback
+ userForSDK.SetUserListener(testUser)
+
+ msgCallBack := NewMsgListenerCallBak(userID)
+ UserMessageMap[userID] = msgCallBack
+ userForSDK.SetAdvancedMsgListener(msgCallBack)
+
+ var friendListener testFriendListener
+ userForSDK.SetFriendListener(friendListener)
+
+ var groupListener testGroupListener
+ userForSDK.SetGroupListener(groupListener)
+}
+func CheckMessageDelay(singleMessageCount map[string]int, groupMessageCount map[string]int) {
+ ctx := context.Background()
+ log.ZDebug(ctx, "chat checking....")
+ var sAllDelay, gAllDelay int64
+ var sAllPercent, gAllPercent float64
+ for userID, bak := range UserMessageMap {
+ delay, percent := calculate(singleMessageCount, bak.SingleDelay)
+ sAllDelay += delay
+ sAllPercent += percent
+ log.ZDebug(ctx, fmt.Sprintf("single chat %v delay %v ms,success rate %v/100", userID, delay,
+ percent))
+ gDelay, gPercent := calculate(groupMessageCount, bak.GroupDelay)
+ gAllDelay += gDelay
+ gAllPercent += gPercent
+ log.ZDebug(ctx, fmt.Sprintf("group chat %v delay %v ms,success rate %v/100", userID, gDelay, gPercent))
+ }
+ log.ZDebug(ctx, fmt.Sprintf("single chat all delay %v ms,success rate %v/100", sAllDelay/int64(len(UserMessageMap)), sAllPercent/float64(len(UserMessageMap))))
+ log.ZDebug(ctx, fmt.Sprintf("group chat all delay %v ms,success rate %v/100", gAllDelay/int64(len(UserMessageMap)), gAllPercent/float64(len(UserMessageMap))))
+ log.ZDebug(ctx, fmt.Sprintf("all chat all delay %v ms,success rate %v/100", (sAllDelay+gAllDelay)/2, (sAllPercent+gAllPercent)/float64(2)))
+
+ log.ZDebug(ctx, "chat checking end....")
+
+}
+
+func calculate(singleMessageCount map[string]int, data map[string][]*SingleMessage) (delay int64, percent float64) {
+ var allDelay int64
+ var SuccessRate float64
+ var successCount int
+ for sendIDOrGroupID, messages := range data {
+ if count, ok := singleMessageCount[sendIDOrGroupID]; ok {
+ SuccessRate += float64(len(messages)) / float64(count)
+ successCount++
+ }
+ var singleUserOrGroupDelay int64
+ for _, message := range messages {
+ singleUserOrGroupDelay += message.Delay
+ }
+ allDelay += singleUserOrGroupDelay / int64(len(messages))
+
+ }
+ return allDelay / int64(len(data)), SuccessRate / float64(successCount) * 100
+
+}
diff --git a/go/chao-sdk-core/open-im-sdk-core.2024-06-24 b/go/chao-sdk-core/open-im-sdk-core.2024-06-24
new file mode 100644
index 0000000..f7d9295
--- /dev/null
+++ b/go/chao-sdk-core/open-im-sdk-core.2024-06-24
@@ -0,0 +1,9334 @@
+2024-06-24 10:56:55.548 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [open_im_sdk/init_login.go:73] InitSDK info {"operationID": "1719197818961740317", "config": {"systemType":"","platformID":3,"apiAddr":"http://14.29.168.56:10002","wsAddr":"ws://14.29.168.56:10001","dataDir":"./","logLevel":5,"isLogStandardOutput":true,"logFilePath":"./","isExternalExtensions":true}, "sdkVersion": "openim-sdk-core-v3.0.0"}
+2024-06-24 10:56:55.551 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [open_im_sdk/caller.go:115] func call req {"operationID": "1719197817604066041", "function name": "github.com/openimsdk/openim-sdk-core/v3/open_im_sdk.(*LoginMgr).Login-fm", "args": ["1695766238","eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJVc2VySUQiOiIxNjk1NzY2MjM4IiwiUGxhdGZvcm1JRCI6MywiZXhwIjoxNzI2OTczODE1LCJuYmYiOjE3MTkxOTc1MTUsImlhdCI6MTcxOTE5NzgxNX0.1zYsMH-2RcMSnpo-1vUnJgpq5T-jTtzz8R8tmIFt1aA"]}
+2024-06-24 10:56:55.552 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [open_im_sdk/userRelated.go:331] login start... {"operationID": "1719197817604066041", "userID": "1695766238", "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJVc2VySUQiOiIxNjk1NzY2MjM4IiwiUGxhdGZvcm1JRCI6MywiZXhwIjoxNzI2OTczODE1LCJuYmYiOjE3MTkxOTc1MTUsImlhdCI6MTcxOTE5NzgxNX0.1zYsMH-2RcMSnpo-1vUnJgpq5T-jTtzz8R8tmIFt1aA"}
+2024-06-24 10:56:55.552 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [db/db_init.go:109] sqlite {"operationID": "1719197817604066041", "path": "D:\\Goland\\fg\\chao-sdk-core\\OpenIM_v3_1695766238.db"}
+2024-06-24 10:56:55.554 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [db/db_init.go:121] open db success {"operationID": "1719197817604066041", "dbError": "json: unsupported type: func() time.Time", "dbFileName": "D:\\Goland\\fg\\chao-sdk-core\\OpenIM_v3_1695766238.db"}
+2024-06-24 10:56:55.791 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [open_im_sdk/userRelated.go:341] NewDataBase ok {"operationID": "1719197817604066041", "userID": "1695766238", "dataDir": "./", "login cost time": 0.2391267}
+2024-06-24 10:56:55.791 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [open_im_sdk/userRelated.go:350] forcedSynchronization success... {"operationID": "1719197817604066041", "login cost time: ": 0.2391267}
+2024-06-24 10:56:55.792 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:97] loadSeq {"operationID": "1719197817604066041", "syncedMaxSeqs": {}}
+2024-06-24 10:56:55.792 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [open_im_sdk/userRelated.go:358] login success... {"operationID": "1719197817604066041", "login cost time: ": 0.240183}
+2024-06-24 10:56:55.792 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:171] readPump start {"operationID": "1719197817604066041", "goroutine ID:": 56}
+2024-06-24 10:56:55.792 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:279] heartbeat start {"operationID": "1719197817604066041", "goroutine ID:": 58}
+2024-06-24 10:56:55.792 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:231] writePump start {"operationID": "1719197817604066041", "goroutine ID:": 57}
+2024-06-24 10:56:55.792 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [open_im_sdk/caller.go:107] fn call success {"operationID": "1719197817604066041", "function name": "github.com/openimsdk/openim-sdk-core/v3/open_im_sdk.(*LoginMgr).Login-fm", "resp": "", "cost time": "241 ms"}
+2024-06-24 10:56:55.793 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:499] conn start {"operationID": "1719197818936788886"}
+2024-06-24 10:56:55.794 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/login.go:47] login success {"operationID": "1719197813759468572", "data": "\"\"", "time since": 0.2435352}
+2024-06-24 10:56:55.794 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_friend_sdk.go:698] OnConnecting {"operationID": "1719197813759468572"}
+2024-06-24 10:56:55.812 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_friend_sdk.go:702] OnConnectSuccess {"operationID": "1719197813759468572"}
+2024-06-24 10:56:55.813 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:546] long conn establish success {"operationID": "1719197818936788886", "localAddr": "127.0.0.1:56366", "connNum": 1}
+2024-06-24 10:56:55.814 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:128] recv long conn mgr connected {"operationID": "1719197818936788886", "cmd": "connSuccess", "value": null}
+2024-06-24 10:56:55.814 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:146] send message to send channel success {"operationID": "1719197817604066041", "msg": "userID:\"1695766238\"", "reqIdentifier": 1001}
+2024-06-24 10:56:55.814 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_notification.go:36] NotificationCmd start {"operationID": "1719197817604066041", "cmd": "003", "value": {"Msgs":null,"SyncFlag":1001}}
+2024-06-24 10:56:55.814 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:253] writePump recv message {"operationID": "1719197818936788886", "reqIdentifier": 1001, "operationID": "1719197817604066041", "sendID": "1695766238"}
+2024-06-24 10:56:55.816 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/sync.go:67] start SyncConversationHashReadSeqs {"operationID": "1719197817604066041"}
+2024-06-24 10:56:55.817 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/msg/get_conversations_has_read_and_max_seq", "body": "{\"userID\":\"1695766238\",\"conversationIDs\":null}"}
+2024-06-24 10:56:57.199 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:437] recv msg {"operationID": "1719197817604066041", "errCode": 0, "errMsg": "", "reqIdentifier": 1001}
+2024-06-24 10:56:57.200 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:227] get max seq success {"operationID": "1719197817604066041", "resp": {"maxSeqs":{"n_1695766238_7122229636":1,"sg_105081877":2,"sg_1177987017":2,"sg_1254300734":1,"sg_161019322":3,"sg_2300748497":2,"sg_2836218947":2,"sg_3187706596":3,"sg_3896488295":1,"sg_3926645279":18,"sg_3927081813":1,"sg_84614448":2,"si_1695766238_5967938442":1,"si_1695766238_7122229636":1}}}
+2024-06-24 10:56:57.211 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:240] current sync seqMap {"operationID": "1719197817604066041", "seqMap": {"sg_105081877":[0,2],"sg_1177987017":[0,2],"sg_1254300734":[0,1],"sg_161019322":[0,3],"sg_2300748497":[0,2],"sg_2836218947":[0,2],"sg_3187706596":[0,3],"sg_3896488295":[0,1],"sg_3926645279":[0,18],"sg_3927081813":[0,1],"sg_84614448":[0,2],"si_1695766238_5967938442":[0,1],"si_1695766238_7122229636":[0,1]}}
+2024-06-24 10:56:57.219 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:327] pullMsgBySeqRange {"operationID": "1719197817604066041", "seqMap": {"sg_105081877":[0,2],"sg_1177987017":[0,2],"sg_1254300734":[0,1],"sg_161019322":[0,3],"sg_2300748497":[0,2],"sg_2836218947":[0,2],"sg_3187706596":[0,3],"sg_3896488295":[0,1],"sg_3926645279":[0,18],"sg_3927081813":[0,1],"sg_84614448":[0,2],"si_1695766238_5967938442":[0,1],"si_1695766238_7122229636":[0,1]}, "syncMsgNum": 1}
+2024-06-24 10:56:57.222 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:253] writePump recv message {"operationID": "1719197818936788886", "reqIdentifier": 1002, "operationID": "1719197817604066041", "sendID": "1695766238"}
+2024-06-24 10:56:57.222 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:146] send message to send channel success {"operationID": "1719197817604066041", "msg": "userID:\"1695766238\" seqRanges:{conversationID:\"sg_3896488295\" end:1 num:1} seqRanges:{conversationID:\"sg_1177987017\" end:2 num:1} seqRanges:{conversationID:\"sg_161019322\" end:3 num:1} seqRanges:{conversationID:\"sg_84614448\" end:2 num:1} seqRanges:{conversationID:\"sg_3926645279\" end:18 num:1} seqRanges:{conversationID:\"sg_1254300734\" end:1 num:1} seqRanges:{conversationID:\"sg_105081877\" end:2 num:1} seqRanges:{conversationID:\"sg_3927081813\" end:1 num:1} seqRanges:{conversationID:\"si_1695766238_7122229636\" end:1 num:1} seqRanges:{conversationID:\"sg_2300748497\" end:2 num:1} seqRanges:{conversationID:\"sg_3187706596\" end:3 num:1} seqRanges:{conversationID:\"si_1695766238_5967938442\" end:1 num:1} seqRanges:{conversationID:\"sg_2836218947\" end:2 num:1}", "reqIdentifier": 1002}
+2024-06-24 10:56:57.258 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:437] recv msg {"operationID": "1719197817604066041", "errCode": 0, "errMsg": "", "reqIdentifier": 1002}
+2024-06-24 10:56:57.259 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:371] triggerConversation {"operationID": "1719197817604066041", "msgs": {"sg_105081877":{"Msgs":[{"sendID":"imAdmin","recvID":"105081877","groupID":"105081877","clientMsgID":"edc317755ca9c374d7a42e270abe5bc3","serverMsgID":"db07a9027981f628e056ba6f18774eff","senderPlatformID":0,"senderNickname":"","senderFaceURL":"","sessionType":3,"msgFrom":200,"contentType":1504,"content":"eyJkZXRhaWwiOiJ7XCJncm91cFwiOntcImdyb3VwSURcIjpcIjEwNTA4MTg3N1wiLFwiZ3JvdXBOYW1lXCI6XCJkXCIsXCJub3RpZmljYXRpb25cIjpcIlwiLFwiaW50cm9kdWN0aW9uXCI6XCJcIixcImZhY2VVUkxcIjpcIlwiLFwib3duZXJVc2VySURcIjpcIjUyNDgzODUxOTFcIixcImNyZWF0ZVRpbWVcIjoxNzEwNDkwODI1NDEzLFwibWVtYmVyQ291bnRcIjo1LFwiZXhcIjpcIlwiLFwic3RhdHVzXCI6MCxcImNyZWF0b3JVc2VySURcIjpcIjUyNDgzODUxOTFcIixcImdyb3VwVHlwZVwiOjIsXCJuZWVkVmVyaWZpY2F0aW9uXCI6MCxcImxvb2tNZW1iZXJJbmZvXCI6MCxcImFwcGx5TWVtYmVyRnJpZW5kXCI6MCxcIm5vdGlmaWNhdGlvblVwZGF0ZVRpbWVcIjowLFwibm90aWZpY2F0aW9uVXNlcklEXCI6XCJcIn0sXCJxdWl0VXNlclwiOntcImdyb3VwSURcIjpcIjEwNTA4MTg3N1wiLFwidXNlcklEXCI6XCI1MjkyMTU2NjY1XCIsXCJyb2xlTGV2ZWxcIjoyMCxcImpvaW5UaW1lXCI6MTcxMDQ5MDg0ODUwMyxcIm5pY2tuYW1lXCI6XCJPbGl2ZXJcIixcImZhY2VVUkxcIjpcImh0dHBzOi8vd2ViLnJlbnRzb2Z0LmNuL2FwaV9lbnRlcnByaXNlL29iamVjdC81MjkyMTU2NjY1L3N0b3JhZ2UvZW11bGF0ZWQvMC9BbmRyb2lkL2RhdGEvaW8ub3BlbmltLmFuZHJvaWQuZGVtby9jYWNoZS8xNzA2MjY1MTU1MjQ3LzE3MDYyNjUxNDg4NTgucG5nXCIsXCJhcHBNYW5nZXJMZXZlbFwiOjAsXCJqb2luU291cmNlXCI6MixcIm9wZXJhdG9yVXNlcklEXCI6XCI1MjQ4Mzg1MTkxXCIsXCJleFwiOlwiXCIsXCJtdXRlRW5kVGltZVwiOjAsXCJpbnZpdGVyVXNlcklEXCI6XCI1MjQ4Mzg1MTkxXCJ9LFwib3BlcmF0aW9uVGltZVwiOjAsXCJncm91cE1lbWJlclZlcnNpb25cIjoyLFwiZ3JvdXBNZW1iZXJWZXJzaW9uSURcIjpcIjY2NzJkMzlkZTI3MTY2ZmU3NzgxMTc1M1wifSJ9","seq":2,"sendTime":1718937610490,"createTime":1718937610489,"status":0,"isRead":false,"options":{"offlinePush":false,"unreadCount":false},"offlinePushInfo":{"title":"","desc":"","ex":"","iOSPushSound":"","iOSBadgeCount":false,"signalInfo":""},"atUserIDList":null,"attachedInfo":"","ex":""}],"isEnd":true},"sg_1177987017":{"Msgs":[{"sendID":"imAdmin","recvID":"1177987017","groupID":"1177987017","clientMsgID":"93ce372f1170782d5961e3831c9e7d30","serverMsgID":"c5ee404e47c5b104d38baae24bea8d98","senderPlatformID":0,"senderNickname":"","senderFaceURL":"","sessionType":3,"msgFrom":200,"contentType":1504,"content":"eyJkZXRhaWwiOiJ7XCJncm91cFwiOntcImdyb3VwSURcIjpcIjExNzc5ODcwMTdcIixcImdyb3VwTmFtZVwiOlwiMTIzMTIzXCIsXCJub3RpZmljYXRpb25cIjpcIlwiLFwiaW50cm9kdWN0aW9uXCI6XCJcIixcImZhY2VVUkxcIjpcIlwiLFwib3duZXJVc2VySURcIjpcIjE2OTU3NjYyMzhcIixcImNyZWF0ZVRpbWVcIjoxNzA1MDQ2NDM1MzMxLFwibWVtYmVyQ291bnRcIjoxLFwiZXhcIjpcIlwiLFwic3RhdHVzXCI6MCxcImNyZWF0b3JVc2VySURcIjpcIjE2OTU3NjYyMzhcIixcImdyb3VwVHlwZVwiOjIsXCJuZWVkVmVyaWZpY2F0aW9uXCI6MCxcImxvb2tNZW1iZXJJbmZvXCI6MCxcImFwcGx5TWVtYmVyRnJpZW5kXCI6MCxcIm5vdGlmaWNhdGlvblVwZGF0ZVRpbWVcIjowLFwibm90aWZpY2F0aW9uVXNlcklEXCI6XCJcIn0sXCJxdWl0VXNlclwiOntcImdyb3VwSURcIjpcIjExNzc5ODcwMTdcIixcInVzZXJJRFwiOlwiNDkxMTQxNDk1MVwiLFwicm9sZUxldmVsXCI6MjAsXCJqb2luVGltZVwiOjE3MDUwNDY5ODU5NzEsXCJuaWNrbmFtZVwiOlwiT3BlbmltQW5kLUphbmVcIixcImZhY2VVUkxcIjpcImh0dHBzOi8vd2ViLnJlbnRzb2Z0LmNuL2FwaV9lbnRlcnByaXNlL29iamVjdC80OTExNDE0OTUxL2ltYWdlXzIwMjQtMDUtMDYtMjAtNTkuMTExLnBuZ1wiLFwiYXBwTWFuZ2VyTGV2ZWxcIjowLFwiam9pblNvdXJjZVwiOjIsXCJvcGVyYXRvclVzZXJJRFwiOlwiMTY5NTc2NjIzOFwiLFwiZXhcIjpcIlwiLFwibXV0ZUVuZFRpbWVcIjowLFwiaW52aXRlclVzZXJJRFwiOlwiMTY5NTc2NjIzOFwifSxcIm9wZXJhdGlvblRpbWVcIjowLFwiZ3JvdXBNZW1iZXJWZXJzaW9uXCI6M30ifQ==","seq":2,"sendTime":1718373366842,"createTime":1718373366841,"status":0,"isRead":false,"options":{"offlinePush":false,"unreadCount":false},"offlinePushInfo":{"title":"","desc":"","ex":"","iOSPushSound":"","iOSBadgeCount":false,"signalInfo":""},"atUserIDList":null,"attachedInfo":"","ex":""}],"isEnd":true},"sg_1254300734":{"Msgs":[{"sendID":"imAdmin","recvID":"1254300734","groupID":"1254300734","clientMsgID":"02756e84af58c58d3ad9cd320fed4a65","serverMsgID":"58c48ac004f5769a44a8038c1b2e4f95","senderPlatformID":0,"senderNickname":"","senderFaceURL":"","sessionType":3,"msgFrom":200,"contentType":1504,"content":"eyJkZXRhaWwiOiJ7XCJncm91cFwiOntcImdyb3VwSURcIjpcIjEyNTQzMDA3MzRcIixcImdyb3VwTmFtZVwiOlwiZmpoXCIsXCJub3RpZmljYXRpb25cIjpcIlwiLFwiaW50cm9kdWN0aW9uXCI6XCJcIixcImZhY2VVUkxcIjpcIlwiLFwib3duZXJVc2VySURcIjpcIjQ2ODE1ODIxOTFcIixcImNyZWF0ZVRpbWVcIjoxNzEzNTgyNDQxNjI1LFwibWVtYmVyQ291bnRcIjo5LFwiZXhcIjpcIlwiLFwic3RhdHVzXCI6MCxcImNyZWF0b3JVc2VySURcIjpcIjQ2ODE1ODIxOTFcIixcImdyb3VwVHlwZVwiOjIsXCJuZWVkVmVyaWZpY2F0aW9uXCI6MCxcImxvb2tNZW1iZXJJbmZvXCI6MCxcImFwcGx5TWVtYmVyRnJpZW5kXCI6MCxcIm5vdGlmaWNhdGlvblVwZGF0ZVRpbWVcIjowLFwibm90aWZpY2F0aW9uVXNlcklEXCI6XCJcIn0sXCJxdWl0VXNlclwiOntcImdyb3VwSURcIjpcIjEyNTQzMDA3MzRcIixcInVzZXJJRFwiOlwiMjcyNTQ1MTI0M1wiLFwicm9sZUxldmVsXCI6MjAsXCJqb2luVGltZVwiOjE3MTM1ODI0NDE2MjcsXCJuaWNrbmFtZVwiOlwiT3BlbklNLUFuZHJldzEyM1wiLFwiZmFjZVVSTFwiOlwiXCIsXCJhcHBNYW5nZXJMZXZlbFwiOjAsXCJqb2luU291cmNlXCI6MixcIm9wZXJhdG9yVXNlcklEXCI6XCI0NjgxNTgyMTkxXCIsXCJleFwiOlwiXCIsXCJtdXRlRW5kVGltZVwiOjAsXCJpbnZpdGVyVXNlcklEXCI6XCI0NjgxNTgyMTkxXCJ9LFwib3BlcmF0aW9uVGltZVwiOjAsXCJncm91cE1lbWJlclZlcnNpb25cIjoyLFwiZ3JvdXBNZW1iZXJWZXJzaW9uSURcIjpcIjY2NzJkMzlkZTI3MTY2ZmU3NzgxMTZiNVwifSJ9","seq":1,"sendTime":1718805424661,"createTime":1718805424659,"status":0,"isRead":false,"options":{"offlinePush":false,"unreadCount":false},"offlinePushInfo":{"title":"","desc":"","ex":"","iOSPushSound":"","iOSBadgeCount":false,"signalInfo":""},"atUserIDList":null,"attachedInfo":"","ex":""}],"isEnd":true},"sg_161019322":{"Msgs":[{"sendID":"imAdmin","recvID":"161019322","groupID":"161019322","clientMsgID":"a3a3d6e0aeaf5ad4b2fdbe7707d6a185","serverMsgID":"96d8ed55c12579dd32a7631eeedb0eaa","senderPlatformID":0,"senderNickname":"","senderFaceURL":"","sessionType":3,"msgFrom":200,"contentType":1504,"content":"eyJkZXRhaWwiOiJ7XCJncm91cFwiOntcImdyb3VwSURcIjpcIjE2MTAxOTMyMlwiLFwiZ3JvdXBOYW1lXCI6XCLmtYvor5XnvqRcIixcIm5vdGlmaWNhdGlvblwiOlwiXCIsXCJpbnRyb2R1Y3Rpb25cIjpcIlwiLFwiZmFjZVVSTFwiOlwiXCIsXCJvd25lclVzZXJJRFwiOlwiMzkyMzg2NDE1NlwiLFwiY3JlYXRlVGltZVwiOjE3MTY0NDkwNTE4MDksXCJtZW1iZXJDb3VudFwiOjIsXCJleFwiOlwiXCIsXCJzdGF0dXNcIjowLFwiY3JlYXRvclVzZXJJRFwiOlwiMzkyMzg2NDE1NlwiLFwiZ3JvdXBUeXBlXCI6MixcIm5lZWRWZXJpZmljYXRpb25cIjowLFwibG9va01lbWJlckluZm9cIjowLFwiYXBwbHlNZW1iZXJGcmllbmRcIjowLFwibm90aWZpY2F0aW9uVXBkYXRlVGltZVwiOjAsXCJub3RpZmljYXRpb25Vc2VySURcIjpcIlwifSxcInF1aXRVc2VyXCI6e1wiZ3JvdXBJRFwiOlwiMTYxMDE5MzIyXCIsXCJ1c2VySURcIjpcIjI3MjU0NTEyNDNcIixcInJvbGVMZXZlbFwiOjIwLFwiam9pblRpbWVcIjoxNzE2NDQ5MDUxODExLFwibmlja25hbWVcIjpcIk9wZW5JTS1BbmRyZXcxMjNcIixcImZhY2VVUkxcIjpcIlwiLFwiYXBwTWFuZ2VyTGV2ZWxcIjowLFwiam9pblNvdXJjZVwiOjIsXCJvcGVyYXRvclVzZXJJRFwiOlwiMzkyMzg2NDE1NlwiLFwiZXhcIjpcIlwiLFwibXV0ZUVuZFRpbWVcIjowLFwiaW52aXRlclVzZXJJRFwiOlwiMzkyMzg2NDE1NlwifSxcIm9wZXJhdGlvblRpbWVcIjowLFwiZ3JvdXBNZW1iZXJWZXJzaW9uXCI6NCxcImdyb3VwTWVtYmVyVmVyc2lvbklEXCI6XCI2NjcyZDM5ZGUyNzE2NmZlNzc4MTE3M2ZcIn0ifQ==","seq":3,"sendTime":1718850240267,"createTime":1718850240266,"status":0,"isRead":false,"options":{"offlinePush":false,"unreadCount":false},"offlinePushInfo":{"title":"","desc":"","ex":"","iOSPushSound":"","iOSBadgeCount":false,"signalInfo":""},"atUserIDList":null,"attachedInfo":"","ex":""}],"isEnd":true},"sg_2300748497":{"Msgs":[{"sendID":"imAdmin","recvID":"2300748497","groupID":"2300748497","clientMsgID":"f2abda0ba3a3460dd9e06350b2fd0bdb","serverMsgID":"d35e1a97576493ec2ab2ff3d077f4cdc","senderPlatformID":0,"senderNickname":"","senderFaceURL":"","sessionType":3,"msgFrom":200,"contentType":1504,"content":"eyJkZXRhaWwiOiJ7XCJncm91cFwiOntcImdyb3VwSURcIjpcIjIzMDA3NDg0OTdcIixcImdyb3VwTmFtZVwiOlwi5rWL6K+VXCIsXCJub3RpZmljYXRpb25cIjpcIlwiLFwiaW50cm9kdWN0aW9uXCI6XCJcIixcImZhY2VVUkxcIjpcIlwiLFwib3duZXJVc2VySURcIjpcIjI3MzgzMDgwODhcIixcImNyZWF0ZVRpbWVcIjoxNjkyOTA2MzAwODE3LFwibWVtYmVyQ291bnRcIjo1LFwiZXhcIjpcIlwiLFwic3RhdHVzXCI6MCxcImNyZWF0b3JVc2VySURcIjpcIjI3MzgzMDgwODhcIixcImdyb3VwVHlwZVwiOjIsXCJuZWVkVmVyaWZpY2F0aW9uXCI6MCxcImxvb2tNZW1iZXJJbmZvXCI6MCxcImFwcGx5TWVtYmVyRnJpZW5kXCI6MCxcIm5vdGlmaWNhdGlvblVwZGF0ZVRpbWVcIjotMjg4MDAwMDAsXCJub3RpZmljYXRpb25Vc2VySURcIjpcIlwifSxcInF1aXRVc2VyXCI6e1wiZ3JvdXBJRFwiOlwiMjMwMDc0ODQ5N1wiLFwidXNlcklEXCI6XCIzNDE4NTc3NDM2XCIsXCJyb2xlTGV2ZWxcIjoyMCxcImpvaW5UaW1lXCI6MTY5MjkwNjMwMDgyMCxcIm5pY2tuYW1lXCI6XCJPcGVuSU0tc2tpZmZlclwiLFwiZmFjZVVSTFwiOlwiaHR0cHM6Ly93ZWIucmVudHNvZnQuY24vYXBpX2VudGVycHJpc2Uvb2JqZWN0LzM0MTg1Nzc0MzYvQkQxNEMyQzE5NTZBQjJFMUJEOEE5RjMzRTc2MjIwQkUgKDEpLmpwZ1wiLFwiYXBwTWFuZ2VyTGV2ZWxcIjowLFwiam9pblNvdXJjZVwiOjIsXCJvcGVyYXRvclVzZXJJRFwiOlwiMjczODMwODA4OFwiLFwiZXhcIjpcIlwiLFwibXV0ZUVuZFRpbWVcIjotMjg4MDAwMDAsXCJpbnZpdGVyVXNlcklEXCI6XCIyNzM4MzA4MDg4XCJ9LFwib3BlcmF0aW9uVGltZVwiOjAsXCJncm91cE1lbWJlclZlcnNpb25cIjoyLFwiZ3JvdXBNZW1iZXJWZXJzaW9uSURcIjpcIjY2NzE5MDAxNTg5YzdjNWZlNzA5ZmU3NVwifSJ9","seq":2,"sendTime":1718718570199,"createTime":1718718570198,"status":0,"isRead":false,"options":{"offlinePush":false,"unreadCount":false},"offlinePushInfo":{"title":"","desc":"","ex":"","iOSPushSound":"","iOSBadgeCount":false,"signalInfo":""},"atUserIDList":null,"attachedInfo":"","ex":""}],"isEnd":true},"sg_2836218947":{"Msgs":[{"sendID":"imAdmin","recvID":"2836218947","groupID":"2836218947","clientMsgID":"06284c5a5f10d1f472f5f8bc938b47a3","serverMsgID":"bba734e36558164cfb5e40206ba26259","senderPlatformID":0,"senderNickname":"","senderFaceURL":"","sessionType":3,"msgFrom":200,"contentType":1504,"content":"eyJkZXRhaWwiOiJ7XCJncm91cFwiOntcImdyb3VwSURcIjpcIjI4MzYyMTg5NDdcIixcImdyb3VwTmFtZVwiOlwi5rWL6K+V576k566h55CGXCIsXCJub3RpZmljYXRpb25cIjpcIlwiLFwiaW50cm9kdWN0aW9uXCI6XCJcIixcImZhY2VVUkxcIjpcIlwiLFwib3duZXJVc2VySURcIjpcIjQ5MTgyNzY1NTlcIixcImNyZWF0ZVRpbWVcIjoxNzE1MDY1MzM1NDA4LFwibWVtYmVyQ291bnRcIjo2LFwiZXhcIjpcIlwiLFwic3RhdHVzXCI6MCxcImNyZWF0b3JVc2VySURcIjpcIjQ5MTgyNzY1NTlcIixcImdyb3VwVHlwZVwiOjIsXCJuZWVkVmVyaWZpY2F0aW9uXCI6MCxcImxvb2tNZW1iZXJJbmZvXCI6MSxcImFwcGx5TWVtYmVyRnJpZW5kXCI6MSxcIm5vdGlmaWNhdGlvblVwZGF0ZVRpbWVcIjowLFwibm90aWZpY2F0aW9uVXNlcklEXCI6XCJcIn0sXCJxdWl0VXNlclwiOntcImdyb3VwSURcIjpcIjI4MzYyMTg5NDdcIixcInVzZXJJRFwiOlwiNjMxOTAxNTAyNFwiLFwicm9sZUxldmVsXCI6MjAsXCJqb2luVGltZVwiOjE3MTUwNjUzMzU0MDksXCJuaWNrbmFtZVwiOlwiT3BlbklNLXdpbmRcIixcImZhY2VVUkxcIjpcImh0dHBzOi8vd2ViLnJlbnRzb2Z0LmNuL2FwaV9lbnRlcnByaXNlL29iamVjdC82MzE5MDE1MDI0L3BleGVscy1waG90by0yMTc0OTc0LndlYnBcIixcImFwcE1hbmdlckxldmVsXCI6MCxcImpvaW5Tb3VyY2VcIjoyLFwib3BlcmF0b3JVc2VySURcIjpcIjQ5MTgyNzY1NTlcIixcImV4XCI6XCJcIixcIm11dGVFbmRUaW1lXCI6MCxcImludml0ZXJVc2VySURcIjpcIjQ5MTgyNzY1NTlcIn0sXCJvcGVyYXRpb25UaW1lXCI6MCxcImdyb3VwTWVtYmVyVmVyc2lvblwiOjMsXCJncm91cE1lbWJlclZlcnNpb25JRFwiOlwiNjY3MmQzOWRlMjcxNjZmZTc3ODExNzBjXCJ9In0=","seq":2,"sendTime":1718936592923,"createTime":1718936592922,"status":0,"isRead":false,"options":{"offlinePush":false,"unreadCount":false},"offlinePushInfo":{"title":"","desc":"","ex":"","iOSPushSound":"","iOSBadgeCount":false,"signalInfo":""},"atUserIDList":null,"attachedInfo":"","ex":""}],"isEnd":true},"sg_3187706596":{"Msgs":[{"sendID":"imAdmin","recvID":"3187706596","groupID":"3187706596","clientMsgID":"54f49dda390bd96e8c6107a9a8bb869b","serverMsgID":"2ffca94228877bc102fe4be01aeba429","senderPlatformID":0,"senderNickname":"","senderFaceURL":"","sessionType":3,"msgFrom":200,"contentType":1509,"content":"eyJkZXRhaWwiOiJ7XCJncm91cFwiOntcImdyb3VwSURcIjpcIjMxODc3MDY1OTZcIixcImdyb3VwTmFtZVwiOlwi6buY6K6k576kLea1i+ivlVwiLFwibm90aWZpY2F0aW9uXCI6XCJyYWctZ3B077ya5Z+65LqO5pys5Zyw55+l6K+G5bqT55qE5byA5rqQ5pm66IO95a6i5pyNIFxcbmh0dHBzOi8vZ2l0aHViLmNvbS9vcGVuLWtmL3JhZy1ncHRcXG5cIixcImludHJvZHVjdGlvblwiOlwiXCIsXCJmYWNlVVJMXCI6XCJcIixcIm93bmVyVXNlcklEXCI6XCI3NDk3NjA1NDAxXCIsXCJjcmVhdGVUaW1lXCI6MTY5MjU1OTMwNzA1MixcIm1lbWJlckNvdW50XCI6MzkwMixcImV4XCI6XCJ4eHhcIixcInN0YXR1c1wiOjAsXCJjcmVhdG9yVXNlcklEXCI6XCI3MDA5OTY1OTM0XCIsXCJncm91cFR5cGVcIjoyLFwibmVlZFZlcmlmaWNhdGlvblwiOjAsXCJsb29rTWVtYmVySW5mb1wiOjAsXCJhcHBseU1lbWJlckZyaWVuZFwiOjAsXCJub3RpZmljYXRpb25VcGRhdGVUaW1lXCI6MTcxNjk2ODQyODYzNSxcIm5vdGlmaWNhdGlvblVzZXJJRFwiOlwiMzQxODU3NzQzNlwifSxcIm9wVXNlclwiOntcImdyb3VwSURcIjpcIjMxODc3MDY1OTZcIixcInVzZXJJRFwiOlwiaW1BZG1pblwiLFwicm9sZUxldmVsXCI6NjAsXCJqb2luVGltZVwiOjAsXCJuaWNrbmFtZVwiOlwiYWRtaW5cIixcImZhY2VVUkxcIjpcIlwiLFwiYXBwTWFuZ2VyTGV2ZWxcIjoyLFwiam9pblNvdXJjZVwiOjAsXCJvcGVyYXRvclVzZXJJRFwiOlwiXCIsXCJleFwiOlwiXCIsXCJtdXRlRW5kVGltZVwiOjAsXCJpbnZpdGVyVXNlcklEXCI6XCJcIn0sXCJpbnZpdGVkVXNlckxpc3RcIjpbe1wiZ3JvdXBJRFwiOlwiMzE4NzcwNjU5NlwiLFwidXNlcklEXCI6XCI3MTIyMjI5NjM2XCIsXCJyb2xlTGV2ZWxcIjoyMCxcImpvaW5UaW1lXCI6MTcxODk1MzQzMjk2MCxcIm5pY2tuYW1lXCI6XCIxMTExMVwiLFwiZmFjZVVSTFwiOlwiXCIsXCJhcHBNYW5nZXJMZXZlbFwiOjAsXCJqb2luU291cmNlXCI6MixcIm9wZXJhdG9yVXNlcklEXCI6XCJcIixcImV4XCI6XCJcIixcIm11dGVFbmRUaW1lXCI6MCxcImludml0ZXJVc2VySURcIjpcIlwifV0sXCJvcGVyYXRpb25UaW1lXCI6MCxcImdyb3VwTWVtYmVyVmVyc2lvblwiOjQsXCJncm91cE1lbWJlclZlcnNpb25JRFwiOlwiNjY3MmQzOWRlMjcxNjZmZTc3ODExNzE3XCJ9In0=","seq":3,"sendTime":1718953433112,"createTime":1718953433111,"status":0,"isRead":false,"options":{"offlinePush":false,"unreadCount":false},"offlinePushInfo":{"title":"","desc":"","ex":"","iOSPushSound":"","iOSBadgeCount":false,"signalInfo":""},"atUserIDList":null,"attachedInfo":"","ex":""}],"isEnd":true},"sg_3896488295":{"Msgs":[{"sendID":"imAdmin","recvID":"3896488295","groupID":"3896488295","clientMsgID":"dfc06971a5ff46e072117247b92b68e6","serverMsgID":"f57eb140f799156f77187ed2d03754d5","senderPlatformID":0,"senderNickname":"","senderFaceURL":"","sessionType":3,"msgFrom":200,"contentType":1504,"content":"eyJkZXRhaWwiOiJ7XCJncm91cFwiOntcImdyb3VwSURcIjpcIjM4OTY0ODgyOTVcIixcImdyb3VwTmFtZVwiOlwiaW3mtYvor5VcIixcIm5vdGlmaWNhdGlvblwiOlwiXCIsXCJpbnRyb2R1Y3Rpb25cIjpcIlwiLFwiZmFjZVVSTFwiOlwiXCIsXCJvd25lclVzZXJJRFwiOlwiMzg2MjE0NzQyNFwiLFwiY3JlYXRlVGltZVwiOjE3MDQ4MDU1MTE1NzMsXCJtZW1iZXJDb3VudFwiOjksXCJleFwiOlwiXCIsXCJzdGF0dXNcIjowLFwiY3JlYXRvclVzZXJJRFwiOlwiMzg2MjE0NzQyNFwiLFwiZ3JvdXBUeXBlXCI6MixcIm5lZWRWZXJpZmljYXRpb25cIjowLFwibG9va01lbWJlckluZm9cIjowLFwiYXBwbHlNZW1iZXJGcmllbmRcIjowLFwibm90aWZpY2F0aW9uVXBkYXRlVGltZVwiOjAsXCJub3RpZmljYXRpb25Vc2VySURcIjpcIlwifSxcInF1aXRVc2VyXCI6e1wiZ3JvdXBJRFwiOlwiMzg5NjQ4ODI5NVwiLFwidXNlcklEXCI6XCIyNzI1NDUxMjQzXCIsXCJyb2xlTGV2ZWxcIjoyMCxcImpvaW5UaW1lXCI6MTcwNDgwNTUxMTU3NCxcIm5pY2tuYW1lXCI6XCJPcGVuSU0tQW5kcmV3MTIzXCIsXCJmYWNlVVJMXCI6XCJcIixcImFwcE1hbmdlckxldmVsXCI6MCxcImpvaW5Tb3VyY2VcIjoyLFwib3BlcmF0b3JVc2VySURcIjpcIjM4NjIxNDc0MjRcIixcImV4XCI6XCJcIixcIm11dGVFbmRUaW1lXCI6MCxcImludml0ZXJVc2VySURcIjpcIjM4NjIxNDc0MjRcIn0sXCJvcGVyYXRpb25UaW1lXCI6MCxcImdyb3VwTWVtYmVyVmVyc2lvblwiOjIsXCJncm91cE1lbWJlclZlcnNpb25JRFwiOlwiNjY3MmQzOWRlMjcxNjZmZTc3ODExNmFmXCJ9In0=","seq":1,"sendTime":1718801595913,"createTime":1718801595912,"status":0,"isRead":false,"options":{"offlinePush":false,"unreadCount":false},"offlinePushInfo":{"title":"","desc":"","ex":"","iOSPushSound":"","iOSBadgeCount":false,"signalInfo":""},"atUserIDList":null,"attachedInfo":"","ex":""}],"isEnd":true},"sg_3926645279":{"Msgs":[{"sendID":"imAdmin","recvID":"3926645279","groupID":"3926645279","clientMsgID":"b7312f062ea8c5203a747f577d891096","serverMsgID":"c6d35a7f550bda5f52d74f17281dc8a3","senderPlatformID":0,"senderNickname":"","senderFaceURL":"","sessionType":3,"msgFrom":200,"contentType":1507,"content":"eyJkZXRhaWwiOiJ7XCJncm91cFwiOntcImdyb3VwSURcIjpcIjM5MjY2NDUyNzlcIixcImdyb3VwTmFtZVwiOlwieW8xMjNcIixcIm5vdGlmaWNhdGlvblwiOlwibmV3IG5vdGlmaWNhdGlvblwiLFwiaW50cm9kdWN0aW9uXCI6XCJuZXcgbm90aWZpY2F0aW9uXCIsXCJmYWNlVVJMXCI6XCJmYWNlVVJMIHVybFwiLFwib3duZXJVc2VySURcIjpcIjE2OTU3NjYyMzhcIixcImNyZWF0ZVRpbWVcIjoxNzE4OTUyMjcwNTA0LFwibWVtYmVyQ291bnRcIjoyLFwiZXhcIjpcIm5ldyBleFwiLFwic3RhdHVzXCI6MCxcImNyZWF0b3JVc2VySURcIjpcIlwiLFwiZ3JvdXBUeXBlXCI6MixcIm5lZWRWZXJpZmljYXRpb25cIjoxLFwibG9va01lbWJlckluZm9cIjoxLFwiYXBwbHlNZW1iZXJGcmllbmRcIjoxLFwibm90aWZpY2F0aW9uVXBkYXRlVGltZVwiOjE3MTg5NjgxOTEzNTUsXCJub3RpZmljYXRpb25Vc2VySURcIjpcImltQWRtaW5cIn0sXCJvcFVzZXJcIjp7XCJncm91cElEXCI6XCIzOTI2NjQ1Mjc5XCIsXCJ1c2VySURcIjpcImltQWRtaW5cIixcInJvbGVMZXZlbFwiOjYwLFwiam9pblRpbWVcIjowLFwibmlja25hbWVcIjpcImFkbWluXCIsXCJmYWNlVVJMXCI6XCJcIixcImFwcE1hbmdlckxldmVsXCI6MixcImpvaW5Tb3VyY2VcIjowLFwib3BlcmF0b3JVc2VySURcIjpcIlwiLFwiZXhcIjpcIlwiLFwibXV0ZUVuZFRpbWVcIjowLFwiaW52aXRlclVzZXJJRFwiOlwiXCJ9LFwibmV3R3JvdXBPd25lclwiOntcImdyb3VwSURcIjpcIjM5MjY2NDUyNzlcIixcInVzZXJJRFwiOlwiMTY5NTc2NjIzOFwiLFwicm9sZUxldmVsXCI6MTAwLFwiam9pblRpbWVcIjoxNzE4OTY4NDYyMTA0LFwibmlja25hbWVcIjpcIk9wZW5JTS1Hb3Jkb25cIixcImZhY2VVUkxcIjpcImh0dHBzOi8vd2ViLnJlbnRzb2Z0LmNuL2FwaV9lbnRlcnByaXNlL29iamVjdC8xNjk1NzY2MjM4L+a2iOaBrzIwMjMxMDExMTU0MjQzLnBuZ1wiLFwiYXBwTWFuZ2VyTGV2ZWxcIjowLFwiam9pblNvdXJjZVwiOjIsXCJvcGVyYXRvclVzZXJJRFwiOlwiXCIsXCJleFwiOlwiXCIsXCJtdXRlRW5kVGltZVwiOjAsXCJpbnZpdGVyVXNlcklEXCI6XCJcIn0sXCJvbGRHcm91cE93bmVyXCI6XCJcIixcIm9wZXJhdGlvblRpbWVcIjowLFwib2xkR3JvdXBPd25lckluZm9cIjp7XCJncm91cElEXCI6XCIzOTI2NjQ1Mjc5XCIsXCJ1c2VySURcIjpcIjI4ODI4OTk0NDdcIixcInJvbGVMZXZlbFwiOjIwLFwiam9pblRpbWVcIjoxNzE4OTUyMjcwNTA2LFwibmlja25hbWVcIjpcIk9wZW5JTS1ibG9vbWluZ1wiLFwiZmFjZVVSTFwiOlwiaHR0cHM6Ly93ZWIucmVudHNvZnQuY24vYXBpX2VudGVycHJpc2Uvb2JqZWN0LzI4ODI4OTk0NDcvYXZhdGFyLndlYnBcIixcImFwcE1hbmdlckxldmVsXCI6MCxcImpvaW5Tb3VyY2VcIjoyLFwib3BlcmF0b3JVc2VySURcIjpcImltQWRtaW5cIixcImV4XCI6XCJcIixcIm11dGVFbmRUaW1lXCI6MCxcImludml0ZXJVc2VySURcIjpcImltQWRtaW5cIn0sXCJncm91cE1lbWJlclZlcnNpb25cIjoyNCxcImdyb3VwTWVtYmVyVmVyc2lvbklEXCI6XCI2Njc1MjE0ZWFjNGI3NjYyNjQ2OGZlZjVcIn0ifQ==","seq":18,"sendTime":1719040920868,"createTime":1719040920865,"status":0,"isRead":false,"options":{"offlinePush":false,"unreadCount":false},"offlinePushInfo":{"title":"","desc":"","ex":"","iOSPushSound":"","iOSBadgeCount":false,"signalInfo":""},"atUserIDList":null,"attachedInfo":"","ex":""}],"isEnd":true},"sg_3927081813":{"Msgs":[{"sendID":"imAdmin","recvID":"3927081813","groupID":"3927081813","clientMsgID":"bb8f6da7b64c5019d05d11e5498b7ebe","serverMsgID":"8377622d22ff842f509a1b8a1b5cf020","senderPlatformID":0,"senderNickname":"","senderFaceURL":"","sessionType":3,"msgFrom":200,"contentType":1504,"content":"eyJkZXRhaWwiOiJ7XCJncm91cFwiOntcImdyb3VwSURcIjpcIjM5MjcwODE4MTNcIixcImdyb3VwTmFtZVwiOlwi5rC055S16LS5XCIsXCJub3RpZmljYXRpb25cIjpcIlwiLFwiaW50cm9kdWN0aW9uXCI6XCJcIixcImZhY2VVUkxcIjpcIlwiLFwib3duZXJVc2VySURcIjpcIjI1NjMxMDA3MzBcIixcImNyZWF0ZVRpbWVcIjoxNjkzMDAzMjIzNzE3LFwibWVtYmVyQ291bnRcIjo1LFwiZXhcIjpcIlwiLFwic3RhdHVzXCI6MCxcImNyZWF0b3JVc2VySURcIjpcIjI1NjMxMDA3MzBcIixcImdyb3VwVHlwZVwiOjIsXCJuZWVkVmVyaWZpY2F0aW9uXCI6MCxcImxvb2tNZW1iZXJJbmZvXCI6MCxcImFwcGx5TWVtYmVyRnJpZW5kXCI6MCxcIm5vdGlmaWNhdGlvblVwZGF0ZVRpbWVcIjotMjg4MDAwMDAsXCJub3RpZmljYXRpb25Vc2VySURcIjpcIlwifSxcInF1aXRVc2VyXCI6e1wiZ3JvdXBJRFwiOlwiMzkyNzA4MTgxM1wiLFwidXNlcklEXCI6XCI1MjkyMTU2NjY1XCIsXCJyb2xlTGV2ZWxcIjoyMCxcImpvaW5UaW1lXCI6MTY5MzAwMzIyMzcxOCxcIm5pY2tuYW1lXCI6XCJPbGl2ZXJcIixcImZhY2VVUkxcIjpcImh0dHBzOi8vd2ViLnJlbnRzb2Z0LmNuL2FwaV9lbnRlcnByaXNlL29iamVjdC81MjkyMTU2NjY1L3N0b3JhZ2UvZW11bGF0ZWQvMC9BbmRyb2lkL2RhdGEvaW8ub3BlbmltLmFuZHJvaWQuZGVtby9jYWNoZS8xNzA2MjY1MTU1MjQ3LzE3MDYyNjUxNDg4NTgucG5nXCIsXCJhcHBNYW5nZXJMZXZlbFwiOjAsXCJqb2luU291cmNlXCI6MixcIm9wZXJhdG9yVXNlcklEXCI6XCIyNTYzMTAwNzMwXCIsXCJleFwiOlwiXCIsXCJtdXRlRW5kVGltZVwiOi0yODgwMDAwMCxcImludml0ZXJVc2VySURcIjpcIjI1NjMxMDA3MzBcIn0sXCJvcGVyYXRpb25UaW1lXCI6MCxcImdyb3VwTWVtYmVyVmVyc2lvblwiOjEsXCJncm91cE1lbWJlclZlcnNpb25JRFwiOlwiNjY3MjNjMjk1ODljN2M1ZmU3MDlmZTc4XCJ9In0=","seq":1,"sendTime":1718762537772,"createTime":1718762537771,"status":0,"isRead":false,"options":{"offlinePush":false,"unreadCount":false},"offlinePushInfo":{"title":"","desc":"","ex":"","iOSPushSound":"","iOSBadgeCount":false,"signalInfo":""},"atUserIDList":null,"attachedInfo":"","ex":""}],"isEnd":true},"sg_84614448":{"Msgs":[{"sendID":"imAdmin","recvID":"84614448","groupID":"84614448","clientMsgID":"dc01b2472ea8368fc12ed589b3483a16","serverMsgID":"b920d2060e953bd0975219a79b17bb48","senderPlatformID":0,"senderNickname":"","senderFaceURL":"","sessionType":3,"msgFrom":200,"contentType":1504,"content":"eyJkZXRhaWwiOiJ7XCJncm91cFwiOntcImdyb3VwSURcIjpcIjg0NjE0NDQ4XCIsXCJncm91cE5hbWVcIjpcIue+pOiBiuS4pOadoeS4jeWQjOaXtuW3suivu1wiLFwibm90aWZpY2F0aW9uXCI6XCJcIixcImludHJvZHVjdGlvblwiOlwiXCIsXCJmYWNlVVJMXCI6XCJcIixcIm93bmVyVXNlcklEXCI6XCIxNjk1NzY2MjM4XCIsXCJjcmVhdGVUaW1lXCI6MTY5NzAxNTQ1NjQ1NCxcIm1lbWJlckNvdW50XCI6MSxcImV4XCI6XCJcIixcInN0YXR1c1wiOjAsXCJjcmVhdG9yVXNlcklEXCI6XCIxNjk1NzY2MjM4XCIsXCJncm91cFR5cGVcIjoyLFwibmVlZFZlcmlmaWNhdGlvblwiOjAsXCJsb29rTWVtYmVySW5mb1wiOjAsXCJhcHBseU1lbWJlckZyaWVuZFwiOjAsXCJub3RpZmljYXRpb25VcGRhdGVUaW1lXCI6MCxcIm5vdGlmaWNhdGlvblVzZXJJRFwiOlwiXCJ9LFwicXVpdFVzZXJcIjp7XCJncm91cElEXCI6XCI4NDYxNDQ0OFwiLFwidXNlcklEXCI6XCI3MDA5OTY1OTM0XCIsXCJyb2xlTGV2ZWxcIjoyMCxcImpvaW5UaW1lXCI6MTY5NzAxNTQ1NjQ1NixcIm5pY2tuYW1lXCI6XCLwn5iC4oKNy4TCt82I4LydwrfNiMuEKlwiLFwiZmFjZVVSTFwiOlwiaHR0cHM6Ly93ZWIucmVudHNvZnQuY24vYXBpX2VudGVycHJpc2Uvb2JqZWN0LzcwMDk5NjU5MzQvaW1hZ2VfY3JvcHBlcl8xNjk3MDk3MzUwMTcwLmpwZ1wiLFwiYXBwTWFuZ2VyTGV2ZWxcIjowLFwiam9pblNvdXJjZVwiOjIsXCJvcGVyYXRvclVzZXJJRFwiOlwiMTY5NTc2NjIzOFwiLFwiZXhcIjpcIlwiLFwibXV0ZUVuZFRpbWVcIjowLFwiaW52aXRlclVzZXJJRFwiOlwiMTY5NTc2NjIzOFwifSxcIm9wZXJhdGlvblRpbWVcIjowLFwiZ3JvdXBNZW1iZXJWZXJzaW9uXCI6MyxcImdyb3VwTWVtYmVyVmVyc2lvbklEXCI6XCI2NjZjNGNmNDk1OWJlODBmOTk0NTA0YWFcIn0ifQ==","seq":2,"sendTime":1718717329749,"createTime":1718717329747,"status":0,"isRead":false,"options":{"offlinePush":false,"unreadCount":false},"offlinePushInfo":{"title":"","desc":"","ex":"","iOSPushSound":"","iOSBadgeCount":false,"signalInfo":""},"atUserIDList":null,"attachedInfo":"","ex":""}],"isEnd":true},"si_1695766238_5967938442":{"Msgs":[{"sendID":"1695766238","recvID":"5967938442","groupID":"","clientMsgID":"f3bc501a9e75ed5d7ae967b00d81c749","serverMsgID":"77b5d27ea8ea581781d049133aef1754","senderPlatformID":0,"senderNickname":"","senderFaceURL":"","sessionType":1,"msgFrom":200,"contentType":1201,"content":"eyJkZXRhaWwiOiJ7XCJmcm9tVG9Vc2VySURcIjp7XCJmcm9tVXNlcklEXCI6XCI1OTY3OTM4NDQyXCIsXCJ0b1VzZXJJRFwiOlwiMTY5NTc2NjIzOFwifSxcImhhbmRsZU1zZ1wiOlwiXCIsXCJmcmllbmRWZXJzaW9uXCI6MCxcImZyaWVuZFZlcnNpb25JRFwiOlwiXCJ9In0=","seq":1,"sendTime":1718949580644,"createTime":1718949580641,"status":0,"isRead":false,"options":{"offlinePush":true,"unreadCount":false},"offlinePushInfo":{"title":"","desc":"","ex":"","iOSPushSound":"","iOSBadgeCount":false,"signalInfo":""},"atUserIDList":null,"attachedInfo":"","ex":""}],"isEnd":true},"si_1695766238_7122229636":{"Msgs":[{"sendID":"1695766238","recvID":"7122229636","groupID":"","clientMsgID":"72d26994e64cd4cd2b5c31e19ac8d610","serverMsgID":"2ea8653d8a929527d4f8c27cc76f9a47","senderPlatformID":0,"senderNickname":"","senderFaceURL":"","sessionType":1,"msgFrom":200,"contentType":1201,"content":"eyJkZXRhaWwiOiJ7XCJmcm9tVG9Vc2VySURcIjp7XCJmcm9tVXNlcklEXCI6XCI3MTIyMjI5NjM2XCIsXCJ0b1VzZXJJRFwiOlwiMTY5NTc2NjIzOFwifSxcImhhbmRsZU1zZ1wiOlwiXCIsXCJmcmllbmRWZXJzaW9uXCI6MCxcImZyaWVuZFZlcnNpb25JRFwiOlwiXCJ9In0=","seq":1,"sendTime":1718953432952,"createTime":1718953432951,"status":0,"isRead":true,"options":{"offlinePush":true,"unreadCount":false},"offlinePushInfo":{"title":"","desc":"","ex":"","iOSPushSound":"","iOSBadgeCount":false,"signalInfo":""},"atUserIDList":null,"attachedInfo":"","ex":""}],"isEnd":true}}}
+2024-06-24 10:57:00.458 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/msg/get_conversations_has_read_and_max_seq", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"seqs\":{\"sg_105081877\":{\"maxSeq\":2,\"hasReadSeq\":2},\"sg_1177987017\":{\"maxSeq\":2,\"hasReadSeq\":0},\"sg_1254300734\":{\"maxSeq\":1,\"hasReadSeq\":0},\"sg_161019322\":{\"maxSeq\":3,\"hasReadSeq\":3},\"sg_2300748497\":{\"maxSeq\":2,\"hasReadSeq\":0},\"sg_2836218947\":{\"maxSeq\":2,\"hasReadSeq\":2},\"sg_3187706596\":{\"maxSeq\":3,\"hasReadSeq\":3},\"sg_3896488295\":{\"maxSeq\":1,\"hasReadSeq\":0},\"sg_3926645279\":{\"maxSeq\":18,\"hasReadSeq\":5},\"sg_3927081813\":{\"maxSeq\":1,\"hasReadSeq\":0},\"sg_84614448\":{\"maxSeq\":2,\"hasReadSeq\":0},\"si_1695766238_5967938442\":{\"maxSeq\":1,\"hasReadSeq\":1},\"si_1695766238_7122229636\":{\"maxSeq\":1,\"hasReadSeq\":1}}}}"}
+2024-06-24 10:57:00.460 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/msg/get_conversations_has_read_and_max_seq", "state": "success", "cost time": "4643ms"}
+2024-06-24 10:57:00.463 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/conversation/get_conversations", "body": "{\"ownerUserID\":\"1695766238\",\"conversationIDs\":[\"si_1695766238_5967938442\",\"sg_161019322\",\"sg_2836218947\",\"sg_3187706596\",\"sg_3926645279\",\"sg_3927081813\",\"sg_84614448\",\"si_1695766238_7122229636\",\"sg_105081877\",\"sg_1177987017\",\"sg_1254300734\",\"sg_2300748497\",\"sg_3896488295\"]}"}
+2024-06-24 10:57:00.493 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/conversation/get_conversations", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"conversations\":[{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5967938442\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5967938442\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_161019322\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"161019322\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2836218947\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2836218947\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3187706596\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3187706596\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1692566611,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3926645279\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3926645279\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3927081813\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3927081813\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693003223,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_84614448\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"84614448\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697015456,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7122229636\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7122229636\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_105081877\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"105081877\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1177987017\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1177987017\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1254300734\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1254300734\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2300748497\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2300748497\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1692906300,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3896488295\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3896488295\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false}]}}"}
+2024-06-24 10:57:00.499 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/conversation/get_conversations", "state": "success", "cost time": "35ms"}
+2024-06-24 10:57:00.500 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/user/get_users_info", "body": "{\"userIDs\":[\"5967938442\",\"7122229636\"]}"}
+2024-06-24 10:57:00.519 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/user/get_users_info", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"usersInfo\":[{\"userID\":\"5967938442\",\"nickname\":\"hhh\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718949580525,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7122229636\",\"nickname\":\"11111\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718953432850,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0}]}}"}
+2024-06-24 10:57:00.520 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/user/get_users_info", "state": "success", "cost time": "19ms"}
+2024-06-24 10:57:00.520 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_groups_info", "body": "{\"groupIDs\":[\"161019322\",\"2836218947\",\"3187706596\",\"3926645279\",\"3927081813\",\"84614448\",\"105081877\",\"1177987017\",\"1254300734\",\"2300748497\",\"3896488295\"]}"}
+2024-06-24 10:57:00.559 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_groups_info", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"groupInfos\":[{\"groupID\":\"161019322\",\"groupName\":\"æĩč¯įž¤\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3923864156\",\"createTime\":1716449051809,\"memberCount\":2,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3923864156\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2836218947\",\"groupName\":\"æĩč¯įž¤įŽĄį\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4918276559\",\"createTime\":1715065335408,\"memberCount\":6,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4918276559\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":1,\"applyMemberFriend\":1,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"3187706596\",\"groupName\":\"éģčŽ¤įž¤-æĩč¯\",\"notification\":\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\nhttps://github.com/open-kf/rag-gpt\\n\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7497605401\",\"createTime\":1692559307052,\"memberCount\":3902,\"ex\":\"xxx\",\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1716968428635,\"notificationUserID\":\"3418577436\"},{\"groupID\":\"3926645279\",\"groupName\":\"yo123\",\"notification\":\"new notification\",\"introduction\":\"new notification\",\"faceURL\":\"faceURL url\",\"ownerUserID\":\"1695766238\",\"createTime\":1718952270504,\"memberCount\":2,\"ex\":\"new ex\",\"status\":0,\"creatorUserID\":\"\",\"groupType\":2,\"needVerification\":1,\"lookMemberInfo\":1,\"applyMemberFriend\":1,\"notificationUpdateTime\":1718968191355,\"notificationUserID\":\"imAdmin\"},{\"groupID\":\"3927081813\",\"groupName\":\"æ°´įĩč´š\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"2563100730\",\"createTime\":1693003223717,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"2563100730\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":-28800000,\"notificationUserID\":\"\"},{\"groupID\":\"84614448\",\"groupName\":\"įž¤č两æĄä¸åæļ厞č¯ģ\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1695766238\",\"createTime\":1697015456454,\"memberCount\":1,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"1695766238\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"105081877\",\"groupName\":\"d\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"5248385191\",\"createTime\":1710490825413,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"5248385191\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1177987017\",\"groupName\":\"123123\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1695766238\",\"createTime\":1705046435331,\"memberCount\":1,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"1695766238\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1254300734\",\"groupName\":\"fjh\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4681582191\",\"createTime\":1713582441625,\"memberCount\":9,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4681582191\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2300748497\",\"groupName\":\"æĩč¯\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"2738308088\",\"createTime\":1692906300817,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"2738308088\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":-28800000,\"notificationUserID\":\"\"},{\"groupID\":\"3896488295\",\"groupName\":\"imæĩč¯\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3862147424\",\"createTime\":1704805511573,\"memberCount\":9,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3862147424\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}]}}"}
+2024-06-24 10:57:00.565 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_groups_info", "state": "success", "cost time": "45ms"}
+2024-06-24 10:57:00.570 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/sync.go:142] update conversations {"operationID": "1719197817604066041", "conversations": []}
+2024-06-24 10:57:00.571 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_incremental_join_group", "body": "{\"userID\":\"1695766238\",\"versionID\":\"\",\"version\":0}"}
+2024-06-24 10:57:00.571 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/friend/get_self_friend_apply_list", "body": "{\"userID\":\"1695766238\",\"pagination\":{\"pageNumber\":1,\"showNumber\":50}}"}
+2024-06-24 10:57:00.571 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_user_req_group_applicationList", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":50},\"userID\":\"1695766238\"}"}
+2024-06-24 10:57:00.571 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/user/get_users_info", "body": "{\"userIDs\":[\"1695766238\"]}"}
+2024-06-24 10:57:00.571 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_recv_group_applicationList", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":50},\"fromUserID\":\"1695766238\"}"}
+2024-06-24 10:57:00.571 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/friend/get_black_list", "body": "{\"userID\":\"1695766238\",\"pagination\":{\"pageNumber\":1,\"showNumber\":50}}"}
+2024-06-24 10:57:00.571 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/friend/get_friend_apply_list", "body": "{\"userID\":\"1695766238\",\"pagination\":{\"pageNumber\":1,\"showNumber\":50}}"}
+2024-06-24 10:57:00.571 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/user/process_user_command_get_all", "body": "{\"userID\":\"1695766238\"}"}
+2024-06-24 10:57:00.589 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_incremental_join_group", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":4,\"versionID\":\"6672d39ce27166fe77811692\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null}}"}
+2024-06-24 10:57:00.590 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_incremental_join_group", "state": "success", "cost time": "19ms"}
+2024-06-24 10:57:00.592 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/user/get_users_info", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"usersInfo\":[{\"userID\":\"1695766238\",\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0}]}}"}
+2024-06-24 10:57:00.593 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/user/get_users_info", "state": "success", "cost time": "21ms"}
+2024-06-24 10:57:00.596 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_joined_group_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"fromUserID\":\"1695766238\"}"}
+2024-06-24 10:57:00.601 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [user/sync.go:45] SyncLoginUserInfo {"operationID": "1719197817604066041", "remoteUser": {"userID":"1695766238","nickname":"OpenIM-Gordon","faceURL":"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png","createTime":0,"ex":"","attachedInfo":"","globalRecvMsgOpt":0}, "localUser": {"userID":"","nickname":"","faceURL":"","createTime":0,"ex":"","attachedInfo":"","globalRecvMsgOpt":0}}
+2024-06-24 10:57:00.603 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/user/process_user_command_get_all", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"CommandResp\":null}}"}
+2024-06-24 10:57:00.605 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalUser", "server": {"userID":"1695766238","nickname":"OpenIM-Gordon","faceURL":"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png","createTime":0,"ex":"","attachedInfo":"","globalRecvMsgOpt":0}}
+2024-06-24 10:57:00.605 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/friend/get_black_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"blacks\":null,\"total\":0}}"}
+2024-06-24 10:57:00.607 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/friend/get_black_list", "state": "success", "cost time": "35ms"}
+2024-06-24 10:57:00.609 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/friend/get_self_friend_apply_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"friendRequests\":[{\"fromUserID\":\"1695766238\",\"fromNickname\":\"OpenIM-Gordon\",\"fromFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"toUserID\":\"1531800981\",\"toNickname\":\"OpenIM-Brett\",\"toFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1531800981/99468005.webp\",\"handleResult\":1,\"reqMsg\":\"552\",\"createTime\":1715657135155,\"handlerUserID\":\"1531800981\",\"handleMsg\":\"\",\"handleTime\":1715657143553,\"ex\":\"\"},{\"fromUserID\":\"1695766238\",\"fromNickname\":\"OpenIM-Gordon\",\"fromFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"toUserID\":\"2882899447\",\"toNickname\":\"OpenIM-blooming\",\"toFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\",\"handleResult\":1,\"reqMsg\":\"\",\"createTime\":1697015384429,\"handlerUserID\":\"2882899447\",\"handleMsg\":\"\",\"handleTime\":1697015398321,\"ex\":\"\"},{\"fromUserID\":\"1695766238\",\"fromNickname\":\"OpenIM-Gordon\",\"fromFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"toUserID\":\"6787283652\",\"toNickname\":\"blooming3\",\"toFaceURL\":\"http://14.29.213.197:50002/object/6787283652/įģæŋ.png\",\"handleResult\":-1,\"reqMsg\":\"5515\",\"createTime\":1691732487629,\"handlerUserID\":\"\",\"handleMsg\":\"\",\"handleTime\":1691733219269,\"ex\":\"\"},{\"fromUserID\":\"1695766238\",\"fromNickname\":\"OpenIM-Gordon\",\"fromFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"toUserID\":\"9859217551\",\"toNickname\":\"chao\",\"toFaceURL\":\"\",\"handleResult\":1,\"reqMsg\":\"\",\"createTime\":1691551369051,\"handlerUserID\":\"9859217551\",\"handleMsg\":\"\",\"handleTime\":1691551375888,\"ex\":\"\"}],\"total\":4}}"}
+2024-06-24 10:57:00.609 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/user/process_user_command_get_all", "state": "success", "cost time": "37ms"}
+2024-06-24 10:57:00.610 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [friend/sync.go:165] black from server {"operationID": "1719197817604066041", "data": null}
+2024-06-24 10:57:00.611 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/friend/get_self_friend_apply_list", "state": "success", "cost time": "39ms"}
+2024-06-24 10:57:00.612 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_user_req_group_applicationList", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":3,\"groupRequests\":[{\"userInfo\":{\"userID\":\"1695766238\",\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"ex\":\"\"},\"groupInfo\":{\"groupID\":\"3187706596\",\"groupName\":\"éģčŽ¤įž¤-æĩč¯\",\"notification\":\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\nhttps://github.com/open-kf/rag-gpt\\n\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7497605401\",\"createTime\":1692559307052,\"memberCount\":3902,\"ex\":\"xxx\",\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1716968428635,\"notificationUserID\":\"3418577436\"},\"handleResult\":1,\"reqMsg\":\"\",\"handleMsg\":\"reason\",\"reqTime\":1692566573827,\"handleUserID\":\"\",\"handleTime\":-28800000,\"ex\":\"\",\"joinSource\":3,\"inviterUserID\":\"\"},{\"userInfo\":{\"userID\":\"1695766238\",\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"ex\":\"\"},\"groupInfo\":{\"groupID\":\"853658007\",\"groupName\":\"666\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"6319015024\",\"createTime\":1704273179302,\"memberCount\":6,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"6319015024\",\"groupType\":2,\"needVerification\":1,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},\"handleResult\":1,\"reqMsg\":\"12132132\",\"handleMsg\":\"\",\"reqTime\":1704273280087,\"handleUserID\":\"\",\"handleTime\":0,\"ex\":\"\",\"joinSource\":3,\"inviterUserID\":\"\"},{\"userInfo\":{\"userID\":\"1695766238\",\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"ex\":\"\"},\"groupInfo\":{\"groupID\":\"293329320\",\"groupName\":\"åĻåŧ\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"8160058880\",\"createTime\":1715870580700,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"8160058880\",\"groupType\":2,\"needVerification\":1,\"lookMemberInfo\":0,\"applyMemberFriend\":1,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},\"handleResult\":0,\"reqMsg\":\"\",\"handleMsg\":\"\",\"reqTime\":1715870651570,\"handleUserID\":\"\",\"handleTime\":0,\"ex\":\"\",\"joinSource\":2,\"inviterUserID\":\"1689589076\"}]}}"}
+2024-06-24 10:57:00.613 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:309] sync delete {"operationID": "1719197817604066041", "type": "model_struct.LocalUser", "localMap": {}}
+2024-06-24 10:57:00.613 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [user/sync.go:95] sync command {"operationID": "1719197817604066041", "data from server": {"CommandResp":null}, "data from local": []}
+2024-06-24 10:57:00.614 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/friend/get_friend_apply_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"FriendRequests\":[{\"fromUserID\":\"2890713225\",\"fromNickname\":\"chao\",\"fromFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2890713225/image_cropper_1715156142003.jpg\",\"toUserID\":\"1695766238\",\"toNickname\":\"OpenIM-Gordon\",\"toFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"handleResult\":1,\"reqMsg\":\"\",\"createTime\":1695172120937,\"handlerUserID\":\"1695766238\",\"handleMsg\":\"\",\"handleTime\":1695634910224,\"ex\":\"\"},{\"fromUserID\":\"3418577436\",\"fromNickname\":\"OpenIM-skiffer\",\"fromFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/3418577436/BD14C2C1956AB2E1BD8A9F33E76220BE (1).jpg\",\"toUserID\":\"1695766238\",\"toNickname\":\"OpenIM-Gordon\",\"toFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"handleResult\":1,\"reqMsg\":\"\",\"createTime\":1697158688445,\"handlerUserID\":\"1695766238\",\"handleMsg\":\"\",\"handleTime\":1697161110765,\"ex\":\"\"},{\"fromUserID\":\"5668985363\",\"fromNickname\":\"Smile\",\"fromFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5668985363/image_cropper_1704713618993.jpg\",\"toUserID\":\"1695766238\",\"toNickname\":\"OpenIM-Gordon\",\"toFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"handleResult\":1,\"reqMsg\":\"\",\"createTime\":1697114299357,\"handlerUserID\":\"1695766238\",\"handleMsg\":\"\",\"handleTime\":1697161112506,\"ex\":\"\"},{\"fromUserID\":\"5937916635\",\"fromNickname\":\"æĢé\",\"fromFaceURL\":\"\",\"toUserID\":\"1695766238\",\"toNickname\":\"OpenIM-Gordon\",\"toFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"handleResult\":1,\"reqMsg\":\"\",\"createTime\":1692486201703,\"handlerUserID\":\"1695766238\",\"handleMsg\":\"\",\"handleTime\":1692486247081,\"ex\":\"\"},{\"fromUserID\":\"6787283652\",\"fromNickname\":\"blooming3\",\"fromFaceURL\":\"http://14.29.213.197:50002/object/6787283652/įģæŋ.png\",\"toUserID\":\"1695766238\",\"toNickname\":\"OpenIM-Gordon\",\"toFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"handleResult\":1,\"reqMsg\":\"aaa\",\"createTime\":1691732441129,\"handlerUserID\":\"1695766238\",\"handleMsg\":\"\",\"handleTime\":1694650113246,\"ex\":\"\"},{\"fromUserID\":\"7009965934\",\"fromNickname\":\"đâË¡Íāŧ¡ÍË*\",\"fromFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7009965934/image_cropper_1697097350170.jpg\",\"toUserID\":\"1695766238\",\"toNickname\":\"OpenIM-Gordon\",\"toFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"handleResult\":1,\"reqMsg\":\"11\",\"createTime\":1693944325842,\"handlerUserID\":\"1695766238\",\"handleMsg\":\"\",\"handleTime\":1694650109666,\"ex\":\"\"},{\"fromUserID\":\"8772228740\",\"fromNickname\":\"įŋå\",\"fromFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/8772228740/icon.png\",\"toUserID\":\"1695766238\",\"toNickname\":\"OpenIM-Gordon\",\"toFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"handleResult\":1,\"reqMsg\":\"aaa\",\"createTime\":1691643996752,\"handlerUserID\":\"1695766238\",\"handleMsg\":\"\",\"handleTime\":1691644038734,\"ex\":\"\"},{\"fromUserID\":\"9447003536\",\"fromNickname\":\"bb123\",\"fromFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/9447003536/avatar.webp\",\"toUserID\":\"1695766238\",\"toNickname\":\"OpenIM-Gordon\",\"toFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"handleResult\":1,\"reqMsg\":\"åĸåĸåĸ\",\"createTime\":1693017395271,\"handlerUserID\":\"1695766238\",\"handleMsg\":\"\",\"handleTime\":1693017408436,\"ex\":\"\"},{\"fromUserID\":\"9859217551\",\"fromNickname\":\"chao\",\"fromFaceURL\":\"\",\"toUserID\":\"1695766238\",\"toNickname\":\"OpenIM-Gordon\",\"toFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"handleResult\":1,\"reqMsg\":\"\",\"createTime\":1691551172443,\"handlerUserID\":\"9859217551\",\"handleMsg\":\"\",\"handleTime\":1691551375888,\"ex\":\"\"},{\"fromUserID\":\"2839845469\",\"fromNickname\":\"OpenIM-Kevln\",\"fromFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2839845469/image_cropper_CEAE004E-C57C-44F9-956D-968BA0CA0E6B-4437-000002C381F846B4.jpg\",\"toUserID\":\"1695766238\",\"toNickname\":\"OpenIM-Gordon\",\"toFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"handleResult\":1,\"reqMsg\":\"11\",\"createTime\":1705046389389,\"handlerUserID\":\"1695766238\",\"handleMsg\":\"\",\"handleTime\":1705046405271,\"ex\":\"\"}],\"total\":10}}"}
+2024-06-24 10:57:00.616 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_user_req_group_applicationList", "state": "success", "cost time": "44ms"}
+2024-06-24 10:57:00.616 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:240] sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalUser"}
+2024-06-24 10:57:00.617 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalFriendRequest", "server": {"fromUserID":"1695766238","fromNickname":"OpenIM-Gordon","fromFaceURL":"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png","toUserID":"1531800981","toNickname":"OpenIM-Brett","toFaceURL":"https://web.rentsoft.cn/api_enterprise/object/1531800981/99468005.webp","handleResult":1,"reqMsg":"552","createTime":1715657135155,"handlerUserID":"1531800981","handleMsg":"","handleTime":1715657143553,"ex":"","attachedInfo":""}}
+2024-06-24 10:57:00.617 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [friend/sync.go:170] black from local {"operationID": "1719197817604066041", "data": null}
+2024-06-24 10:57:00.617 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:252] sync both the server and client are empty {"operationID": "1719197817604066041", "type": "model_struct.LocalUserCommand"}
+2024-06-24 10:57:00.618 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:240] sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalUserCommand"}
+2024-06-24 10:57:00.625 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/friend/get_friend_apply_list", "state": "success", "cost time": "53ms"}
+2024-06-24 10:57:00.627 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupRequest", "server": {"groupID":"3187706596","groupName":"éģčŽ¤įž¤-æĩč¯","notification":"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \nhttps://github.com/open-kf/rag-gpt\n","introduction":"","groupFaceURL":"","createTime":1692559307052,"status":0,"creatorUserID":"7009965934","groupType":2,"ownerUserID":"7497605401","memberCount":3902,"userID":"1695766238","nickname":"OpenIM-Gordon","userFaceURL":"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png","handleResult":1,"reqMsg":"","handledMsg":"reason","reqTime":1692566573827,"handleUserID":"","handledTime":-28800000,"ex":"","attachedInfo":"","joinSource":3,"inviterUserID":""}}
+2024-06-24 10:57:00.658 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:252] sync both the server and client are empty {"operationID": "1719197817604066041", "type": "model_struct.LocalBlack"}
+2024-06-24 10:57:00.658 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_recv_group_applicationList", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":24,\"groupRequests\":[{\"userInfo\":{\"userID\":\"2882899447\",\"nickname\":\"OpenIM-blooming\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\",\"ex\":\"\"},\"groupInfo\":{\"groupID\":\"2105177423\",\"groupName\":\"test1111\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1695766238\",\"createTime\":1704889886479,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"1695766238\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},\"handleResult\":1,\"reqMsg\":\"3131\",\"handleMsg\":\"\",\"reqTime\":1704890124470,\"handleUserID\":\"\",\"handleTime\":0,\"ex\":\"\\u003cundefined\\u003e\",\"joinSource\":3,\"inviterUserID\":\"\"},{\"userInfo\":{\"userID\":\"1035025841\",\"nickname\":\"openimIos-\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1035025841/1703645744598_img-1701149298684f16e210025edac32b00418866d89c64e5def2deaf36ae0088476bf83df2c098e.jpg\",\"ex\":\"\"},\"groupInfo\":{\"groupID\":\"3187706596\",\"groupName\":\"éģčŽ¤įž¤-æĩč¯\",\"notification\":\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\nhttps://github.com/open-kf/rag-gpt\\n\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7497605401\",\"createTime\":1692559307052,\"memberCount\":3902,\"ex\":\"xxx\",\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1716968428635,\"notificationUserID\":\"3418577436\"},\"handleResult\":1,\"reqMsg\":\"\",\"handleMsg\":\"\",\"reqTime\":1705480416554,\"handleUserID\":\"\",\"handleTime\":0,\"ex\":\"\",\"joinSource\":4,\"inviterUserID\":\"\"},{\"userInfo\":{\"userID\":\"1695766238\",\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"ex\":\"\"},\"groupInfo\":{\"groupID\":\"3187706596\",\"groupName\":\"éģčŽ¤įž¤-æĩč¯\",\"notification\":\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\nhttps://github.com/open-kf/rag-gpt\\n\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7497605401\",\"createTime\":1692559307052,\"memberCount\":3902,\"ex\":\"xxx\",\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1716968428635,\"notificationUserID\":\"3418577436\"},\"handleResult\":1,\"reqMsg\":\"\",\"handleMsg\":\"reason\",\"reqTime\":1692566573827,\"handleUserID\":\"\",\"handleTime\":-28800000,\"ex\":\"\",\"joinSource\":3,\"inviterUserID\":\"\"},{\"userInfo\":{\"userID\":\"2294788609\",\"nickname\":\"paopaoyo\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2294788609/č¯éŗ.webp\",\"ex\":\"\"},\"groupInfo\":{\"groupID\":\"3187706596\",\"groupName\":\"éģčŽ¤įž¤-æĩč¯\",\"notification\":\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\nhttps://github.com/open-kf/rag-gpt\\n\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7497605401\",\"createTime\":1692559307052,\"memberCount\":3902,\"ex\":\"xxx\",\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1716968428635,\"notificationUserID\":\"3418577436\"},\"handleResult\":1,\"reqMsg\":\"\",\"handleMsg\":\"\",\"reqTime\":1704249804757,\"handleUserID\":\"\",\"handleTime\":0,\"ex\":\"\",\"joinSource\":3,\"inviterUserID\":\"\"},{\"userInfo\":{\"userID\":\"2738308088\",\"nickname\":\"white\",\"faceURL\":\"\",\"ex\":\"\"},\"groupInfo\":{\"groupID\":\"3187706596\",\"groupName\":\"éģčŽ¤įž¤-æĩč¯\",\"notification\":\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\nhttps://github.com/open-kf/rag-gpt\\n\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7497605401\",\"createTime\":1692559307052,\"memberCount\":3902,\"ex\":\"xxx\",\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1716968428635,\"notificationUserID\":\"3418577436\"},\"handleResult\":1,\"reqMsg\":\"īŧ\",\"handleMsg\":\"\",\"reqTime\":1693435183809,\"handleUserID\":\"\",\"handleTime\":-28800000,\"ex\":\"\",\"joinSource\":3,\"inviterUserID\":\"\"},{\"userInfo\":{\"userID\":\"2839845469\",\"nickname\":\"OpenIM-Kevln\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2839845469/image_cropper_CEAE004E-C57C-44F9-956D-968BA0CA0E6B-4437-000002C381F846B4.jpg\",\"ex\":\"\"},\"groupInfo\":{\"groupID\":\"3187706596\",\"groupName\":\"éģčŽ¤įž¤-æĩč¯\",\"notification\":\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\nhttps://github.com/open-kf/rag-gpt\\n\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7497605401\",\"createTime\":1692559307052,\"memberCount\":3902,\"ex\":\"xxx\",\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1716968428635,\"notificationUserID\":\"3418577436\"},\"handleResult\":1,\"reqMsg\":\"11\",\"handleMsg\":\"reason\",\"reqTime\":1692559544673,\"handleUserID\":\"\",\"handleTime\":-28800000,\"ex\":\"\",\"joinSource\":3,\"inviterUserID\":\"\"},{\"userInfo\":{\"userID\":\"2882899447\",\"nickname\":\"OpenIM-blooming\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\",\"ex\":\"\"},\"groupInfo\":{\"groupID\":\"3187706596\",\"groupName\":\"éģčŽ¤įž¤-æĩč¯\",\"notification\":\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\nhttps://github.com/open-kf/rag-gpt\\n\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7497605401\",\"createTime\":1692559307052,\"memberCount\":3902,\"ex\":\"xxx\",\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1716968428635,\"notificationUserID\":\"3418577436\"},\"handleResult\":1,\"reqMsg\":\"\",\"handleMsg\":\"reason\",\"reqTime\":1692563625747,\"handleUserID\":\"\",\"handleTime\":-28800000,\"ex\":\"\",\"joinSource\":3,\"inviterUserID\":\"\"},{\"userInfo\":{\"userID\":\"2890713225\",\"nickname\":\"chao\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2890713225/image_cropper_1715156142003.jpg\",\"ex\":\"\"},\"groupInfo\":{\"groupID\":\"3187706596\",\"groupName\":\"éģčŽ¤įž¤-æĩč¯\",\"notification\":\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\nhttps://github.com/open-kf/rag-gpt\\n\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7497605401\",\"createTime\":1692559307052,\"memberCount\":3902,\"ex\":\"xxx\",\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1716968428635,\"notificationUserID\":\"3418577436\"},\"handleResult\":1,\"reqMsg\":\"\",\"handleMsg\":\"reason\",\"reqTime\":1697009572381,\"handleUserID\":\"\",\"handleTime\":0,\"ex\":\"\",\"joinSource\":4,\"inviterUserID\":\"\"},{\"userInfo\":{\"userID\":\"3418577436\",\"nickname\":\"OpenIM-skiffer\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/3418577436/BD14C2C1956AB2E1BD8A9F33E76220BE (1).jpg\",\"ex\":\"\"},\"groupInfo\":{\"groupID\":\"3187706596\",\"groupName\":\"éģčŽ¤įž¤-æĩč¯\",\"notification\":\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\nhttps://github.com/open-kf/rag-gpt\\n\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7497605401\",\"createTime\":1692559307052,\"memberCount\":3902,\"ex\":\"xxx\",\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1716968428635,\"notificationUserID\":\"3418577436\"},\"handleResult\":1,\"reqMsg\":\"11111\",\"handleMsg\":\"reason\",\"reqTime\":1692563853061,\"handleUserID\":\"\",\"handleTime\":-28800000,\"ex\":\"\",\"joinSource\":3,\"inviterUserID\":\"\"},{\"userInfo\":{\"userID\":\"4648916002\",\"nickname\":\"Sam\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4648916002/image_cropper_1707582245462.jpg\",\"ex\":\"\"},\"groupInfo\":{\"groupID\":\"3187706596\",\"groupName\":\"éģčŽ¤įž¤-æĩč¯\",\"notification\":\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\nhttps://github.com/open-kf/rag-gpt\\n\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7497605401\",\"createTime\":1692559307052,\"memberCount\":3902,\"ex\":\"xxx\",\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1716968428635,\"notificationUserID\":\"3418577436\"},\"handleResult\":1,\"reqMsg\":\"įšéäē éåēäēįž¤čđ
\",\"handleMsg\":\"\",\"reqTime\":1707855964450,\"handleUserID\":\"\",\"handleTime\":0,\"ex\":\"\",\"joinSource\":3,\"inviterUserID\":\"\"},{\"userInfo\":{\"userID\":\"4911414951\",\"nickname\":\"OpenimAnd-Jane\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4911414951/image_2024-05-06-20-59.111.png\",\"ex\":\"\"},\"groupInfo\":{\"groupID\":\"3187706596\",\"groupName\":\"éģčŽ¤įž¤-æĩč¯\",\"notification\":\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\nhttps://github.com/open-kf/rag-gpt\\n\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7497605401\",\"createTime\":1692559307052,\"memberCount\":3902,\"ex\":\"xxx\",\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1716968428635,\"notificationUserID\":\"3418577436\"},\"handleResult\":1,\"reqMsg\":\"\",\"handleMsg\":\"\",\"reqTime\":1711512980144,\"handleUserID\":\"\",\"handleTime\":0,\"ex\":\"\",\"joinSource\":2,\"inviterUserID\":\"\"},{\"userInfo\":{\"userID\":\"5240408296\",\"nickname\":\"fff\",\"faceURL\":\"\",\"ex\":\"\"},\"groupInfo\":{\"groupID\":\"3187706596\",\"groupName\":\"éģčŽ¤įž¤-æĩč¯\",\"notification\":\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\nhttps://github.com/open-kf/rag-gpt\\n\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7497605401\",\"createTime\":1692559307052,\"memberCount\":3902,\"ex\":\"xxx\",\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1716968428635,\"notificationUserID\":\"3418577436\"},\"handleResult\":1,\"reqMsg\":\"21\",\"handleMsg\":\"\",\"reqTime\":1713281978316,\"handleUserID\":\"\",\"handleTime\":0,\"ex\":\"\",\"joinSource\":3,\"inviterUserID\":\"\"},{\"userInfo\":{\"userID\":\"5349221317\",\"nickname\":\"ellan_ios\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5349221317/image_2023-08-29-24-39.833.png\",\"ex\":\"\"},\"groupInfo\":{\"groupID\":\"3187706596\",\"groupName\":\"éģčŽ¤įž¤-æĩč¯\",\"notification\":\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\nhttps://github.com/open-kf/rag-gpt\\n\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7497605401\",\"createTime\":1692559307052,\"memberCount\":3902,\"ex\":\"xxx\",\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1716968428635,\"notificationUserID\":\"3418577436\"},\"handleResult\":1,\"reqMsg\":\"ios\",\"handleMsg\":\"\",\"reqTime\":1693265116618,\"handleUserID\":\"\",\"handleTime\":-28800000,\"ex\":\"\",\"joinSource\":3,\"inviterUserID\":\"\"},{\"userInfo\":{\"userID\":\"6105455334\",\"nickname\":\"2234\",\"faceURL\":\"http://14.29.213.197:50002/object/6105455334/image_cropper_6B14D589-3B22-4F83-B6A0-33FEDAC33240-337-0000000E6EB9445B.jpg\",\"ex\":\"\"},\"groupInfo\":{\"groupID\":\"3187706596\",\"groupName\":\"éģčŽ¤įž¤-æĩč¯\",\"notification\":\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\nhttps://github.com/open-kf/rag-gpt\\n\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7497605401\",\"createTime\":1692559307052,\"memberCount\":3902,\"ex\":\"xxx\",\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1716968428635,\"notificationUserID\":\"3418577436\"},\"handleResult\":1,\"reqMsg\":\"\",\"handleMsg\":\"\",\"reqTime\":1692559496731,\"handleUserID\":\"\",\"handleTime\":-28800000,\"ex\":\"\",\"joinSource\":3,\"inviterUserID\":\"\"},{\"userInfo\":{\"userID\":\"6204547412\",\"nickname\":\"Martin\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/6204547412/Snipaste_2021-09-23_18-29-58.webp\",\"ex\":\"\"},\"groupInfo\":{\"groupID\":\"3187706596\",\"groupName\":\"éģčŽ¤įž¤-æĩč¯\",\"notification\":\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\nhttps://github.com/open-kf/rag-gpt\\n\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7497605401\",\"createTime\":1692559307052,\"memberCount\":3902,\"ex\":\"xxx\",\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1716968428635,\"notificationUserID\":\"3418577436\"},\"handleResult\":1,\"reqMsg\":\"æĩč¯\",\"handleMsg\":\"\",\"reqTime\":1706236471823,\"handleUserID\":\"\",\"handleTime\":0,\"ex\":\"\\u003cundefined\\u003e\",\"joinSource\":3,\"inviterUserID\":\"\"},{\"userInfo\":{\"userID\":\"8689302929\",\"nickname\":\"kernal\",\"faceURL\":\"\",\"ex\":\"\"},\"groupInfo\":{\"groupID\":\"3187706596\",\"groupName\":\"éģčŽ¤įž¤-æĩč¯\",\"notification\":\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\nhttps://github.com/open-kf/rag-gpt\\n\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7497605401\",\"createTime\":1692559307052,\"memberCount\":3902,\"ex\":\"xxx\",\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1716968428635,\"notificationUserID\":\"3418577436\"},\"handleResult\":1,\"reqMsg\":\"\",\"handleMsg\":\"reason\",\"reqTime\":1692571441411,\"handleUserID\":\"\",\"handleTime\":-28800000,\"ex\":\"\",\"joinSource\":4,\"inviterUserID\":\"\"},{\"userInfo\":{\"userID\":\"8812224365\",\"nickname\":\"tests1\",\"faceURL\":\"\",\"ex\":\"\"},\"groupInfo\":{\"groupID\":\"3187706596\",\"groupName\":\"éģčŽ¤įž¤-æĩč¯\",\"notification\":\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\nhttps://github.com/open-kf/rag-gpt\\n\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7497605401\",\"createTime\":1692559307052,\"memberCount\":3902,\"ex\":\"xxx\",\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1716968428635,\"notificationUserID\":\"3418577436\"},\"handleResult\":1,\"reqMsg\":\"\",\"handleMsg\":\"\",\"reqTime\":1716343500427,\"handleUserID\":\"\",\"handleTime\":0,\"ex\":\"\",\"joinSource\":3,\"inviterUserID\":\"\"},{\"userInfo\":{\"userID\":\"8818424284\",\"nickname\":\"æ\",\"faceURL\":\"\",\"ex\":\"\"},\"groupInfo\":{\"groupID\":\"3187706596\",\"groupName\":\"éģčŽ¤įž¤-æĩč¯\",\"notification\":\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\nhttps://github.com/open-kf/rag-gpt\\n\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7497605401\",\"createTime\":1692559307052,\"memberCount\":3902,\"ex\":\"xxx\",\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1716968428635,\"notificationUserID\":\"3418577436\"},\"handleResult\":1,\"reqMsg\":\"111\",\"handleMsg\":\"\",\"reqTime\":1708920583673,\"handleUserID\":\"\",\"handleTime\":0,\"ex\":\"\",\"joinSource\":3,\"inviterUserID\":\"\"},{\"userInfo\":{\"userID\":\"8879166186\",\"nickname\":\"PwJane\",\"faceURL\":\"http://14.29.213.197:50002/object/8879166186/storage/emulated/0/Android/data/io.openim.android.demo/cache/1715072796388/1715072794908.jpg\",\"ex\":\"\"},\"groupInfo\":{\"groupID\":\"3187706596\",\"groupName\":\"éģčŽ¤įž¤-æĩč¯\",\"notification\":\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\nhttps://github.com/open-kf/rag-gpt\\n\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7497605401\",\"createTime\":1692559307052,\"memberCount\":3902,\"ex\":\"xxx\",\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1716968428635,\"notificationUserID\":\"3418577436\"},\"handleResult\":1,\"reqMsg\":\"\",\"handleMsg\":\"\",\"reqTime\":1710749868591,\"handleUserID\":\"\",\"handleTime\":0,\"ex\":\"\",\"joinSource\":3,\"inviterUserID\":\"\"},{\"userInfo\":{\"userID\":\"8910288550\",\"nickname\":\"holiday\",\"faceURL\":\"\",\"ex\":\"\"},\"groupInfo\":{\"groupID\":\"3187706596\",\"groupName\":\"éģčŽ¤įž¤-æĩč¯\",\"notification\":\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\nhttps://github.com/open-kf/rag-gpt\\n\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7497605401\",\"createTime\":1692559307052,\"memberCount\":3902,\"ex\":\"xxx\",\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1716968428635,\"notificationUserID\":\"3418577436\"},\"handleResult\":1,\"reqMsg\":\"1\",\"handleMsg\":\"\",\"reqTime\":1692559525704,\"handleUserID\":\"\",\"handleTime\":-28800000,\"ex\":\"\",\"joinSource\":3,\"inviterUserID\":\"\"},{\"userInfo\":{\"userID\":\"9749333133\",\"nickname\":\"yff\",\"faceURL\":\"\",\"ex\":\"\"},\"groupInfo\":{\"groupID\":\"3187706596\",\"groupName\":\"éģčŽ¤įž¤-æĩč¯\",\"notification\":\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\nhttps://github.com/open-kf/rag-gpt\\n\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7497605401\",\"createTime\":1692559307052,\"memberCount\":3902,\"ex\":\"xxx\",\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1716968428635,\"notificationUserID\":\"3418577436\"},\"handleResult\":1,\"reqMsg\":\"\",\"handleMsg\":\"reason\",\"reqTime\":1692559723919,\"handleUserID\":\"\",\"handleTime\":-28800000,\"ex\":\"\",\"joinSource\":3,\"inviterUserID\":\"\"},{\"userInfo\":{\"userID\":\"2882899447\",\"nickname\":\"OpenIM-blooming\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\",\"ex\":\"\"},\"groupInfo\":{\"groupID\":\"324253771\",\"groupName\":\"OpenIMå
é¨ä礿ĩįž¤\",\"notification\":\"åäŊ 卿Ĩ 6įšåŧäŧ\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1695766238\",\"createTime\":1693184277225,\"memberCount\":14,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1709889407740,\"notificationUserID\":\"3418577436\"},\"handleResult\":1,\"reqMsg\":\"321\",\"handleMsg\":\"\",\"reqTime\":1693184446232,\"handleUserID\":\"\",\"handleTime\":-28800000,\"ex\":\"\",\"joinSource\":3,\"inviterUserID\":\"\"},{\"userInfo\":{\"userID\":\"4911414951\",\"nickname\":\"OpenimAnd-Jane\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4911414951/image_2024-05-06-20-59.111.png\",\"ex\":\"\"},\"groupInfo\":{\"groupID\":\"324253771\",\"groupName\":\"OpenIMå
é¨ä礿ĩįž¤\",\"notification\":\"åäŊ 卿Ĩ 6įšåŧäŧ\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1695766238\",\"createTime\":1693184277225,\"memberCount\":14,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1709889407740,\"notificationUserID\":\"3418577436\"},\"handleResult\":1,\"reqMsg\":\"\",\"handleMsg\":\"\",\"reqTime\":1711520880481,\"handleUserID\":\"\",\"handleTime\":0,\"ex\":\"\",\"joinSource\":2,\"inviterUserID\":\"\"},{\"userInfo\":{\"userID\":\"2725451243\",\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"ex\":\"\"},\"groupInfo\":{\"groupID\":\"3926645279\",\"groupName\":\"yo123\",\"notification\":\"new notification\",\"introduction\":\"new notification\",\"faceURL\":\"faceURL url\",\"ownerUserID\":\"1695766238\",\"createTime\":1718952270504,\"memberCount\":2,\"ex\":\"new ex\",\"status\":0,\"creatorUserID\":\"\",\"groupType\":2,\"needVerification\":1,\"lookMemberInfo\":1,\"applyMemberFriend\":1,\"notificationUpdateTime\":1718968191355,\"notificationUserID\":\"imAdmin\"},\"handleResult\":1,\"reqMsg\":\"req msg join group\",\"handleMsg\":\"\",\"reqTime\":1718958924373,\"handleUserID\":\"\",\"handleTime\":0,\"ex\":\"\",\"joinSource\":3,\"inviterUserID\":\"\"}]}}"}
+2024-06-24 10:57:00.676 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:240] sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalBlack"}
+2024-06-24 10:57:00.690 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [open_im_sdk_callback/callback_go_sdk.go:46] OnFriendApplicationAdded {"friendApplication": {"fromUserID":"1695766238","fromNickname":"OpenIM-Gordon","fromFaceURL":"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png","toUserID":"1531800981","toNickname":"OpenIM-Brett","toFaceURL":"https://web.rentsoft.cn/api_enterprise/object/1531800981/99468005.webp","handleResult":1,"reqMsg":"552","createTime":1715657135155,"handlerUserID":"1531800981","handleMsg":"","handleTime":1715657143553,"ex":"","attachedInfo":""}}
+2024-06-24 10:57:00.690 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalFriendRequest", "server": {"fromUserID":"2890713225","fromNickname":"chao","fromFaceURL":"https://web.rentsoft.cn/api_enterprise/object/2890713225/image_cropper_1715156142003.jpg","toUserID":"1695766238","toNickname":"OpenIM-Gordon","toFaceURL":"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png","handleResult":1,"reqMsg":"","createTime":1695172120937,"handlerUserID":"1695766238","handleMsg":"","handleTime":1695634910224,"ex":"","attachedInfo":""}}
+2024-06-24 10:57:00.691 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_recv_group_applicationList", "state": "success", "cost time": "119ms"}
+2024-06-24 10:57:00.694 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_friend_sdk.go:751] OnFriendApplicationAdded {"operationID": "1719197813759468572", "CallbackInfo": "{\"fromUserID\":\"1695766238\",\"fromNickname\":\"OpenIM-Gordon\",\"fromFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"toUserID\":\"1531800981\",\"toNickname\":\"OpenIM-Brett\",\"toFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1531800981/99468005.webp\",\"handleResult\":1,\"reqMsg\":\"552\",\"createTime\":1715657135155,\"handlerUserID\":\"1531800981\",\"handleMsg\":\"\",\"handleTime\":1715657143553,\"ex\":\"\",\"attachedInfo\":\"\"}"}
+2024-06-24 10:57:00.695 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalFriendRequest", "server": {"fromUserID":"1695766238","fromNickname":"OpenIM-Gordon","fromFaceURL":"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png","toUserID":"2882899447","toNickname":"OpenIM-blooming","toFaceURL":"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp","handleResult":1,"reqMsg":"","createTime":1697015384429,"handlerUserID":"2882899447","handleMsg":"","handleTime":1697015398321,"ex":"","attachedInfo":""}}
+2024-06-24 10:57:00.700 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_group_sdk.go:66] OnGroupApplicationAdded {"operationID": "1719197813759468572", "CallbackInfo": "{\"groupID\":\"3187706596\",\"groupName\":\"éģčŽ¤įž¤-æĩč¯\",\"notification\":\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\nhttps://github.com/open-kf/rag-gpt\\n\",\"introduction\":\"\",\"groupFaceURL\":\"\",\"createTime\":1692559307052,\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"ownerUserID\":\"7497605401\",\"memberCount\":3902,\"userID\":\"1695766238\",\"nickname\":\"OpenIM-Gordon\",\"userFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"handleResult\":1,\"reqMsg\":\"\",\"handledMsg\":\"reason\",\"reqTime\":1692566573827,\"handleUserID\":\"\",\"handledTime\":-28800000,\"ex\":\"\",\"attachedInfo\":\"\",\"joinSource\":3,\"inviterUserID\":\"\"}", "operationID": "1719197820876541663"}
+2024-06-24 10:57:00.700 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalAdminGroupRequest", "server": {"groupID":"2105177423","groupName":"test1111","notification":"","introduction":"","groupFaceURL":"","createTime":1704889886479,"status":0,"creatorUserID":"1695766238","groupType":2,"ownerUserID":"1695766238","memberCount":3,"userID":"2882899447","nickname":"OpenIM-blooming","userFaceURL":"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp","handleResult":1,"reqMsg":"3131","handledMsg":"","reqTime":1704890124470,"handleUserID":"","handledTime":0,"ex":"","attachedInfo":"","joinSource":3,"inviterUserID":""}}
+2024-06-24 10:57:00.701 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupRequest", "server": {"groupID":"853658007","groupName":"666","notification":"","introduction":"","groupFaceURL":"","createTime":1704273179302,"status":0,"creatorUserID":"6319015024","groupType":2,"ownerUserID":"6319015024","memberCount":6,"userID":"1695766238","nickname":"OpenIM-Gordon","userFaceURL":"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png","handleResult":1,"reqMsg":"12132132","handledMsg":"","reqTime":1704273280087,"handleUserID":"","handledTime":0,"ex":"","attachedInfo":"","joinSource":3,"inviterUserID":""}}
+2024-06-24 10:57:00.706 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_group_sdk.go:66] OnGroupApplicationAdded {"operationID": "1719197813759468572", "CallbackInfo": "{\"groupID\":\"2105177423\",\"groupName\":\"test1111\",\"notification\":\"\",\"introduction\":\"\",\"groupFaceURL\":\"\",\"createTime\":1704889886479,\"status\":0,\"creatorUserID\":\"1695766238\",\"groupType\":2,\"ownerUserID\":\"1695766238\",\"memberCount\":3,\"userID\":\"2882899447\",\"nickname\":\"OpenIM-blooming\",\"userFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\",\"handleResult\":1,\"reqMsg\":\"3131\",\"handledMsg\":\"\",\"reqTime\":1704890124470,\"handleUserID\":\"\",\"handledTime\":0,\"ex\":\"\\u003cundefined\\u003e\",\"attachedInfo\":\"\",\"joinSource\":3,\"inviterUserID\":\"\"}", "operationID": "1719197821559730051"}
+2024-06-24 10:57:00.706 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalAdminGroupRequest", "server": {"groupID":"3187706596","groupName":"éģčŽ¤įž¤-æĩč¯","notification":"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \nhttps://github.com/open-kf/rag-gpt\n","introduction":"","groupFaceURL":"","createTime":1692559307052,"status":0,"creatorUserID":"7009965934","groupType":2,"ownerUserID":"7497605401","memberCount":3902,"userID":"1035025841","nickname":"openimIos-","userFaceURL":"https://web.rentsoft.cn/api_enterprise/object/1035025841/1703645744598_img-1701149298684f16e210025edac32b00418866d89c64e5def2deaf36ae0088476bf83df2c098e.jpg","handleResult":1,"reqMsg":"","handledMsg":"","reqTime":1705480416554,"handleUserID":"","handledTime":0,"ex":"","attachedInfo":"","joinSource":4,"inviterUserID":""}}
+2024-06-24 10:57:00.711 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_group_sdk.go:66] OnGroupApplicationAdded {"operationID": "1719197813759468572", "CallbackInfo": "{\"groupID\":\"853658007\",\"groupName\":\"666\",\"notification\":\"\",\"introduction\":\"\",\"groupFaceURL\":\"\",\"createTime\":1704273179302,\"status\":0,\"creatorUserID\":\"6319015024\",\"groupType\":2,\"ownerUserID\":\"6319015024\",\"memberCount\":6,\"userID\":\"1695766238\",\"nickname\":\"OpenIM-Gordon\",\"userFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"handleResult\":1,\"reqMsg\":\"12132132\",\"handledMsg\":\"\",\"reqTime\":1704273280087,\"handleUserID\":\"\",\"handledTime\":0,\"ex\":\"\",\"attachedInfo\":\"\",\"joinSource\":3,\"inviterUserID\":\"\"}", "operationID": "1719197822745792800"}
+2024-06-24 10:57:00.715 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupRequest", "server": {"groupID":"293329320","groupName":"åĻåŧ","notification":"","introduction":"","groupFaceURL":"","createTime":1715870580700,"status":0,"creatorUserID":"8160058880","groupType":2,"ownerUserID":"8160058880","memberCount":5,"userID":"1695766238","nickname":"OpenIM-Gordon","userFaceURL":"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png","handleResult":0,"reqMsg":"","handledMsg":"","reqTime":1715870651570,"handleUserID":"","handledTime":0,"ex":"","attachedInfo":"","joinSource":2,"inviterUserID":"1689589076"}}
+2024-06-24 10:57:00.720 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_group_sdk.go:66] OnGroupApplicationAdded {"operationID": "1719197813759468572", "CallbackInfo": "{\"groupID\":\"3187706596\",\"groupName\":\"éģčŽ¤įž¤-æĩč¯\",\"notification\":\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\nhttps://github.com/open-kf/rag-gpt\\n\",\"introduction\":\"\",\"groupFaceURL\":\"\",\"createTime\":1692559307052,\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"ownerUserID\":\"7497605401\",\"memberCount\":3902,\"userID\":\"1035025841\",\"nickname\":\"openimIos-\",\"userFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1035025841/1703645744598_img-1701149298684f16e210025edac32b00418866d89c64e5def2deaf36ae0088476bf83df2c098e.jpg\",\"handleResult\":1,\"reqMsg\":\"\",\"handledMsg\":\"\",\"reqTime\":1705480416554,\"handleUserID\":\"\",\"handledTime\":0,\"ex\":\"\",\"attachedInfo\":\"\",\"joinSource\":4,\"inviterUserID\":\"\"}", "operationID": "1719197821149024726"}
+2024-06-24 10:57:00.721 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalAdminGroupRequest", "server": {"groupID":"3187706596","groupName":"éģčŽ¤įž¤-æĩč¯","notification":"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \nhttps://github.com/open-kf/rag-gpt\n","introduction":"","groupFaceURL":"","createTime":1692559307052,"status":0,"creatorUserID":"7009965934","groupType":2,"ownerUserID":"7497605401","memberCount":3902,"userID":"1695766238","nickname":"OpenIM-Gordon","userFaceURL":"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png","handleResult":1,"reqMsg":"","handledMsg":"reason","reqTime":1692566573827,"handleUserID":"","handledTime":-28800000,"ex":"","attachedInfo":"","joinSource":3,"inviterUserID":""}}
+2024-06-24 10:57:00.725 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_group_sdk.go:66] OnGroupApplicationAdded {"operationID": "1719197813759468572", "CallbackInfo": "{\"groupID\":\"293329320\",\"groupName\":\"åĻåŧ\",\"notification\":\"\",\"introduction\":\"\",\"groupFaceURL\":\"\",\"createTime\":1715870580700,\"status\":0,\"creatorUserID\":\"8160058880\",\"groupType\":2,\"ownerUserID\":\"8160058880\",\"memberCount\":5,\"userID\":\"1695766238\",\"nickname\":\"OpenIM-Gordon\",\"userFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"handleResult\":0,\"reqMsg\":\"\",\"handledMsg\":\"\",\"reqTime\":1715870651570,\"handleUserID\":\"\",\"handledTime\":0,\"ex\":\"\",\"attachedInfo\":\"\",\"joinSource\":2,\"inviterUserID\":\"1689589076\"}", "operationID": "1719197824261234338"}
+2024-06-24 10:57:00.726 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:309] sync delete {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupRequest", "localMapError": "json: unsupported type: map[[2]string]*model_struct.LocalGroupRequest"}
+2024-06-24 10:57:00.726 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:240] sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupRequest"}
+2024-06-24 10:57:00.730 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_group_sdk.go:66] OnGroupApplicationAdded {"operationID": "1719197813759468572", "CallbackInfo": "{\"groupID\":\"3187706596\",\"groupName\":\"éģčŽ¤įž¤-æĩč¯\",\"notification\":\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\nhttps://github.com/open-kf/rag-gpt\\n\",\"introduction\":\"\",\"groupFaceURL\":\"\",\"createTime\":1692559307052,\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"ownerUserID\":\"7497605401\",\"memberCount\":3902,\"userID\":\"1695766238\",\"nickname\":\"OpenIM-Gordon\",\"userFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"handleResult\":1,\"reqMsg\":\"\",\"handledMsg\":\"reason\",\"reqTime\":1692566573827,\"handleUserID\":\"\",\"handledTime\":-28800000,\"ex\":\"\",\"attachedInfo\":\"\",\"joinSource\":3,\"inviterUserID\":\"\"}", "operationID": "1719197824955239518"}
+2024-06-24 10:57:00.731 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalAdminGroupRequest", "server": {"groupID":"3187706596","groupName":"éģčŽ¤įž¤-æĩč¯","notification":"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \nhttps://github.com/open-kf/rag-gpt\n","introduction":"","groupFaceURL":"","createTime":1692559307052,"status":0,"creatorUserID":"7009965934","groupType":2,"ownerUserID":"7497605401","memberCount":3902,"userID":"2294788609","nickname":"paopaoyo","userFaceURL":"https://web.rentsoft.cn/api_enterprise/object/2294788609/č¯éŗ.webp","handleResult":1,"reqMsg":"","handledMsg":"","reqTime":1704249804757,"handleUserID":"","handledTime":0,"ex":"","attachedInfo":"","joinSource":3,"inviterUserID":""}}
+2024-06-24 10:57:00.737 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_group_sdk.go:66] OnGroupApplicationAdded {"operationID": "1719197813759468572", "CallbackInfo": "{\"groupID\":\"3187706596\",\"groupName\":\"éģčŽ¤įž¤-æĩč¯\",\"notification\":\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\nhttps://github.com/open-kf/rag-gpt\\n\",\"introduction\":\"\",\"groupFaceURL\":\"\",\"createTime\":1692559307052,\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"ownerUserID\":\"7497605401\",\"memberCount\":3902,\"userID\":\"2294788609\",\"nickname\":\"paopaoyo\",\"userFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2294788609/č¯éŗ.webp\",\"handleResult\":1,\"reqMsg\":\"\",\"handledMsg\":\"\",\"reqTime\":1704249804757,\"handleUserID\":\"\",\"handledTime\":0,\"ex\":\"\",\"attachedInfo\":\"\",\"joinSource\":3,\"inviterUserID\":\"\"}", "operationID": "1719197821538312067"}
+2024-06-24 10:57:00.738 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalAdminGroupRequest", "server": {"groupID":"3187706596","groupName":"éģčŽ¤įž¤-æĩč¯","notification":"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \nhttps://github.com/open-kf/rag-gpt\n","introduction":"","groupFaceURL":"","createTime":1692559307052,"status":0,"creatorUserID":"7009965934","groupType":2,"ownerUserID":"7497605401","memberCount":3902,"userID":"2738308088","nickname":"white","userFaceURL":"","handleResult":1,"reqMsg":"īŧ","handledMsg":"","reqTime":1693435183809,"handleUserID":"","handledTime":-28800000,"ex":"","attachedInfo":"","joinSource":3,"inviterUserID":""}}
+2024-06-24 10:57:00.744 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [open_im_sdk_callback/callback_go_sdk.go:46] OnFriendApplicationAdded {"friendApplication": {"fromUserID":"2890713225","fromNickname":"chao","fromFaceURL":"https://web.rentsoft.cn/api_enterprise/object/2890713225/image_cropper_1715156142003.jpg","toUserID":"1695766238","toNickname":"OpenIM-Gordon","toFaceURL":"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png","handleResult":1,"reqMsg":"","createTime":1695172120937,"handlerUserID":"1695766238","handleMsg":"","handleTime":1695634910224,"ex":"","attachedInfo":""}}
+2024-06-24 10:57:00.745 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_friend_sdk.go:751] OnFriendApplicationAdded {"operationID": "1719197813759468572", "CallbackInfo": "{\"fromUserID\":\"2890713225\",\"fromNickname\":\"chao\",\"fromFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2890713225/image_cropper_1715156142003.jpg\",\"toUserID\":\"1695766238\",\"toNickname\":\"OpenIM-Gordon\",\"toFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"handleResult\":1,\"reqMsg\":\"\",\"createTime\":1695172120937,\"handlerUserID\":\"1695766238\",\"handleMsg\":\"\",\"handleTime\":1695634910224,\"ex\":\"\",\"attachedInfo\":\"\"}"}
+2024-06-24 10:57:00.746 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalFriendRequest", "server": {"fromUserID":"3418577436","fromNickname":"OpenIM-skiffer","fromFaceURL":"https://web.rentsoft.cn/api_enterprise/object/3418577436/BD14C2C1956AB2E1BD8A9F33E76220BE (1).jpg","toUserID":"1695766238","toNickname":"OpenIM-Gordon","toFaceURL":"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png","handleResult":1,"reqMsg":"","createTime":1697158688445,"handlerUserID":"1695766238","handleMsg":"","handleTime":1697161110765,"ex":"","attachedInfo":""}}
+2024-06-24 10:57:00.748 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [open_im_sdk_callback/callback_go_sdk.go:46] OnFriendApplicationAdded {"friendApplication": {"fromUserID":"1695766238","fromNickname":"OpenIM-Gordon","fromFaceURL":"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png","toUserID":"2882899447","toNickname":"OpenIM-blooming","toFaceURL":"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp","handleResult":1,"reqMsg":"","createTime":1697015384429,"handlerUserID":"2882899447","handleMsg":"","handleTime":1697015398321,"ex":"","attachedInfo":""}}
+2024-06-24 10:57:00.751 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_friend_sdk.go:751] OnFriendApplicationAdded {"operationID": "1719197813759468572", "CallbackInfo": "{\"fromUserID\":\"1695766238\",\"fromNickname\":\"OpenIM-Gordon\",\"fromFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"toUserID\":\"2882899447\",\"toNickname\":\"OpenIM-blooming\",\"toFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\",\"handleResult\":1,\"reqMsg\":\"\",\"createTime\":1697015384429,\"handlerUserID\":\"2882899447\",\"handleMsg\":\"\",\"handleTime\":1697015398321,\"ex\":\"\",\"attachedInfo\":\"\"}"}
+2024-06-24 10:57:00.751 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalFriendRequest", "server": {"fromUserID":"1695766238","fromNickname":"OpenIM-Gordon","fromFaceURL":"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png","toUserID":"6787283652","toNickname":"blooming3","toFaceURL":"http://14.29.213.197:50002/object/6787283652/įģæŋ.png","handleResult":-1,"reqMsg":"5515","createTime":1691732487629,"handlerUserID":"","handleMsg":"","handleTime":1691733219269,"ex":"","attachedInfo":""}}
+2024-06-24 10:57:00.754 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [open_im_sdk_callback/callback_go_sdk.go:46] OnFriendApplicationAdded {"friendApplication": {"fromUserID":"3418577436","fromNickname":"OpenIM-skiffer","fromFaceURL":"https://web.rentsoft.cn/api_enterprise/object/3418577436/BD14C2C1956AB2E1BD8A9F33E76220BE (1).jpg","toUserID":"1695766238","toNickname":"OpenIM-Gordon","toFaceURL":"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png","handleResult":1,"reqMsg":"","createTime":1697158688445,"handlerUserID":"1695766238","handleMsg":"","handleTime":1697161110765,"ex":"","attachedInfo":""}}
+2024-06-24 10:57:00.755 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_friend_sdk.go:751] OnFriendApplicationAdded {"operationID": "1719197813759468572", "CallbackInfo": "{\"fromUserID\":\"3418577436\",\"fromNickname\":\"OpenIM-skiffer\",\"fromFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/3418577436/BD14C2C1956AB2E1BD8A9F33E76220BE (1).jpg\",\"toUserID\":\"1695766238\",\"toNickname\":\"OpenIM-Gordon\",\"toFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"handleResult\":1,\"reqMsg\":\"\",\"createTime\":1697158688445,\"handlerUserID\":\"1695766238\",\"handleMsg\":\"\",\"handleTime\":1697161110765,\"ex\":\"\",\"attachedInfo\":\"\"}"}
+2024-06-24 10:57:00.756 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalFriendRequest", "server": {"fromUserID":"5668985363","fromNickname":"Smile","fromFaceURL":"https://web.rentsoft.cn/api_enterprise/object/5668985363/image_cropper_1704713618993.jpg","toUserID":"1695766238","toNickname":"OpenIM-Gordon","toFaceURL":"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png","handleResult":1,"reqMsg":"","createTime":1697114299357,"handlerUserID":"1695766238","handleMsg":"","handleTime":1697161112506,"ex":"","attachedInfo":""}}
+2024-06-24 10:57:00.758 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [open_im_sdk_callback/callback_go_sdk.go:46] OnFriendApplicationAdded {"friendApplication": {"fromUserID":"1695766238","fromNickname":"OpenIM-Gordon","fromFaceURL":"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png","toUserID":"6787283652","toNickname":"blooming3","toFaceURL":"http://14.29.213.197:50002/object/6787283652/įģæŋ.png","handleResult":-1,"reqMsg":"5515","createTime":1691732487629,"handlerUserID":"","handleMsg":"","handleTime":1691733219269,"ex":"","attachedInfo":""}}
+2024-06-24 10:57:00.759 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_friend_sdk.go:751] OnFriendApplicationAdded {"operationID": "1719197813759468572", "CallbackInfo": "{\"fromUserID\":\"1695766238\",\"fromNickname\":\"OpenIM-Gordon\",\"fromFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"toUserID\":\"6787283652\",\"toNickname\":\"blooming3\",\"toFaceURL\":\"http://14.29.213.197:50002/object/6787283652/įģæŋ.png\",\"handleResult\":-1,\"reqMsg\":\"5515\",\"createTime\":1691732487629,\"handlerUserID\":\"\",\"handleMsg\":\"\",\"handleTime\":1691733219269,\"ex\":\"\",\"attachedInfo\":\"\"}"}
+2024-06-24 10:57:00.760 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalFriendRequest", "server": {"fromUserID":"1695766238","fromNickname":"OpenIM-Gordon","fromFaceURL":"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png","toUserID":"9859217551","toNickname":"chao","toFaceURL":"","handleResult":1,"reqMsg":"","createTime":1691551369051,"handlerUserID":"9859217551","handleMsg":"","handleTime":1691551375888,"ex":"","attachedInfo":""}}
+2024-06-24 10:57:00.762 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [open_im_sdk_callback/callback_go_sdk.go:46] OnFriendApplicationAdded {"friendApplication": {"fromUserID":"5668985363","fromNickname":"Smile","fromFaceURL":"https://web.rentsoft.cn/api_enterprise/object/5668985363/image_cropper_1704713618993.jpg","toUserID":"1695766238","toNickname":"OpenIM-Gordon","toFaceURL":"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png","handleResult":1,"reqMsg":"","createTime":1697114299357,"handlerUserID":"1695766238","handleMsg":"","handleTime":1697161112506,"ex":"","attachedInfo":""}}
+2024-06-24 10:57:00.763 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_friend_sdk.go:751] OnFriendApplicationAdded {"operationID": "1719197813759468572", "CallbackInfo": "{\"fromUserID\":\"5668985363\",\"fromNickname\":\"Smile\",\"fromFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5668985363/image_cropper_1704713618993.jpg\",\"toUserID\":\"1695766238\",\"toNickname\":\"OpenIM-Gordon\",\"toFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"handleResult\":1,\"reqMsg\":\"\",\"createTime\":1697114299357,\"handlerUserID\":\"1695766238\",\"handleMsg\":\"\",\"handleTime\":1697161112506,\"ex\":\"\",\"attachedInfo\":\"\"}"}
+2024-06-24 10:57:00.764 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalFriendRequest", "server": {"fromUserID":"5937916635","fromNickname":"æĢé","fromFaceURL":"","toUserID":"1695766238","toNickname":"OpenIM-Gordon","toFaceURL":"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png","handleResult":1,"reqMsg":"","createTime":1692486201703,"handlerUserID":"1695766238","handleMsg":"","handleTime":1692486247081,"ex":"","attachedInfo":""}}
+2024-06-24 10:57:00.766 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [open_im_sdk_callback/callback_go_sdk.go:46] OnFriendApplicationAdded {"friendApplication": {"fromUserID":"1695766238","fromNickname":"OpenIM-Gordon","fromFaceURL":"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png","toUserID":"9859217551","toNickname":"chao","toFaceURL":"","handleResult":1,"reqMsg":"","createTime":1691551369051,"handlerUserID":"9859217551","handleMsg":"","handleTime":1691551375888,"ex":"","attachedInfo":""}}
+2024-06-24 10:57:00.767 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_friend_sdk.go:751] OnFriendApplicationAdded {"operationID": "1719197813759468572", "CallbackInfo": "{\"fromUserID\":\"1695766238\",\"fromNickname\":\"OpenIM-Gordon\",\"fromFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"toUserID\":\"9859217551\",\"toNickname\":\"chao\",\"toFaceURL\":\"\",\"handleResult\":1,\"reqMsg\":\"\",\"createTime\":1691551369051,\"handlerUserID\":\"9859217551\",\"handleMsg\":\"\",\"handleTime\":1691551375888,\"ex\":\"\",\"attachedInfo\":\"\"}"}
+2024-06-24 10:57:00.767 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:309] sync delete {"operationID": "1719197817604066041", "type": "model_struct.LocalFriendRequest", "localMapError": "json: unsupported type: map[[2]string]*model_struct.LocalFriendRequest"}
+2024-06-24 10:57:00.767 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:240] sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalFriendRequest"}
+2024-06-24 10:57:00.769 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [open_im_sdk_callback/callback_go_sdk.go:46] OnFriendApplicationAdded {"friendApplication": {"fromUserID":"5937916635","fromNickname":"æĢé","fromFaceURL":"","toUserID":"1695766238","toNickname":"OpenIM-Gordon","toFaceURL":"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png","handleResult":1,"reqMsg":"","createTime":1692486201703,"handlerUserID":"1695766238","handleMsg":"","handleTime":1692486247081,"ex":"","attachedInfo":""}}
+2024-06-24 10:57:00.770 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_friend_sdk.go:751] OnFriendApplicationAdded {"operationID": "1719197813759468572", "CallbackInfo": "{\"fromUserID\":\"5937916635\",\"fromNickname\":\"æĢé\",\"fromFaceURL\":\"\",\"toUserID\":\"1695766238\",\"toNickname\":\"OpenIM-Gordon\",\"toFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"handleResult\":1,\"reqMsg\":\"\",\"createTime\":1692486201703,\"handlerUserID\":\"1695766238\",\"handleMsg\":\"\",\"handleTime\":1692486247081,\"ex\":\"\",\"attachedInfo\":\"\"}"}
+2024-06-24 10:57:00.770 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalFriendRequest", "server": {"fromUserID":"6787283652","fromNickname":"blooming3","fromFaceURL":"http://14.29.213.197:50002/object/6787283652/įģæŋ.png","toUserID":"1695766238","toNickname":"OpenIM-Gordon","toFaceURL":"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png","handleResult":1,"reqMsg":"aaa","createTime":1691732441129,"handlerUserID":"1695766238","handleMsg":"","handleTime":1694650113246,"ex":"","attachedInfo":""}}
+2024-06-24 10:57:00.773 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_group_sdk.go:66] OnGroupApplicationAdded {"operationID": "1719197813759468572", "CallbackInfo": "{\"groupID\":\"3187706596\",\"groupName\":\"éģčŽ¤įž¤-æĩč¯\",\"notification\":\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\nhttps://github.com/open-kf/rag-gpt\\n\",\"introduction\":\"\",\"groupFaceURL\":\"\",\"createTime\":1692559307052,\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"ownerUserID\":\"7497605401\",\"memberCount\":3902,\"userID\":\"2738308088\",\"nickname\":\"white\",\"userFaceURL\":\"\",\"handleResult\":1,\"reqMsg\":\"īŧ\",\"handledMsg\":\"\",\"reqTime\":1693435183809,\"handleUserID\":\"\",\"handledTime\":-28800000,\"ex\":\"\",\"attachedInfo\":\"\",\"joinSource\":3,\"inviterUserID\":\"\"}", "operationID": "1719197823576957611"}
+2024-06-24 10:57:00.774 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalAdminGroupRequest", "server": {"groupID":"3187706596","groupName":"éģčŽ¤įž¤-æĩč¯","notification":"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \nhttps://github.com/open-kf/rag-gpt\n","introduction":"","groupFaceURL":"","createTime":1692559307052,"status":0,"creatorUserID":"7009965934","groupType":2,"ownerUserID":"7497605401","memberCount":3902,"userID":"2839845469","nickname":"OpenIM-Kevln","userFaceURL":"https://web.rentsoft.cn/api_enterprise/object/2839845469/image_cropper_CEAE004E-C57C-44F9-956D-968BA0CA0E6B-4437-000002C381F846B4.jpg","handleResult":1,"reqMsg":"11","handledMsg":"reason","reqTime":1692559544673,"handleUserID":"","handledTime":-28800000,"ex":"","attachedInfo":"","joinSource":3,"inviterUserID":""}}
+2024-06-24 10:57:00.778 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_group_sdk.go:66] OnGroupApplicationAdded {"operationID": "1719197813759468572", "CallbackInfo": "{\"groupID\":\"3187706596\",\"groupName\":\"éģčŽ¤įž¤-æĩč¯\",\"notification\":\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\nhttps://github.com/open-kf/rag-gpt\\n\",\"introduction\":\"\",\"groupFaceURL\":\"\",\"createTime\":1692559307052,\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"ownerUserID\":\"7497605401\",\"memberCount\":3902,\"userID\":\"2839845469\",\"nickname\":\"OpenIM-Kevln\",\"userFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2839845469/image_cropper_CEAE004E-C57C-44F9-956D-968BA0CA0E6B-4437-000002C381F846B4.jpg\",\"handleResult\":1,\"reqMsg\":\"11\",\"handledMsg\":\"reason\",\"reqTime\":1692559544673,\"handleUserID\":\"\",\"handledTime\":-28800000,\"ex\":\"\",\"attachedInfo\":\"\",\"joinSource\":3,\"inviterUserID\":\"\"}", "operationID": "1719197821947454449"}
+2024-06-24 10:57:00.778 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalAdminGroupRequest", "server": {"groupID":"3187706596","groupName":"éģčŽ¤įž¤-æĩč¯","notification":"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \nhttps://github.com/open-kf/rag-gpt\n","introduction":"","groupFaceURL":"","createTime":1692559307052,"status":0,"creatorUserID":"7009965934","groupType":2,"ownerUserID":"7497605401","memberCount":3902,"userID":"2882899447","nickname":"OpenIM-blooming","userFaceURL":"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp","handleResult":1,"reqMsg":"","handledMsg":"reason","reqTime":1692563625747,"handleUserID":"","handledTime":-28800000,"ex":"","attachedInfo":"","joinSource":3,"inviterUserID":""}}
+2024-06-24 10:57:00.781 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_group_sdk.go:66] OnGroupApplicationAdded {"operationID": "1719197813759468572", "CallbackInfo": "{\"groupID\":\"3187706596\",\"groupName\":\"éģčŽ¤įž¤-æĩč¯\",\"notification\":\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\nhttps://github.com/open-kf/rag-gpt\\n\",\"introduction\":\"\",\"groupFaceURL\":\"\",\"createTime\":1692559307052,\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"ownerUserID\":\"7497605401\",\"memberCount\":3902,\"userID\":\"2882899447\",\"nickname\":\"OpenIM-blooming\",\"userFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\",\"handleResult\":1,\"reqMsg\":\"\",\"handledMsg\":\"reason\",\"reqTime\":1692563625747,\"handleUserID\":\"\",\"handledTime\":-28800000,\"ex\":\"\",\"attachedInfo\":\"\",\"joinSource\":3,\"inviterUserID\":\"\"}", "operationID": "1719197821354028808"}
+2024-06-24 10:57:00.782 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalAdminGroupRequest", "server": {"groupID":"3187706596","groupName":"éģčŽ¤įž¤-æĩč¯","notification":"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \nhttps://github.com/open-kf/rag-gpt\n","introduction":"","groupFaceURL":"","createTime":1692559307052,"status":0,"creatorUserID":"7009965934","groupType":2,"ownerUserID":"7497605401","memberCount":3902,"userID":"2890713225","nickname":"chao","userFaceURL":"https://web.rentsoft.cn/api_enterprise/object/2890713225/image_cropper_1715156142003.jpg","handleResult":1,"reqMsg":"","handledMsg":"reason","reqTime":1697009572381,"handleUserID":"","handledTime":0,"ex":"","attachedInfo":"","joinSource":4,"inviterUserID":""}}
+2024-06-24 10:57:00.786 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_group_sdk.go:66] OnGroupApplicationAdded {"operationID": "1719197813759468572", "CallbackInfo": "{\"groupID\":\"3187706596\",\"groupName\":\"éģčŽ¤įž¤-æĩč¯\",\"notification\":\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\nhttps://github.com/open-kf/rag-gpt\\n\",\"introduction\":\"\",\"groupFaceURL\":\"\",\"createTime\":1692559307052,\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"ownerUserID\":\"7497605401\",\"memberCount\":3902,\"userID\":\"2890713225\",\"nickname\":\"chao\",\"userFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2890713225/image_cropper_1715156142003.jpg\",\"handleResult\":1,\"reqMsg\":\"\",\"handledMsg\":\"reason\",\"reqTime\":1697009572381,\"handleUserID\":\"\",\"handledTime\":0,\"ex\":\"\",\"attachedInfo\":\"\",\"joinSource\":4,\"inviterUserID\":\"\"}", "operationID": "1719197823706648244"}
+2024-06-24 10:57:00.787 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalAdminGroupRequest", "server": {"groupID":"3187706596","groupName":"éģčŽ¤įž¤-æĩč¯","notification":"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \nhttps://github.com/open-kf/rag-gpt\n","introduction":"","groupFaceURL":"","createTime":1692559307052,"status":0,"creatorUserID":"7009965934","groupType":2,"ownerUserID":"7497605401","memberCount":3902,"userID":"3418577436","nickname":"OpenIM-skiffer","userFaceURL":"https://web.rentsoft.cn/api_enterprise/object/3418577436/BD14C2C1956AB2E1BD8A9F33E76220BE (1).jpg","handleResult":1,"reqMsg":"11111","handledMsg":"reason","reqTime":1692563853061,"handleUserID":"","handledTime":-28800000,"ex":"","attachedInfo":"","joinSource":3,"inviterUserID":""}}
+2024-06-24 10:57:00.791 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_group_sdk.go:66] OnGroupApplicationAdded {"operationID": "1719197813759468572", "CallbackInfo": "{\"groupID\":\"3187706596\",\"groupName\":\"éģčŽ¤įž¤-æĩč¯\",\"notification\":\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\nhttps://github.com/open-kf/rag-gpt\\n\",\"introduction\":\"\",\"groupFaceURL\":\"\",\"createTime\":1692559307052,\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"ownerUserID\":\"7497605401\",\"memberCount\":3902,\"userID\":\"3418577436\",\"nickname\":\"OpenIM-skiffer\",\"userFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/3418577436/BD14C2C1956AB2E1BD8A9F33E76220BE (1).jpg\",\"handleResult\":1,\"reqMsg\":\"11111\",\"handledMsg\":\"reason\",\"reqTime\":1692563853061,\"handleUserID\":\"\",\"handledTime\":-28800000,\"ex\":\"\",\"attachedInfo\":\"\",\"joinSource\":3,\"inviterUserID\":\"\"}", "operationID": "1719197823106917781"}
+2024-06-24 10:57:00.792 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalAdminGroupRequest", "server": {"groupID":"3187706596","groupName":"éģčŽ¤įž¤-æĩč¯","notification":"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \nhttps://github.com/open-kf/rag-gpt\n","introduction":"","groupFaceURL":"","createTime":1692559307052,"status":0,"creatorUserID":"7009965934","groupType":2,"ownerUserID":"7497605401","memberCount":3902,"userID":"4648916002","nickname":"Sam","userFaceURL":"https://web.rentsoft.cn/api_enterprise/object/4648916002/image_cropper_1707582245462.jpg","handleResult":1,"reqMsg":"įšéäē éåēäēįž¤čđ
","handledMsg":"","reqTime":1707855964450,"handleUserID":"","handledTime":0,"ex":"","attachedInfo":"","joinSource":3,"inviterUserID":""}}
+2024-06-24 10:57:00.796 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_group_sdk.go:66] OnGroupApplicationAdded {"operationID": "1719197813759468572", "CallbackInfo": "{\"groupID\":\"3187706596\",\"groupName\":\"éģčŽ¤įž¤-æĩč¯\",\"notification\":\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\nhttps://github.com/open-kf/rag-gpt\\n\",\"introduction\":\"\",\"groupFaceURL\":\"\",\"createTime\":1692559307052,\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"ownerUserID\":\"7497605401\",\"memberCount\":3902,\"userID\":\"4648916002\",\"nickname\":\"Sam\",\"userFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4648916002/image_cropper_1707582245462.jpg\",\"handleResult\":1,\"reqMsg\":\"įšéäē éåēäēįž¤čđ
\",\"handledMsg\":\"\",\"reqTime\":1707855964450,\"handleUserID\":\"\",\"handledTime\":0,\"ex\":\"\",\"attachedInfo\":\"\",\"joinSource\":3,\"inviterUserID\":\"\"}", "operationID": "1719197821462675123"}
+2024-06-24 10:57:00.797 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalAdminGroupRequest", "server": {"groupID":"3187706596","groupName":"éģčŽ¤įž¤-æĩč¯","notification":"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \nhttps://github.com/open-kf/rag-gpt\n","introduction":"","groupFaceURL":"","createTime":1692559307052,"status":0,"creatorUserID":"7009965934","groupType":2,"ownerUserID":"7497605401","memberCount":3902,"userID":"4911414951","nickname":"OpenimAnd-Jane","userFaceURL":"https://web.rentsoft.cn/api_enterprise/object/4911414951/image_2024-05-06-20-59.111.png","handleResult":1,"reqMsg":"","handledMsg":"","reqTime":1711512980144,"handleUserID":"","handledTime":0,"ex":"","attachedInfo":"","joinSource":2,"inviterUserID":""}}
+2024-06-24 10:57:00.804 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_group_sdk.go:66] OnGroupApplicationAdded {"operationID": "1719197813759468572", "CallbackInfo": "{\"groupID\":\"3187706596\",\"groupName\":\"éģčŽ¤įž¤-æĩč¯\",\"notification\":\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\nhttps://github.com/open-kf/rag-gpt\\n\",\"introduction\":\"\",\"groupFaceURL\":\"\",\"createTime\":1692559307052,\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"ownerUserID\":\"7497605401\",\"memberCount\":3902,\"userID\":\"4911414951\",\"nickname\":\"OpenimAnd-Jane\",\"userFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4911414951/image_2024-05-06-20-59.111.png\",\"handleResult\":1,\"reqMsg\":\"\",\"handledMsg\":\"\",\"reqTime\":1711512980144,\"handleUserID\":\"\",\"handledTime\":0,\"ex\":\"\",\"attachedInfo\":\"\",\"joinSource\":2,\"inviterUserID\":\"\"}", "operationID": "1719197823560251981"}
+2024-06-24 10:57:00.805 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalAdminGroupRequest", "server": {"groupID":"3187706596","groupName":"éģčŽ¤įž¤-æĩč¯","notification":"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \nhttps://github.com/open-kf/rag-gpt\n","introduction":"","groupFaceURL":"","createTime":1692559307052,"status":0,"creatorUserID":"7009965934","groupType":2,"ownerUserID":"7497605401","memberCount":3902,"userID":"5240408296","nickname":"fff","userFaceURL":"","handleResult":1,"reqMsg":"21","handledMsg":"","reqTime":1713281978316,"handleUserID":"","handledTime":0,"ex":"","attachedInfo":"","joinSource":3,"inviterUserID":""}}
+2024-06-24 10:57:00.810 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_group_sdk.go:66] OnGroupApplicationAdded {"operationID": "1719197813759468572", "CallbackInfo": "{\"groupID\":\"3187706596\",\"groupName\":\"éģčŽ¤įž¤-æĩč¯\",\"notification\":\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\nhttps://github.com/open-kf/rag-gpt\\n\",\"introduction\":\"\",\"groupFaceURL\":\"\",\"createTime\":1692559307052,\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"ownerUserID\":\"7497605401\",\"memberCount\":3902,\"userID\":\"5240408296\",\"nickname\":\"fff\",\"userFaceURL\":\"\",\"handleResult\":1,\"reqMsg\":\"21\",\"handledMsg\":\"\",\"reqTime\":1713281978316,\"handleUserID\":\"\",\"handledTime\":0,\"ex\":\"\",\"attachedInfo\":\"\",\"joinSource\":3,\"inviterUserID\":\"\"}", "operationID": "1719197822226118603"}
+2024-06-24 10:57:00.810 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalAdminGroupRequest", "server": {"groupID":"3187706596","groupName":"éģčŽ¤įž¤-æĩč¯","notification":"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \nhttps://github.com/open-kf/rag-gpt\n","introduction":"","groupFaceURL":"","createTime":1692559307052,"status":0,"creatorUserID":"7009965934","groupType":2,"ownerUserID":"7497605401","memberCount":3902,"userID":"5349221317","nickname":"ellan_ios","userFaceURL":"https://web.rentsoft.cn/api_enterprise/object/5349221317/image_2023-08-29-24-39.833.png","handleResult":1,"reqMsg":"ios","handledMsg":"","reqTime":1693265116618,"handleUserID":"","handledTime":-28800000,"ex":"","attachedInfo":"","joinSource":3,"inviterUserID":""}}
+2024-06-24 10:57:00.816 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_group_sdk.go:66] OnGroupApplicationAdded {"operationID": "1719197813759468572", "CallbackInfo": "{\"groupID\":\"3187706596\",\"groupName\":\"éģčŽ¤įž¤-æĩč¯\",\"notification\":\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\nhttps://github.com/open-kf/rag-gpt\\n\",\"introduction\":\"\",\"groupFaceURL\":\"\",\"createTime\":1692559307052,\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"ownerUserID\":\"7497605401\",\"memberCount\":3902,\"userID\":\"5349221317\",\"nickname\":\"ellan_ios\",\"userFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5349221317/image_2023-08-29-24-39.833.png\",\"handleResult\":1,\"reqMsg\":\"ios\",\"handledMsg\":\"\",\"reqTime\":1693265116618,\"handleUserID\":\"\",\"handledTime\":-28800000,\"ex\":\"\",\"attachedInfo\":\"\",\"joinSource\":3,\"inviterUserID\":\"\"}", "operationID": "1719197823671970904"}
+2024-06-24 10:57:00.817 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalAdminGroupRequest", "server": {"groupID":"3187706596","groupName":"éģčŽ¤įž¤-æĩč¯","notification":"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \nhttps://github.com/open-kf/rag-gpt\n","introduction":"","groupFaceURL":"","createTime":1692559307052,"status":0,"creatorUserID":"7009965934","groupType":2,"ownerUserID":"7497605401","memberCount":3902,"userID":"6105455334","nickname":"2234","userFaceURL":"http://14.29.213.197:50002/object/6105455334/image_cropper_6B14D589-3B22-4F83-B6A0-33FEDAC33240-337-0000000E6EB9445B.jpg","handleResult":1,"reqMsg":"","handledMsg":"","reqTime":1692559496731,"handleUserID":"","handledTime":-28800000,"ex":"","attachedInfo":"","joinSource":3,"inviterUserID":""}}
+2024-06-24 10:57:00.824 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_group_sdk.go:66] OnGroupApplicationAdded {"operationID": "1719197813759468572", "CallbackInfo": "{\"groupID\":\"3187706596\",\"groupName\":\"éģčŽ¤įž¤-æĩč¯\",\"notification\":\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\nhttps://github.com/open-kf/rag-gpt\\n\",\"introduction\":\"\",\"groupFaceURL\":\"\",\"createTime\":1692559307052,\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"ownerUserID\":\"7497605401\",\"memberCount\":3902,\"userID\":\"6105455334\",\"nickname\":\"2234\",\"userFaceURL\":\"http://14.29.213.197:50002/object/6105455334/image_cropper_6B14D589-3B22-4F83-B6A0-33FEDAC33240-337-0000000E6EB9445B.jpg\",\"handleResult\":1,\"reqMsg\":\"\",\"handledMsg\":\"\",\"reqTime\":1692559496731,\"handleUserID\":\"\",\"handledTime\":-28800000,\"ex\":\"\",\"attachedInfo\":\"\",\"joinSource\":3,\"inviterUserID\":\"\"}", "operationID": "1719197822571934445"}
+2024-06-24 10:57:00.825 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalAdminGroupRequest", "server": {"groupID":"3187706596","groupName":"éģčŽ¤įž¤-æĩč¯","notification":"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \nhttps://github.com/open-kf/rag-gpt\n","introduction":"","groupFaceURL":"","createTime":1692559307052,"status":0,"creatorUserID":"7009965934","groupType":2,"ownerUserID":"7497605401","memberCount":3902,"userID":"6204547412","nickname":"Martin","userFaceURL":"https://web.rentsoft.cn/api_enterprise/object/6204547412/Snipaste_2021-09-23_18-29-58.webp","handleResult":1,"reqMsg":"æĩč¯","handledMsg":"","reqTime":1706236471823,"handleUserID":"","handledTime":0,"ex":"","attachedInfo":"","joinSource":3,"inviterUserID":""}}
+2024-06-24 10:57:00.829 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_group_sdk.go:66] OnGroupApplicationAdded {"operationID": "1719197813759468572", "CallbackInfo": "{\"groupID\":\"3187706596\",\"groupName\":\"éģčŽ¤įž¤-æĩč¯\",\"notification\":\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\nhttps://github.com/open-kf/rag-gpt\\n\",\"introduction\":\"\",\"groupFaceURL\":\"\",\"createTime\":1692559307052,\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"ownerUserID\":\"7497605401\",\"memberCount\":3902,\"userID\":\"6204547412\",\"nickname\":\"Martin\",\"userFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/6204547412/Snipaste_2021-09-23_18-29-58.webp\",\"handleResult\":1,\"reqMsg\":\"æĩč¯\",\"handledMsg\":\"\",\"reqTime\":1706236471823,\"handleUserID\":\"\",\"handledTime\":0,\"ex\":\"\\u003cundefined\\u003e\",\"attachedInfo\":\"\",\"joinSource\":3,\"inviterUserID\":\"\"}", "operationID": "1719197824602787672"}
+2024-06-24 10:57:00.830 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalAdminGroupRequest", "server": {"groupID":"3187706596","groupName":"éģčŽ¤įž¤-æĩč¯","notification":"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \nhttps://github.com/open-kf/rag-gpt\n","introduction":"","groupFaceURL":"","createTime":1692559307052,"status":0,"creatorUserID":"7009965934","groupType":2,"ownerUserID":"7497605401","memberCount":3902,"userID":"8689302929","nickname":"kernal","userFaceURL":"","handleResult":1,"reqMsg":"","handledMsg":"reason","reqTime":1692571441411,"handleUserID":"","handledTime":-28800000,"ex":"","attachedInfo":"","joinSource":4,"inviterUserID":""}}
+2024-06-24 10:57:00.834 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_group_sdk.go:66] OnGroupApplicationAdded {"operationID": "1719197813759468572", "CallbackInfo": "{\"groupID\":\"3187706596\",\"groupName\":\"éģčŽ¤įž¤-æĩč¯\",\"notification\":\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\nhttps://github.com/open-kf/rag-gpt\\n\",\"introduction\":\"\",\"groupFaceURL\":\"\",\"createTime\":1692559307052,\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"ownerUserID\":\"7497605401\",\"memberCount\":3902,\"userID\":\"8689302929\",\"nickname\":\"kernal\",\"userFaceURL\":\"\",\"handleResult\":1,\"reqMsg\":\"\",\"handledMsg\":\"reason\",\"reqTime\":1692571441411,\"handleUserID\":\"\",\"handledTime\":-28800000,\"ex\":\"\",\"attachedInfo\":\"\",\"joinSource\":4,\"inviterUserID\":\"\"}", "operationID": "1719197821313502107"}
+2024-06-24 10:57:00.834 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalAdminGroupRequest", "server": {"groupID":"3187706596","groupName":"éģčŽ¤įž¤-æĩč¯","notification":"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \nhttps://github.com/open-kf/rag-gpt\n","introduction":"","groupFaceURL":"","createTime":1692559307052,"status":0,"creatorUserID":"7009965934","groupType":2,"ownerUserID":"7497605401","memberCount":3902,"userID":"8812224365","nickname":"tests1","userFaceURL":"","handleResult":1,"reqMsg":"","handledMsg":"","reqTime":1716343500427,"handleUserID":"","handledTime":0,"ex":"","attachedInfo":"","joinSource":3,"inviterUserID":""}}
+2024-06-24 10:57:00.838 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_group_sdk.go:66] OnGroupApplicationAdded {"operationID": "1719197813759468572", "CallbackInfo": "{\"groupID\":\"3187706596\",\"groupName\":\"éģčŽ¤įž¤-æĩč¯\",\"notification\":\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\nhttps://github.com/open-kf/rag-gpt\\n\",\"introduction\":\"\",\"groupFaceURL\":\"\",\"createTime\":1692559307052,\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"ownerUserID\":\"7497605401\",\"memberCount\":3902,\"userID\":\"8812224365\",\"nickname\":\"tests1\",\"userFaceURL\":\"\",\"handleResult\":1,\"reqMsg\":\"\",\"handledMsg\":\"\",\"reqTime\":1716343500427,\"handleUserID\":\"\",\"handledTime\":0,\"ex\":\"\",\"attachedInfo\":\"\",\"joinSource\":3,\"inviterUserID\":\"\"}", "operationID": "1719197821924548858"}
+2024-06-24 10:57:00.839 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalAdminGroupRequest", "server": {"groupID":"3187706596","groupName":"éģčŽ¤įž¤-æĩč¯","notification":"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \nhttps://github.com/open-kf/rag-gpt\n","introduction":"","groupFaceURL":"","createTime":1692559307052,"status":0,"creatorUserID":"7009965934","groupType":2,"ownerUserID":"7497605401","memberCount":3902,"userID":"8818424284","nickname":"æ","userFaceURL":"","handleResult":1,"reqMsg":"111","handledMsg":"","reqTime":1708920583673,"handleUserID":"","handledTime":0,"ex":"","attachedInfo":"","joinSource":3,"inviterUserID":""}}
+2024-06-24 10:57:00.843 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_group_sdk.go:66] OnGroupApplicationAdded {"operationID": "1719197813759468572", "CallbackInfo": "{\"groupID\":\"3187706596\",\"groupName\":\"éģčŽ¤įž¤-æĩč¯\",\"notification\":\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\nhttps://github.com/open-kf/rag-gpt\\n\",\"introduction\":\"\",\"groupFaceURL\":\"\",\"createTime\":1692559307052,\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"ownerUserID\":\"7497605401\",\"memberCount\":3902,\"userID\":\"8818424284\",\"nickname\":\"æ\",\"userFaceURL\":\"\",\"handleResult\":1,\"reqMsg\":\"111\",\"handledMsg\":\"\",\"reqTime\":1708920583673,\"handleUserID\":\"\",\"handledTime\":0,\"ex\":\"\",\"attachedInfo\":\"\",\"joinSource\":3,\"inviterUserID\":\"\"}", "operationID": "1719197821711972739"}
+2024-06-24 10:57:00.845 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalAdminGroupRequest", "server": {"groupID":"3187706596","groupName":"éģčŽ¤įž¤-æĩč¯","notification":"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \nhttps://github.com/open-kf/rag-gpt\n","introduction":"","groupFaceURL":"","createTime":1692559307052,"status":0,"creatorUserID":"7009965934","groupType":2,"ownerUserID":"7497605401","memberCount":3902,"userID":"8879166186","nickname":"PwJane","userFaceURL":"http://14.29.213.197:50002/object/8879166186/storage/emulated/0/Android/data/io.openim.android.demo/cache/1715072796388/1715072794908.jpg","handleResult":1,"reqMsg":"","handledMsg":"","reqTime":1710749868591,"handleUserID":"","handledTime":0,"ex":"","attachedInfo":"","joinSource":3,"inviterUserID":""}}
+2024-06-24 10:57:00.849 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_group_sdk.go:66] OnGroupApplicationAdded {"operationID": "1719197813759468572", "CallbackInfo": "{\"groupID\":\"3187706596\",\"groupName\":\"éģčŽ¤įž¤-æĩč¯\",\"notification\":\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\nhttps://github.com/open-kf/rag-gpt\\n\",\"introduction\":\"\",\"groupFaceURL\":\"\",\"createTime\":1692559307052,\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"ownerUserID\":\"7497605401\",\"memberCount\":3902,\"userID\":\"8879166186\",\"nickname\":\"PwJane\",\"userFaceURL\":\"http://14.29.213.197:50002/object/8879166186/storage/emulated/0/Android/data/io.openim.android.demo/cache/1715072796388/1715072794908.jpg\",\"handleResult\":1,\"reqMsg\":\"\",\"handledMsg\":\"\",\"reqTime\":1710749868591,\"handleUserID\":\"\",\"handledTime\":0,\"ex\":\"\",\"attachedInfo\":\"\",\"joinSource\":3,\"inviterUserID\":\"\"}", "operationID": "1719197823039153473"}
+2024-06-24 10:57:00.850 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalAdminGroupRequest", "server": {"groupID":"3187706596","groupName":"éģčŽ¤įž¤-æĩč¯","notification":"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \nhttps://github.com/open-kf/rag-gpt\n","introduction":"","groupFaceURL":"","createTime":1692559307052,"status":0,"creatorUserID":"7009965934","groupType":2,"ownerUserID":"7497605401","memberCount":3902,"userID":"8910288550","nickname":"holiday","userFaceURL":"","handleResult":1,"reqMsg":"1","handledMsg":"","reqTime":1692559525704,"handleUserID":"","handledTime":-28800000,"ex":"","attachedInfo":"","joinSource":3,"inviterUserID":""}}
+2024-06-24 10:57:00.854 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_group_sdk.go:66] OnGroupApplicationAdded {"operationID": "1719197813759468572", "CallbackInfo": "{\"groupID\":\"3187706596\",\"groupName\":\"éģčŽ¤įž¤-æĩč¯\",\"notification\":\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\nhttps://github.com/open-kf/rag-gpt\\n\",\"introduction\":\"\",\"groupFaceURL\":\"\",\"createTime\":1692559307052,\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"ownerUserID\":\"7497605401\",\"memberCount\":3902,\"userID\":\"8910288550\",\"nickname\":\"holiday\",\"userFaceURL\":\"\",\"handleResult\":1,\"reqMsg\":\"1\",\"handledMsg\":\"\",\"reqTime\":1692559525704,\"handleUserID\":\"\",\"handledTime\":-28800000,\"ex\":\"\",\"attachedInfo\":\"\",\"joinSource\":3,\"inviterUserID\":\"\"}", "operationID": "1719197822102567080"}
+2024-06-24 10:57:00.855 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalAdminGroupRequest", "server": {"groupID":"3187706596","groupName":"éģčŽ¤įž¤-æĩč¯","notification":"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \nhttps://github.com/open-kf/rag-gpt\n","introduction":"","groupFaceURL":"","createTime":1692559307052,"status":0,"creatorUserID":"7009965934","groupType":2,"ownerUserID":"7497605401","memberCount":3902,"userID":"9749333133","nickname":"yff","userFaceURL":"","handleResult":1,"reqMsg":"","handledMsg":"reason","reqTime":1692559723919,"handleUserID":"","handledTime":-28800000,"ex":"","attachedInfo":"","joinSource":3,"inviterUserID":""}}
+2024-06-24 10:57:00.860 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_group_sdk.go:66] OnGroupApplicationAdded {"operationID": "1719197813759468572", "CallbackInfo": "{\"groupID\":\"3187706596\",\"groupName\":\"éģčŽ¤įž¤-æĩč¯\",\"notification\":\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\nhttps://github.com/open-kf/rag-gpt\\n\",\"introduction\":\"\",\"groupFaceURL\":\"\",\"createTime\":1692559307052,\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"ownerUserID\":\"7497605401\",\"memberCount\":3902,\"userID\":\"9749333133\",\"nickname\":\"yff\",\"userFaceURL\":\"\",\"handleResult\":1,\"reqMsg\":\"\",\"handledMsg\":\"reason\",\"reqTime\":1692559723919,\"handleUserID\":\"\",\"handledTime\":-28800000,\"ex\":\"\",\"attachedInfo\":\"\",\"joinSource\":3,\"inviterUserID\":\"\"}", "operationID": "1719197821748888322"}
+2024-06-24 10:57:00.861 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalAdminGroupRequest", "server": {"groupID":"324253771","groupName":"OpenIMå
é¨ä礿ĩįž¤","notification":"åäŊ 卿Ĩ 6įšåŧäŧ","introduction":"","groupFaceURL":"","createTime":1693184277225,"status":0,"creatorUserID":"7009965934","groupType":2,"ownerUserID":"1695766238","memberCount":14,"userID":"2882899447","nickname":"OpenIM-blooming","userFaceURL":"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp","handleResult":1,"reqMsg":"321","handledMsg":"","reqTime":1693184446232,"handleUserID":"","handledTime":-28800000,"ex":"","attachedInfo":"","joinSource":3,"inviterUserID":""}}
+2024-06-24 10:57:00.865 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [open_im_sdk_callback/callback_go_sdk.go:46] OnFriendApplicationAdded {"friendApplication": {"fromUserID":"6787283652","fromNickname":"blooming3","fromFaceURL":"http://14.29.213.197:50002/object/6787283652/įģæŋ.png","toUserID":"1695766238","toNickname":"OpenIM-Gordon","toFaceURL":"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png","handleResult":1,"reqMsg":"aaa","createTime":1691732441129,"handlerUserID":"1695766238","handleMsg":"","handleTime":1694650113246,"ex":"","attachedInfo":""}}
+2024-06-24 10:57:00.865 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_friend_sdk.go:751] OnFriendApplicationAdded {"operationID": "1719197813759468572", "CallbackInfo": "{\"fromUserID\":\"6787283652\",\"fromNickname\":\"blooming3\",\"fromFaceURL\":\"http://14.29.213.197:50002/object/6787283652/įģæŋ.png\",\"toUserID\":\"1695766238\",\"toNickname\":\"OpenIM-Gordon\",\"toFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"handleResult\":1,\"reqMsg\":\"aaa\",\"createTime\":1691732441129,\"handlerUserID\":\"1695766238\",\"handleMsg\":\"\",\"handleTime\":1694650113246,\"ex\":\"\",\"attachedInfo\":\"\"}"}
+2024-06-24 10:57:00.866 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalFriendRequest", "server": {"fromUserID":"7009965934","fromNickname":"đâË¡Íāŧ¡ÍË*","fromFaceURL":"https://web.rentsoft.cn/api_enterprise/object/7009965934/image_cropper_1697097350170.jpg","toUserID":"1695766238","toNickname":"OpenIM-Gordon","toFaceURL":"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png","handleResult":1,"reqMsg":"11","createTime":1693944325842,"handlerUserID":"1695766238","handleMsg":"","handleTime":1694650109666,"ex":"","attachedInfo":""}}
+2024-06-24 10:57:00.870 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [open_im_sdk_callback/callback_go_sdk.go:46] OnFriendApplicationAdded {"friendApplication": {"fromUserID":"7009965934","fromNickname":"đâË¡Íāŧ¡ÍË*","fromFaceURL":"https://web.rentsoft.cn/api_enterprise/object/7009965934/image_cropper_1697097350170.jpg","toUserID":"1695766238","toNickname":"OpenIM-Gordon","toFaceURL":"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png","handleResult":1,"reqMsg":"11","createTime":1693944325842,"handlerUserID":"1695766238","handleMsg":"","handleTime":1694650109666,"ex":"","attachedInfo":""}}
+2024-06-24 10:57:00.870 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_friend_sdk.go:751] OnFriendApplicationAdded {"operationID": "1719197813759468572", "CallbackInfo": "{\"fromUserID\":\"7009965934\",\"fromNickname\":\"đâË¡Íāŧ¡ÍË*\",\"fromFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7009965934/image_cropper_1697097350170.jpg\",\"toUserID\":\"1695766238\",\"toNickname\":\"OpenIM-Gordon\",\"toFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"handleResult\":1,\"reqMsg\":\"11\",\"createTime\":1693944325842,\"handlerUserID\":\"1695766238\",\"handleMsg\":\"\",\"handleTime\":1694650109666,\"ex\":\"\",\"attachedInfo\":\"\"}"}
+2024-06-24 10:57:00.871 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalFriendRequest", "server": {"fromUserID":"8772228740","fromNickname":"įŋå","fromFaceURL":"https://web.rentsoft.cn/api_enterprise/object/8772228740/icon.png","toUserID":"1695766238","toNickname":"OpenIM-Gordon","toFaceURL":"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png","handleResult":1,"reqMsg":"aaa","createTime":1691643996752,"handlerUserID":"1695766238","handleMsg":"","handleTime":1691644038734,"ex":"","attachedInfo":""}}
+2024-06-24 10:57:00.874 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [open_im_sdk_callback/callback_go_sdk.go:46] OnFriendApplicationAdded {"friendApplication": {"fromUserID":"8772228740","fromNickname":"įŋå","fromFaceURL":"https://web.rentsoft.cn/api_enterprise/object/8772228740/icon.png","toUserID":"1695766238","toNickname":"OpenIM-Gordon","toFaceURL":"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png","handleResult":1,"reqMsg":"aaa","createTime":1691643996752,"handlerUserID":"1695766238","handleMsg":"","handleTime":1691644038734,"ex":"","attachedInfo":""}}
+2024-06-24 10:57:00.875 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_friend_sdk.go:751] OnFriendApplicationAdded {"operationID": "1719197813759468572", "CallbackInfo": "{\"fromUserID\":\"8772228740\",\"fromNickname\":\"įŋå\",\"fromFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/8772228740/icon.png\",\"toUserID\":\"1695766238\",\"toNickname\":\"OpenIM-Gordon\",\"toFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"handleResult\":1,\"reqMsg\":\"aaa\",\"createTime\":1691643996752,\"handlerUserID\":\"1695766238\",\"handleMsg\":\"\",\"handleTime\":1691644038734,\"ex\":\"\",\"attachedInfo\":\"\"}"}
+2024-06-24 10:57:00.875 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalFriendRequest", "server": {"fromUserID":"9447003536","fromNickname":"bb123","fromFaceURL":"https://web.rentsoft.cn/api_enterprise/object/9447003536/avatar.webp","toUserID":"1695766238","toNickname":"OpenIM-Gordon","toFaceURL":"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png","handleResult":1,"reqMsg":"åĸåĸåĸ","createTime":1693017395271,"handlerUserID":"1695766238","handleMsg":"","handleTime":1693017408436,"ex":"","attachedInfo":""}}
+2024-06-24 10:57:00.880 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [open_im_sdk_callback/callback_go_sdk.go:46] OnFriendApplicationAdded {"friendApplication": {"fromUserID":"9447003536","fromNickname":"bb123","fromFaceURL":"https://web.rentsoft.cn/api_enterprise/object/9447003536/avatar.webp","toUserID":"1695766238","toNickname":"OpenIM-Gordon","toFaceURL":"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png","handleResult":1,"reqMsg":"åĸåĸåĸ","createTime":1693017395271,"handlerUserID":"1695766238","handleMsg":"","handleTime":1693017408436,"ex":"","attachedInfo":""}}
+2024-06-24 10:57:00.880 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_friend_sdk.go:751] OnFriendApplicationAdded {"operationID": "1719197813759468572", "CallbackInfo": "{\"fromUserID\":\"9447003536\",\"fromNickname\":\"bb123\",\"fromFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/9447003536/avatar.webp\",\"toUserID\":\"1695766238\",\"toNickname\":\"OpenIM-Gordon\",\"toFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"handleResult\":1,\"reqMsg\":\"åĸåĸåĸ\",\"createTime\":1693017395271,\"handlerUserID\":\"1695766238\",\"handleMsg\":\"\",\"handleTime\":1693017408436,\"ex\":\"\",\"attachedInfo\":\"\"}"}
+2024-06-24 10:57:00.905 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalFriendRequest", "server": {"fromUserID":"9859217551","fromNickname":"chao","fromFaceURL":"","toUserID":"1695766238","toNickname":"OpenIM-Gordon","toFaceURL":"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png","handleResult":1,"reqMsg":"","createTime":1691551172443,"handlerUserID":"9859217551","handleMsg":"","handleTime":1691551375888,"ex":"","attachedInfo":""}}
+2024-06-24 10:57:00.911 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_group_sdk.go:66] OnGroupApplicationAdded {"operationID": "1719197813759468572", "CallbackInfo": "{\"groupID\":\"324253771\",\"groupName\":\"OpenIMå
é¨ä礿ĩįž¤\",\"notification\":\"åäŊ 卿Ĩ 6įšåŧäŧ\",\"introduction\":\"\",\"groupFaceURL\":\"\",\"createTime\":1693184277225,\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"ownerUserID\":\"1695766238\",\"memberCount\":14,\"userID\":\"2882899447\",\"nickname\":\"OpenIM-blooming\",\"userFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\",\"handleResult\":1,\"reqMsg\":\"321\",\"handledMsg\":\"\",\"reqTime\":1693184446232,\"handleUserID\":\"\",\"handledTime\":-28800000,\"ex\":\"\",\"attachedInfo\":\"\",\"joinSource\":3,\"inviterUserID\":\"\"}", "operationID": "1719197823432671762"}
+2024-06-24 10:57:00.912 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalAdminGroupRequest", "server": {"groupID":"324253771","groupName":"OpenIMå
é¨ä礿ĩįž¤","notification":"åäŊ 卿Ĩ 6įšåŧäŧ","introduction":"","groupFaceURL":"","createTime":1693184277225,"status":0,"creatorUserID":"7009965934","groupType":2,"ownerUserID":"1695766238","memberCount":14,"userID":"4911414951","nickname":"OpenimAnd-Jane","userFaceURL":"https://web.rentsoft.cn/api_enterprise/object/4911414951/image_2024-05-06-20-59.111.png","handleResult":1,"reqMsg":"","handledMsg":"","reqTime":1711520880481,"handleUserID":"","handledTime":0,"ex":"","attachedInfo":"","joinSource":2,"inviterUserID":""}}
+2024-06-24 10:57:00.917 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_group_sdk.go:66] OnGroupApplicationAdded {"operationID": "1719197813759468572", "CallbackInfo": "{\"groupID\":\"324253771\",\"groupName\":\"OpenIMå
é¨ä礿ĩįž¤\",\"notification\":\"åäŊ 卿Ĩ 6įšåŧäŧ\",\"introduction\":\"\",\"groupFaceURL\":\"\",\"createTime\":1693184277225,\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"ownerUserID\":\"1695766238\",\"memberCount\":14,\"userID\":\"4911414951\",\"nickname\":\"OpenimAnd-Jane\",\"userFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4911414951/image_2024-05-06-20-59.111.png\",\"handleResult\":1,\"reqMsg\":\"\",\"handledMsg\":\"\",\"reqTime\":1711520880481,\"handleUserID\":\"\",\"handledTime\":0,\"ex\":\"\",\"attachedInfo\":\"\",\"joinSource\":2,\"inviterUserID\":\"\"}", "operationID": "1719197824028318687"}
+2024-06-24 10:57:00.918 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalAdminGroupRequest", "server": {"groupID":"3926645279","groupName":"yo123","notification":"new notification","introduction":"new notification","groupFaceURL":"faceURL url","createTime":1718952270504,"status":0,"creatorUserID":"","groupType":2,"ownerUserID":"1695766238","memberCount":2,"userID":"2725451243","nickname":"OpenIM-Andrew123","userFaceURL":"","handleResult":1,"reqMsg":"req msg join group","handledMsg":"","reqTime":1718958924373,"handleUserID":"","handledTime":0,"ex":"","attachedInfo":"","joinSource":3,"inviterUserID":""}}
+2024-06-24 10:57:00.923 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_group_sdk.go:66] OnGroupApplicationAdded {"operationID": "1719197813759468572", "CallbackInfo": "{\"groupID\":\"3926645279\",\"groupName\":\"yo123\",\"notification\":\"new notification\",\"introduction\":\"new notification\",\"groupFaceURL\":\"faceURL url\",\"createTime\":1718952270504,\"status\":0,\"creatorUserID\":\"\",\"groupType\":2,\"ownerUserID\":\"1695766238\",\"memberCount\":2,\"userID\":\"2725451243\",\"nickname\":\"OpenIM-Andrew123\",\"userFaceURL\":\"\",\"handleResult\":1,\"reqMsg\":\"req msg join group\",\"handledMsg\":\"\",\"reqTime\":1718958924373,\"handleUserID\":\"\",\"handledTime\":0,\"ex\":\"\",\"attachedInfo\":\"\",\"joinSource\":3,\"inviterUserID\":\"\"}", "operationID": "1719197823251254064"}
+2024-06-24 10:57:00.924 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:309] sync delete {"operationID": "1719197817604066041", "type": "model_struct.LocalAdminGroupRequest", "localMapError": "json: unsupported type: map[[2]string]*model_struct.LocalAdminGroupRequest"}
+2024-06-24 10:57:00.925 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:240] sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalAdminGroupRequest"}
+2024-06-24 10:57:00.943 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [open_im_sdk_callback/callback_go_sdk.go:46] OnFriendApplicationAdded {"friendApplication": {"fromUserID":"9859217551","fromNickname":"chao","fromFaceURL":"","toUserID":"1695766238","toNickname":"OpenIM-Gordon","toFaceURL":"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png","handleResult":1,"reqMsg":"","createTime":1691551172443,"handlerUserID":"9859217551","handleMsg":"","handleTime":1691551375888,"ex":"","attachedInfo":""}}
+2024-06-24 10:57:00.943 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_friend_sdk.go:751] OnFriendApplicationAdded {"operationID": "1719197813759468572", "CallbackInfo": "{\"fromUserID\":\"9859217551\",\"fromNickname\":\"chao\",\"fromFaceURL\":\"\",\"toUserID\":\"1695766238\",\"toNickname\":\"OpenIM-Gordon\",\"toFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"handleResult\":1,\"reqMsg\":\"\",\"createTime\":1691551172443,\"handlerUserID\":\"9859217551\",\"handleMsg\":\"\",\"handleTime\":1691551375888,\"ex\":\"\",\"attachedInfo\":\"\"}"}
+2024-06-24 10:57:00.944 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalFriendRequest", "server": {"fromUserID":"2839845469","fromNickname":"OpenIM-Kevln","fromFaceURL":"https://web.rentsoft.cn/api_enterprise/object/2839845469/image_cropper_CEAE004E-C57C-44F9-956D-968BA0CA0E6B-4437-000002C381F846B4.jpg","toUserID":"1695766238","toNickname":"OpenIM-Gordon","toFaceURL":"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png","handleResult":1,"reqMsg":"11","createTime":1705046389389,"handlerUserID":"1695766238","handleMsg":"","handleTime":1705046405271,"ex":"","attachedInfo":""}}
+2024-06-24 10:57:00.948 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [open_im_sdk_callback/callback_go_sdk.go:46] OnFriendApplicationAdded {"friendApplication": {"fromUserID":"2839845469","fromNickname":"OpenIM-Kevln","fromFaceURL":"https://web.rentsoft.cn/api_enterprise/object/2839845469/image_cropper_CEAE004E-C57C-44F9-956D-968BA0CA0E6B-4437-000002C381F846B4.jpg","toUserID":"1695766238","toNickname":"OpenIM-Gordon","toFaceURL":"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png","handleResult":1,"reqMsg":"11","createTime":1705046389389,"handlerUserID":"1695766238","handleMsg":"","handleTime":1705046405271,"ex":"","attachedInfo":""}}
+2024-06-24 10:57:00.949 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_friend_sdk.go:751] OnFriendApplicationAdded {"operationID": "1719197813759468572", "CallbackInfo": "{\"fromUserID\":\"2839845469\",\"fromNickname\":\"OpenIM-Kevln\",\"fromFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2839845469/image_cropper_CEAE004E-C57C-44F9-956D-968BA0CA0E6B-4437-000002C381F846B4.jpg\",\"toUserID\":\"1695766238\",\"toNickname\":\"OpenIM-Gordon\",\"toFaceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"handleResult\":1,\"reqMsg\":\"11\",\"createTime\":1705046389389,\"handlerUserID\":\"1695766238\",\"handleMsg\":\"\",\"handleTime\":1705046405271,\"ex\":\"\",\"attachedInfo\":\"\"}"}
+2024-06-24 10:57:00.950 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:309] sync delete {"operationID": "1719197817604066041", "type": "model_struct.LocalFriendRequest", "localMapError": "json: unsupported type: map[[2]string]*model_struct.LocalFriendRequest"}
+2024-06-24 10:57:00.950 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:240] sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalFriendRequest"}
+2024-06-24 10:57:00.988 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_joined_group_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":213,\"groups\":[{\"groupID\":\"3750772487\",\"groupName\":\"\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1114245774\",\"createTime\":1702004434145,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"1114245774\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2479200198\",\"groupName\":\"\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"9735279232\",\"createTime\":1716986650435,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"9735279232\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1529525623\",\"groupName\":\"\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"9735279232\",\"createTime\":1717166453314,\"memberCount\":6,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"9735279232\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"87742245\",\"groupName\":\"\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"9735279232\",\"createTime\":1718072946748,\"memberCount\":8,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"9735279232\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2595610523\",\"groupName\":\"1\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"2391060935\",\"createTime\":1703076800885,\"memberCount\":6,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"2391060935\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2474039382\",\"groupName\":\"1\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1776346921\",\"createTime\":1708585133254,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"1776346921\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2388705044\",\"groupName\":\"1\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4641688133\",\"createTime\":1714113615026,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4641688133\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2527119729\",\"groupName\":\"1\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"2680629439\",\"createTime\":1714381168026,\"memberCount\":12,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"2680629439\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"3693200714\",\"groupName\":\"1\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"2880563506\",\"createTime\":1715500465383,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"2880563506\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1237366857\",\"groupName\":\"11\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7618202429\",\"createTime\":1704362047829,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"7618202429\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"4075238610\",\"groupName\":\"11\",\"notification\":\"1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7516710182\",\"createTime\":1710187495948,\"memberCount\":6,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"7516710182\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1710187769275,\"notificationUserID\":\"7516710182\"},{\"groupID\":\"3759778360\",\"groupName\":\"11\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4911414951\",\"createTime\":1717497676562,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4911414951\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"3727180154\",\"groupName\":\"111\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4293913125\",\"createTime\":1694646670592,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4293913125\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":-28800000,\"notificationUserID\":\"\"},{\"groupID\":\"2864738888\",\"groupName\":\"111\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7009965934\",\"createTime\":1697109175347,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"3703077350\",\"groupName\":\"111\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3963875243\",\"createTime\":1704031400168,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3963875243\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"4070499267\",\"groupName\":\"111\",\"notification\":\"hahahah\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"8518800133\",\"createTime\":1712709369128,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"8518800133\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1712709383757,\"notificationUserID\":\"8518800133\"},{\"groupID\":\"3655346906\",\"groupName\":\"111\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"2365006326\",\"createTime\":1715501281450,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"2365006326\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1633118996\",\"groupName\":\"1111\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"2879577568\",\"createTime\":1704765184732,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"2879577568\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"3327630005\",\"groupName\":\"1111\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"8533102456\",\"createTime\":1708590737607,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"8533102456\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1662278840\",\"groupName\":\"1111\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4950713210\",\"createTime\":1714039865284,\"memberCount\":11,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4950713210\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1671249356\",\"groupName\":\"1111\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4846054480\",\"createTime\":1715219363736,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4846054480\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2942457817\",\"groupName\":\"1111111\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3803355027\",\"createTime\":1717068262327,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3803355027\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"3700863541\",\"groupName\":\"11123\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1829995445\",\"createTime\":1713797111378,\"memberCount\":6,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"1829995445\",\"groupType\":2,\"needVerification\":1,\"lookMemberInfo\":1,\"applyMemberFriend\":1,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"4253925195\",\"groupName\":\"12121\",\"notification\":\"æįąå¤§åŽļ\\nåååå\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7854235526\",\"createTime\":1710236813146,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"7854235526\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1710242816576,\"notificationUserID\":\"7854235526\"},{\"groupID\":\"2806967959\",\"groupName\":\"122212\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1695766238\",\"createTime\":1710484261228,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3420613648\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1738113305\",\"groupName\":\"123\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"2890713225\",\"createTime\":1692838259543,\"memberCount\":9,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"2890713225\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":-28800000,\"notificationUserID\":\"\"},{\"groupID\":\"3069388481\",\"groupName\":\"123\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3838004574\",\"createTime\":1695166738569,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3838004574\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":-28800000,\"notificationUserID\":\"\"},{\"groupID\":\"3269509736\",\"groupName\":\"123\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3879871786\",\"createTime\":1698997349421,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3879871786\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"810698493\",\"groupName\":\"123\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"8039982396\",\"createTime\":1711349404733,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"8039982396\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1177987017\",\"groupName\":\"123123\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1695766238\",\"createTime\":1705046435331,\"memberCount\":1,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"1695766238\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"543925645\",\"groupName\":\"12345\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"2545303424\",\"createTime\":1713322557193,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"2545303424\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1295978993\",\"groupName\":\"12345\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4080264659\",\"createTime\":1718251471418,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4080264659\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1170336331\",\"groupName\":\"2\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4641688133\",\"createTime\":1714113624562,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4641688133\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1597892186\",\"groupName\":\"222\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"2097541846\",\"createTime\":1709005390126,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"2097541846\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2184807685\",\"groupName\":\"222\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4911414951/åąåšæĒåž 2023-11-08 142433.png\",\"ownerUserID\":\"4911414951\",\"createTime\":1717497595335,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4911414951\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1193166060\",\"groupName\":\"22222222222\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7497605401/åąåšæĒåž 2024-04-10 095644 - 坿Ŧ.png\",\"ownerUserID\":\"7497605401\",\"createTime\":1716534979693,\"memberCount\":7,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"7497605401\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1898996710\",\"groupName\":\"2323\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1308526907/kabi.jpg\",\"ownerUserID\":\"1308526907\",\"createTime\":1717071967757,\"memberCount\":7,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"1308526907\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"3227287827\",\"groupName\":\"333\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"8772228740\",\"createTime\":1693592291226,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"8772228740\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":-28800000,\"notificationUserID\":\"\"},{\"groupID\":\"3957246617\",\"groupName\":\"333\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7773809772\",\"createTime\":1706750177981,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"7773809772\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"3560180171\",\"groupName\":\"3345\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4057171904\",\"createTime\":1703513913124,\"memberCount\":2,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4057171904\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"93606743\",\"groupName\":\"444\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7388505150\",\"createTime\":1710774468499,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"7388505150\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"4182703673\",\"groupName\":\"454042\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4824619122\",\"createTime\":1716895462667,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4824619122\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"4092904375\",\"groupName\":\"5688\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1774484110\",\"createTime\":1703232794318,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"1774484110\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"853658007\",\"groupName\":\"666\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"6319015024\",\"createTime\":1704273179302,\"memberCount\":6,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"6319015024\",\"groupType\":2,\"needVerification\":1,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"862487890\",\"groupName\":\"666\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"5669416921\",\"createTime\":1716799878564,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"5669416921\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2670578906\",\"groupName\":\"6666\",\"notification\":\"dsadsdsadsaddsdsdaasddssdsaDSA DSA大æļäģŖ\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1762559417\",\"createTime\":1702954557477,\"memberCount\":19,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"1762559417\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1710240144485,\"notificationUserID\":\"1762559417\"},{\"groupID\":\"2458134291\",\"groupName\":\"9999\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"6923431604\",\"createTime\":1695240253976,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"6923431604\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":-28800000,\"notificationUserID\":\"\"},{\"groupID\":\"582136490\",\"groupName\":\"AT\",\"notification\":\"hhhhk\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4254681784\",\"createTime\":1704855145811,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4254681784\",\"groupType\":2,\"needVerification\":1,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1704855826699,\"notificationUserID\":\"4254681784\"},{\"groupID\":\"1999119891\",\"groupName\":\"Eastãdiaodiaoãasd\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"5410355545\",\"createTime\":1695449665516,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"5410355545\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"192211066\",\"groupName\":\"HJGHYUGUH\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"8054377408\",\"createTime\":1712818885113,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"8054377408\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"3704350375\",\"groupName\":\"Help-user-openim-send-msg\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"5668985363\",\"createTime\":1709185283874,\"memberCount\":9,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"5668985363\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"217468446\",\"groupName\":\"KAU\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1228521294\",\"createTime\":1702341644616,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"1228521294\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":1,\"applyMemberFriend\":1,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1986908192\",\"groupName\":\"OPENIM1111\",\"notification\":\"æ°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"8823387090\",\"createTime\":1708420355229,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"8823387090\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1708420631874,\"notificationUserID\":\"8823387090\"},{\"groupID\":\"4040699454\",\"groupName\":\"OpenIM2ããããããããã\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7009965934\",\"createTime\":1696850155862,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"324253771\",\"groupName\":\"OpenIMå
é¨ä礿ĩįž¤\",\"notification\":\"åäŊ 卿Ĩ 6įšåŧäŧ\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1695766238\",\"createTime\":1693184277225,\"memberCount\":14,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1709889407740,\"notificationUserID\":\"3418577436\"},{\"groupID\":\"995014316\",\"groupName\":\"OpenIMååĄååŽå\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3418577436\",\"createTime\":1697158729338,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3418577436\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"3384390386\",\"groupName\":\"OpenMeetingéĄšįŽæ˛éįž¤\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"8203292432\",\"createTime\":1711331880565,\"memberCount\":10,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"8203292432\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1710171993\",\"groupName\":\"TEST\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"5002491660\",\"createTime\":1716690369550,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"5002491660\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2604460151\",\"groupName\":\"Tesr\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1695766238\",\"createTime\":1691973743203,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"1695766238\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":-28800000,\"notificationUserID\":\"\"},{\"groupID\":\"2625540721\",\"groupName\":\"XXXX\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3340382285\",\"createTime\":1718092503549,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3340382285\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2599904267\",\"groupName\":\"a\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4041344265\",\"createTime\":1704449140096,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4041344265\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"68265665\",\"groupName\":\"a\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"6629808721\",\"createTime\":1715416629462,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"6629808721\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"749544702\",\"groupName\":\"aaaa\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3849018031\",\"createTime\":1695867819801,\"memberCount\":2,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3849018031\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"339303081\",\"groupName\":\"aaaa\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"2879740664\",\"createTime\":1698464544665,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"2879740664\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1577882571\",\"groupName\":\"aaaa\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4364213352\",\"createTime\":1708782292086,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4364213352\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"4045146473\",\"groupName\":\"add\",\"notification\":\"1111\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"8772228740\",\"createTime\":1693593077473,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"8772228740\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1693890035609,\"notificationUserID\":\"8772228740\"},{\"groupID\":\"2958761051\",\"groupName\":\"ai\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3796678904\",\"createTime\":1712470206172,\"memberCount\":7,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3796678904\",\"groupType\":2,\"needVerification\":2,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1393169672\",\"groupName\":\"asdasd\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1050659067\",\"createTime\":1715182015588,\"memberCount\":6,\"ex\":\"\",\"status\":3,\"creatorUserID\":\"1050659067\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"45636129\",\"groupName\":\"asdcsfadfadcsc\",\"notification\":\"äŊ čĒ厞b\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3859571259\",\"createTime\":1714982636137,\"memberCount\":7,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4911414951\",\"groupType\":2,\"needVerification\":1,\"lookMemberInfo\":1,\"applyMemberFriend\":1,\"notificationUpdateTime\":1715582999950,\"notificationUserID\":\"7497605401\"},{\"groupID\":\"518546243\",\"groupName\":\"bb\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"2981246162\",\"createTime\":1710511072820,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"2981246162\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"19439682\",\"groupName\":\"cadįž¤\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"6554716140\",\"createTime\":1702888507885,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"6554716140\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1012900607\",\"groupName\":\"cdaac123\",\"notification\":\"999666112\",\"introduction\":\"\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/8772228740/avatar.jpg\",\"ownerUserID\":\"1029199385\",\"createTime\":1694998142255,\"memberCount\":6,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"8772228740\",\"groupType\":2,\"needVerification\":1,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1708486632018,\"notificationUserID\":\"openIM123456\"},{\"groupID\":\"129612413\",\"groupName\":\"ces\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7854235526\",\"createTime\":1708318649882,\"memberCount\":8,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"7854235526\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"105081877\",\"groupName\":\"d\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"5248385191\",\"createTime\":1710490825413,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"5248385191\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"3417930724\",\"groupName\":\"ddddd\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"2839845469\",\"createTime\":1709890431189,\"memberCount\":9,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"7343731800\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"446768090\",\"groupName\":\"dffg \",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4558664801\",\"createTime\":1713326083446,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4558664801\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2048354932\",\"groupName\":\"dsa\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"2882899447\",\"createTime\":1715689072753,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"2882899447\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1869190487\",\"groupName\":\"dsdadas\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7364897573\",\"createTime\":1715147388153,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"7364897573\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"459143095\",\"groupName\":\"fgg\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4641688133\",\"createTime\":1713349368349,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4641688133\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2904928842\",\"groupName\":\"fhjkld\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"5665605844\",\"createTime\":1711530361142,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"5665605844\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1254300734\",\"groupName\":\"fjh\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4681582191\",\"createTime\":1713582441625,\"memberCount\":9,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4681582191\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"3014735116\",\"groupName\":\"good\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"8834765444\",\"createTime\":1716517624034,\"memberCount\":8,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"8834765444\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1861322715\",\"groupName\":\"great\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"8875139244\",\"createTime\":1701398294965,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"8875139244\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"3590768919\",\"groupName\":\"haihaiæĩč¯\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"9942703170\",\"createTime\":1709629978721,\"memberCount\":3,\"ex\":\"\",\"status\":3,\"creatorUserID\":\"9942703170\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2752799086\",\"groupName\":\"hbn\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1428611256\",\"createTime\":1695169606413,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"1428611256\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":-28800000,\"notificationUserID\":\"\"},{\"groupID\":\"2145904160\",\"groupName\":\"hhhãJane1ãOpenIM-Gordon\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3233270846\",\"createTime\":1716881876626,\"memberCount\":7,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3233270846\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"4094820687\",\"groupName\":\"hhhãOpenIM-GordonãOpenIM-Andrew123\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3233270846\",\"createTime\":1716863196612,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3233270846\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"3896488295\",\"groupName\":\"imæĩč¯\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3862147424\",\"createTime\":1704805511573,\"memberCount\":9,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3862147424\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"773702228\",\"groupName\":\"karl æĩč¯įž¤čåčŊ\",\"notification\":\"æĩ蝿ĩ蝿ĩ蝿ĩč¯\",\"introduction\":\"\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4995366980/image_cropper_1706965486556.jpg\",\"ownerUserID\":\"4995366980\",\"createTime\":1706965447530,\"memberCount\":9,\"ex\":\"\",\"status\":3,\"creatorUserID\":\"4995366980\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":1,\"applyMemberFriend\":0,\"notificationUpdateTime\":1706965512821,\"notificationUserID\":\"4995366980\"},{\"groupID\":\"595536262\",\"groupName\":\"kk\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1801012070\",\"createTime\":1709185662355,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"1801012070\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2677549796\",\"groupName\":\"openimåŽååŧåįž¤\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"5553194662\",\"createTime\":1709186337394,\"memberCount\":9,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"5553194662\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1137299436\",\"groupName\":\"qqqqqqqqqqqqq\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4036830742/æčˇ2.PNG\",\"ownerUserID\":\"4036830742\",\"createTime\":1692815148440,\"memberCount\":6,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4036830742\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":-28800000,\"notificationUserID\":\"\"},{\"groupID\":\"402286284\",\"groupName\":\"qun1\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"5778047866\",\"createTime\":1707207828132,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"5778047866\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"454437308\",\"groupName\":\"qunn\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3767972548\",\"createTime\":1716872782246,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3767972548\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1273621475\",\"groupName\":\"rretrd\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4072022438\",\"createTime\":1718203797458,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4072022438\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"3504722739\",\"groupName\":\"saberãAåĨãååå\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"2905053077\",\"createTime\":1702537175539,\"memberCount\":8,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"2905053077\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1747585985\",\"groupName\":\"sdsdf \",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"9032177660\",\"createTime\":1705976593857,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"9032177660\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2956229812\",\"groupName\":\"skin\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3307929768\",\"createTime\":1709775007934,\"memberCount\":6,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3307929768\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"491010394\",\"groupName\":\"sss\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7024387472\",\"createTime\":1718173203161,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"7024387472\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1268986309\",\"groupName\":\"summer\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3939999665\",\"createTime\":1693513328758,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3939999665\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":-28800000,\"notificationUserID\":\"\"}]}}"}
+2024-06-24 10:57:01.017 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_joined_group_list", "state": "success", "cost time": "421ms"}
+2024-06-24 10:57:01.022 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroup"}
+2024-06-24 10:57:01.023 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_join_group_ids", "body": "{\"idHash\":0,\"userID\":\"1695766238\"}"}
+2024-06-24 10:57:01.322 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_join_group_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":3773777664756782130,\"versionID\":\"6672d39ce27166fe77811692\",\"equal\":false,\"groupIDs\":[\"3750772487\",\"2479200198\",\"1529525623\",\"87742245\",\"2595610523\",\"2474039382\",\"2388705044\",\"2527119729\",\"3693200714\",\"1237366857\",\"4075238610\",\"3759778360\",\"3727180154\",\"2864738888\",\"3703077350\",\"4070499267\",\"3655346906\",\"1633118996\",\"3327630005\",\"1662278840\",\"1671249356\",\"2942457817\",\"3700863541\",\"4253925195\",\"2806967959\",\"1738113305\",\"3069388481\",\"3269509736\",\"810698493\",\"1177987017\",\"543925645\",\"1295978993\",\"1170336331\",\"1597892186\",\"2184807685\",\"1193166060\",\"1898996710\",\"3227287827\",\"3957246617\",\"3560180171\",\"93606743\",\"4182703673\",\"4092904375\",\"853658007\",\"862487890\",\"2670578906\",\"2458134291\",\"582136490\",\"1999119891\",\"192211066\",\"3704350375\",\"217468446\",\"1986908192\",\"4040699454\",\"324253771\",\"995014316\",\"3384390386\",\"1710171993\",\"2604460151\",\"2625540721\",\"2599904267\",\"68265665\",\"749544702\",\"339303081\",\"1577882571\",\"4045146473\",\"2958761051\",\"1393169672\",\"45636129\",\"518546243\",\"19439682\",\"1012900607\",\"129612413\",\"105081877\",\"3417930724\",\"446768090\",\"2048354932\",\"1869190487\",\"459143095\",\"2904928842\",\"1254300734\",\"3014735116\",\"1861322715\",\"3590768919\",\"2752799086\",\"2145904160\",\"4094820687\",\"3896488295\",\"773702228\",\"595536262\",\"2677549796\",\"1137299436\",\"402286284\",\"454437308\",\"1273621475\",\"3504722739\",\"1747585985\",\"2956229812\",\"491010394\",\"1268986309\",\"1181175668\",\"2637047860\",\"1355048295\",\"1765818066\",\"809953832\",\"1062802274\",\"578691343\",\"400360852\",\"3158680188\",\"3489091446\",\"3704855948\",\"2105177423\",\"2563467770\",\"2481127587\",\"104250651\",\"2338903916\",\"499550676\",\"2306232581\",\"3926645279\",\"246329239\",\"3430036352\",\"751776298\",\"1161663520\",\"4261141770\",\"4039998258\",\"3438817431\",\"1348263733\",\"3266228942\",\"1780190492\",\"1438747528\",\"2866659389\",\"2337816601\",\"2388518829\",\"981246811\",\"2438710897\",\"4018907989\",\"549432318\",\"3523019119\",\"2833552317\",\"3845608473\",\"3636664095\",\"3652923926\",\"1785857431\",\"1708658560\",\"1430191635\",\"3416772962\",\"489539319\",\"2264748085\",\"2156407784\",\"899043316\",\"1196923925\",\"630329009\",\"2738270862\",\"3953092196\",\"1533379639\",\"572273208\",\"359361212\",\"578214705\",\"22125508\",\"3927081813\",\"778158059\",\"2300748497\",\"1209319003\",\"2276584901\",\"2825124274\",\"3253663629\",\"2103648114\",\"2386261452\",\"4265149432\",\"2377136176\",\"591858077\",\"2328086176\",\"3134715281\",\"471852741\",\"1307714144\",\"1171979965\",\"3276743019\",\"1845606214\",\"1566911564\",\"28456085\",\"3634650086\",\"4089861802\",\"3366790648\",\"2991351838\",\"1397022909\",\"976556305\",\"3369946551\",\"1162405312\",\"547125611\",\"161019322\",\"405867780\",\"1639333330\",\"430333127\",\"1687917547\",\"2836218947\",\"1661305134\",\"692807091\",\"831402134\",\"1851829045\",\"2783925829\",\"2417467281\",\"3295574908\",\"2712739968\",\"261042702\",\"841314012\",\"84614448\",\"2600924814\",\"2839621663\",\"2287005875\",\"2314844644\",\"2715338888\",\"3187706596\",\"4227056539\"]}}"}
+2024-06-24 10:57:01.330 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_join_group_ids", "state": "success", "cost time": "307ms"}
+2024-06-24 10:57:01.365 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_incremental_group_member_batch", "body": "{\"user_id\":\"1695766238\",\"list\":[{\"groupID\":\"3417930724\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"595536262\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"1237366857\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"2942457817\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"3227287827\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"4253925195\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"2184807685\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"3957246617\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"582136490\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"4045146473\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"2527119729\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"3759778360\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"2864738888\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"459143095\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"402286284\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"4040699454\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"995014316\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"2604460151\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"2904928842\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"1747585985\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"1597892186\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"93606743\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"1999119891\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"105081877\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"491010394\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"1529525623\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"3655346906\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"2625540721\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"1898996710\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"853658007\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"862487890\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"749544702\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"773702228\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"3750772487\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"87742245\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"1662278840\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"1170336331\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"1710171993\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"446768090\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"1273621475\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"2474039382\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"1671249356\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"1738113305\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"192211066\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"3384390386\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"2599904267\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"339303081\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"518546243\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"3727180154\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"1633118996\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"810698493\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"129612413\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"1268986309\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"3069388481\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"1012900607\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"3014735116\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"3269509736\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"2670578906\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"2958761051\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"2479200198\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"3703077350\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"3327630005\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"324253771\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"3504722739\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"1295978993\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"1193166060\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"4182703673\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"3693200714\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"4075238610\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"2458134291\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"1869190487\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"2752799086\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"2145904160\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"4094820687\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"3896488295\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"4070499267\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"4092904375\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"45636129\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"454437308\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"217468446\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"1393169672\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"1254300734\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"2956229812\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"2388705044\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"2806967959\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"3704350375\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"3590768919\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"543925645\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"3560180171\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"1986908192\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"1861322715\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"1577882571\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"19439682\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"2048354932\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"68265665\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"2677549796\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"1137299436\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"2595610523\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"3700863541\",\"versionID\":\"\",\"version\":0},{\"groupID\":\"1177987017\",\"versionID\":\"\",\"version\":0}]}"}
+2024-06-24 10:57:01.841 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_incremental_group_member_batch", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"list\":{\"1012900607\":{\"version\":1,\"versionID\":\"6672d39de27166fe7781174d\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"1012900607\",\"groupName\":\"cdaac123\",\"notification\":\"999666112\",\"introduction\":\"\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/8772228740/avatar.jpg\",\"ownerUserID\":\"1029199385\",\"createTime\":1694998142255,\"memberCount\":6,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"8772228740\",\"groupType\":2,\"needVerification\":1,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1708486632018,\"notificationUserID\":\"openIM123456\"}},\"105081877\":{\"version\":2,\"versionID\":\"6672d39de27166fe77811753\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"105081877\",\"groupName\":\"d\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"5248385191\",\"createTime\":1710490825413,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"5248385191\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"1137299436\":{\"version\":1,\"versionID\":\"6672d39de27166fe778116a3\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"1137299436\",\"groupName\":\"qqqqqqqqqqqqq\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4036830742/æčˇ2.PNG\",\"ownerUserID\":\"4036830742\",\"createTime\":1692815148440,\"memberCount\":6,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4036830742\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":-28800000,\"notificationUserID\":\"\"}},\"1170336331\":{\"version\":1,\"versionID\":\"6672d39de27166fe778116da\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"1170336331\",\"groupName\":\"2\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4641688133\",\"createTime\":1714113624562,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4641688133\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"1177987017\":{\"version\":1,\"versionID\":\"6672d39de27166fe77811707\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"1177987017\",\"groupName\":\"123123\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1695766238\",\"createTime\":1705046435331,\"memberCount\":1,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"1695766238\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"1193166060\":{\"version\":1,\"versionID\":\"6672d39de27166fe778116d0\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"1193166060\",\"groupName\":\"22222222222\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7497605401/åąåšæĒåž 2024-04-10 095644 - 坿Ŧ.png\",\"ownerUserID\":\"7497605401\",\"createTime\":1716534979693,\"memberCount\":7,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"7497605401\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"1237366857\":{\"version\":1,\"versionID\":\"6672d39de27166fe778116a0\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"1237366857\",\"groupName\":\"11\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7618202429\",\"createTime\":1704362047829,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"7618202429\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"1254300734\":{\"version\":2,\"versionID\":\"6672d39de27166fe778116b5\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"1254300734\",\"groupName\":\"fjh\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4681582191\",\"createTime\":1713582441625,\"memberCount\":9,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4681582191\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"1268986309\":{\"version\":1,\"versionID\":\"6672d39de27166fe7781172e\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"1268986309\",\"groupName\":\"summer\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3939999665\",\"createTime\":1693513328758,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3939999665\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":-28800000,\"notificationUserID\":\"\"}},\"1273621475\":{\"version\":1,\"versionID\":\"6672d39de27166fe778116b4\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"1273621475\",\"groupName\":\"rretrd\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4072022438\",\"createTime\":1718203797458,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4072022438\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"1295978993\":{\"version\":1,\"versionID\":\"6672d39de27166fe7781169b\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"1295978993\",\"groupName\":\"12345\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4080264659\",\"createTime\":1718251471418,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4080264659\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"129612413\":{\"version\":1,\"versionID\":\"6672d39de27166fe77811694\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"129612413\",\"groupName\":\"ces\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7854235526\",\"createTime\":1708318649882,\"memberCount\":8,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"7854235526\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"1393169672\":{\"version\":1,\"versionID\":\"6672d39de27166fe778116b2\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"1393169672\",\"groupName\":\"asdasd\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1050659067\",\"createTime\":1715182015588,\"memberCount\":6,\"ex\":\"\",\"status\":3,\"creatorUserID\":\"1050659067\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"1529525623\":{\"version\":1,\"versionID\":\"6672d39de27166fe77811726\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"1529525623\",\"groupName\":\"\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"9735279232\",\"createTime\":1717166453314,\"memberCount\":6,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"9735279232\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"1577882571\":{\"version\":1,\"versionID\":\"6672d39de27166fe77811758\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"1577882571\",\"groupName\":\"aaaa\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4364213352\",\"createTime\":1708782292086,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4364213352\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"1597892186\":{\"version\":1,\"versionID\":\"6672d39de27166fe778116c3\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"1597892186\",\"groupName\":\"222\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"2097541846\",\"createTime\":1709005390126,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"2097541846\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"1633118996\":{\"version\":1,\"versionID\":\"6672d39de27166fe77811746\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"1633118996\",\"groupName\":\"1111\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"2879577568\",\"createTime\":1704765184732,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"2879577568\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"1662278840\":{\"version\":1,\"versionID\":\"6672d39de27166fe77811733\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"1662278840\",\"groupName\":\"1111\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4950713210\",\"createTime\":1714039865284,\"memberCount\":11,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4950713210\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"1671249356\":{\"version\":1,\"versionID\":\"6672d39de27166fe778116cb\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"1671249356\",\"groupName\":\"1111\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4846054480\",\"createTime\":1715219363736,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4846054480\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"1710171993\":{\"version\":1,\"versionID\":\"6672d39de27166fe7781172a\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"1710171993\",\"groupName\":\"TEST\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"5002491660\",\"createTime\":1716690369550,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"5002491660\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"1738113305\":{\"version\":1,\"versionID\":\"6672d39de27166fe77811741\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"1738113305\",\"groupName\":\"123\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"2890713225\",\"createTime\":1692838259543,\"memberCount\":9,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"2890713225\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":-28800000,\"notificationUserID\":\"\"}},\"1747585985\":{\"version\":1,\"versionID\":\"6672d39de27166fe778116c0\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"1747585985\",\"groupName\":\"sdsdf \",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"9032177660\",\"createTime\":1705976593857,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"9032177660\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"1861322715\":{\"version\":1,\"versionID\":\"6672d39de27166fe77811729\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"1861322715\",\"groupName\":\"great\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"8875139244\",\"createTime\":1701398294965,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"8875139244\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"1869190487\":{\"version\":1,\"versionID\":\"6672d39de27166fe77811722\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"1869190487\",\"groupName\":\"dsdadas\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7364897573\",\"createTime\":1715147388153,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"7364897573\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"1898996710\":{\"version\":1,\"versionID\":\"6672d39de27166fe77811703\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"1898996710\",\"groupName\":\"2323\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1308526907/kabi.jpg\",\"ownerUserID\":\"1308526907\",\"createTime\":1717071967757,\"memberCount\":7,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"1308526907\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"192211066\":{\"version\":1,\"versionID\":\"6672d39de27166fe77811701\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"192211066\",\"groupName\":\"HJGHYUGUH\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"8054377408\",\"createTime\":1712818885113,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"8054377408\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"19439682\":{\"version\":1,\"versionID\":\"6672d39de27166fe7781173a\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"19439682\",\"groupName\":\"cadįž¤\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"6554716140\",\"createTime\":1702888507885,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"6554716140\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"1986908192\":{\"version\":1,\"versionID\":\"6672d39de27166fe77811719\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"1986908192\",\"groupName\":\"OPENIM1111\",\"notification\":\"æ°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤æĩ蝿°įž¤\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"8823387090\",\"createTime\":1708420355229,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"8823387090\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1708420631874,\"notificationUserID\":\"8823387090\"}},\"1999119891\":{\"version\":1,\"versionID\":\"6672d39de27166fe778116b3\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"1999119891\",\"groupName\":\"Eastãdiaodiaoãasd\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"5410355545\",\"createTime\":1695449665516,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"5410355545\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"2048354932\":{\"version\":1,\"versionID\":\"6672d39de27166fe77811731\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"2048354932\",\"groupName\":\"dsa\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"2882899447\",\"createTime\":1715689072753,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"2882899447\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"2145904160\":{\"version\":1,\"versionID\":\"6672d39de27166fe778116e2\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"2145904160\",\"groupName\":\"hhhãJane1ãOpenIM-Gordon\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3233270846\",\"createTime\":1716881876626,\"memberCount\":7,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3233270846\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"217468446\":{\"version\":1,\"versionID\":\"6672d39de27166fe77811718\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"217468446\",\"groupName\":\"KAU\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1228521294\",\"createTime\":1702341644616,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"1228521294\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":1,\"applyMemberFriend\":1,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"2184807685\":{\"version\":1,\"versionID\":\"6672d39de27166fe778116f0\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"2184807685\",\"groupName\":\"222\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4911414951/åąåšæĒåž 2023-11-08 142433.png\",\"ownerUserID\":\"4911414951\",\"createTime\":1717497595335,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4911414951\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"2388705044\":{\"version\":1,\"versionID\":\"6672d39de27166fe778116e1\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"2388705044\",\"groupName\":\"1\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4641688133\",\"createTime\":1714113615026,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4641688133\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"2458134291\":{\"version\":1,\"versionID\":\"6672d39de27166fe778116cc\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"2458134291\",\"groupName\":\"9999\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"6923431604\",\"createTime\":1695240253976,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"6923431604\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":-28800000,\"notificationUserID\":\"\"}},\"2474039382\":{\"version\":1,\"versionID\":\"6672d39de27166fe778116f3\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"2474039382\",\"groupName\":\"1\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1776346921\",\"createTime\":1708585133254,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"1776346921\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"2479200198\":{\"version\":1,\"versionID\":\"6672d39de27166fe778116d9\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"2479200198\",\"groupName\":\"\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"9735279232\",\"createTime\":1716986650435,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"9735279232\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"2527119729\":{\"version\":1,\"versionID\":\"6672d39de27166fe778116cf\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"2527119729\",\"groupName\":\"1\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"2680629439\",\"createTime\":1714381168026,\"memberCount\":12,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"2680629439\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"2595610523\":{\"version\":1,\"versionID\":\"6672d39de27166fe778116fe\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"2595610523\",\"groupName\":\"1\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"2391060935\",\"createTime\":1703076800885,\"memberCount\":6,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"2391060935\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"2599904267\":{\"version\":1,\"versionID\":\"6672d39de27166fe77811757\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"2599904267\",\"groupName\":\"a\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4041344265\",\"createTime\":1704449140096,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4041344265\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"2604460151\":{\"version\":1,\"versionID\":\"6672d39de27166fe77811760\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"2604460151\",\"groupName\":\"Tesr\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1695766238\",\"createTime\":1691973743203,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"1695766238\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":-28800000,\"notificationUserID\":\"\"}},\"2625540721\":{\"version\":1,\"versionID\":\"6672d39de27166fe7781172b\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"2625540721\",\"groupName\":\"XXXX\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3340382285\",\"createTime\":1718092503549,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3340382285\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"2670578906\":{\"version\":1,\"versionID\":\"6672d39de27166fe7781170a\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"2670578906\",\"groupName\":\"6666\",\"notification\":\"dsadsdsadsaddsdsdaasddssdsaDSA DSA大æļäģŖ\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1762559417\",\"createTime\":1702954557477,\"memberCount\":19,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"1762559417\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1710240144485,\"notificationUserID\":\"1762559417\"}},\"2677549796\":{\"version\":1,\"versionID\":\"6672d39de27166fe778116dc\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"2677549796\",\"groupName\":\"openimåŽååŧåįž¤\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"5553194662\",\"createTime\":1709186337394,\"memberCount\":9,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"5553194662\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"2752799086\":{\"version\":1,\"versionID\":\"6672d39de27166fe778116fd\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"2752799086\",\"groupName\":\"hbn\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1428611256\",\"createTime\":1695169606413,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"1428611256\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":-28800000,\"notificationUserID\":\"\"}},\"2806967959\":{\"version\":1,\"versionID\":\"6672d39de27166fe77811734\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"2806967959\",\"groupName\":\"122212\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1695766238\",\"createTime\":1710484261228,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3420613648\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"2864738888\":{\"version\":1,\"versionID\":\"6672d39de27166fe778116f5\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"2864738888\",\"groupName\":\"111\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7009965934\",\"createTime\":1697109175347,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"2904928842\":{\"version\":1,\"versionID\":\"6672d39de27166fe778116aa\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"2904928842\",\"groupName\":\"fhjkld\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"5665605844\",\"createTime\":1711530361142,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"5665605844\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"2942457817\":{\"version\":1,\"versionID\":\"6672d39de27166fe778116ae\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"2942457817\",\"groupName\":\"1111111\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3803355027\",\"createTime\":1717068262327,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3803355027\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"2956229812\":{\"version\":1,\"versionID\":\"6672d39de27166fe7781175c\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"2956229812\",\"groupName\":\"skin\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3307929768\",\"createTime\":1709775007934,\"memberCount\":6,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3307929768\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"2958761051\":{\"version\":1,\"versionID\":\"6672d39de27166fe778116b7\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"2958761051\",\"groupName\":\"ai\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3796678904\",\"createTime\":1712470206172,\"memberCount\":7,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3796678904\",\"groupType\":2,\"needVerification\":2,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"3014735116\":{\"version\":1,\"versionID\":\"6672d39de27166fe778116f1\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"3014735116\",\"groupName\":\"good\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"8834765444\",\"createTime\":1716517624034,\"memberCount\":8,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"8834765444\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"3069388481\":{\"version\":1,\"versionID\":\"6672d39de27166fe778116f8\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"3069388481\",\"groupName\":\"123\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3838004574\",\"createTime\":1695166738569,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3838004574\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":-28800000,\"notificationUserID\":\"\"}},\"3227287827\":{\"version\":1,\"versionID\":\"6672d39de27166fe778116bc\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"3227287827\",\"groupName\":\"333\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"8772228740\",\"createTime\":1693592291226,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"8772228740\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":-28800000,\"notificationUserID\":\"\"}},\"324253771\":{\"version\":1,\"versionID\":\"6672d39de27166fe778116d6\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"324253771\",\"groupName\":\"OpenIMå
é¨ä礿ĩįž¤\",\"notification\":\"åäŊ 卿Ĩ 6įšåŧäŧ\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1695766238\",\"createTime\":1693184277225,\"memberCount\":14,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1709889407740,\"notificationUserID\":\"3418577436\"}},\"3269509736\":{\"version\":1,\"versionID\":\"6672d39de27166fe77811756\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"3269509736\",\"groupName\":\"123\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3879871786\",\"createTime\":1698997349421,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3879871786\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"3327630005\":{\"version\":1,\"versionID\":\"6672d39de27166fe77811693\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"3327630005\",\"groupName\":\"1111\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"8533102456\",\"createTime\":1708590737607,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"8533102456\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"3384390386\":{\"version\":1,\"versionID\":\"6672d39de27166fe778116d2\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"3384390386\",\"groupName\":\"OpenMeetingéĄšįŽæ˛éįž¤\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"8203292432\",\"createTime\":1711331880565,\"memberCount\":10,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"8203292432\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"339303081\":{\"version\":1,\"versionID\":\"6672d39de27166fe77811728\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"339303081\",\"groupName\":\"aaaa\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"2879740664\",\"createTime\":1698464544665,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"2879740664\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"3417930724\":{\"version\":1,\"versionID\":\"6672d39de27166fe7781172c\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"3417930724\",\"groupName\":\"ddddd\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"2839845469\",\"createTime\":1709890431189,\"memberCount\":9,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"7343731800\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"3504722739\":{\"version\":1,\"versionID\":\"6672d39de27166fe77811737\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"3504722739\",\"groupName\":\"saberãAåĨãååå\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"2905053077\",\"createTime\":1702537175539,\"memberCount\":8,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"2905053077\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"3560180171\":{\"version\":1,\"versionID\":\"6672d39de27166fe778116b6\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"3560180171\",\"groupName\":\"3345\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4057171904\",\"createTime\":1703513913124,\"memberCount\":2,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4057171904\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"3590768919\":{\"version\":1,\"versionID\":\"6672d39de27166fe778116a2\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"3590768919\",\"groupName\":\"haihaiæĩč¯\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"9942703170\",\"createTime\":1709629978721,\"memberCount\":3,\"ex\":\"\",\"status\":3,\"creatorUserID\":\"9942703170\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"3655346906\":{\"version\":1,\"versionID\":\"6672d39de27166fe778116fc\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"3655346906\",\"groupName\":\"111\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"2365006326\",\"createTime\":1715501281450,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"2365006326\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"3693200714\":{\"version\":1,\"versionID\":\"6672d39de27166fe77811735\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"3693200714\",\"groupName\":\"1\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"2880563506\",\"createTime\":1715500465383,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"2880563506\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"3700863541\":{\"version\":1,\"versionID\":\"6672d39de27166fe77811754\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"3700863541\",\"groupName\":\"11123\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1829995445\",\"createTime\":1713797111378,\"memberCount\":6,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"1829995445\",\"groupType\":2,\"needVerification\":1,\"lookMemberInfo\":1,\"applyMemberFriend\":1,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"3703077350\":{\"version\":1,\"versionID\":\"6672d39de27166fe778116a7\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"3703077350\",\"groupName\":\"111\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3963875243\",\"createTime\":1704031400168,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3963875243\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"3704350375\":{\"version\":1,\"versionID\":\"6672d39de27166fe778116c6\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"3704350375\",\"groupName\":\"Help-user-openim-send-msg\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"5668985363\",\"createTime\":1709185283874,\"memberCount\":9,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"5668985363\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"3727180154\":{\"version\":1,\"versionID\":\"6672d39de27166fe778116ff\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"3727180154\",\"groupName\":\"111\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4293913125\",\"createTime\":1694646670592,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4293913125\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":-28800000,\"notificationUserID\":\"\"}},\"3750772487\":{\"version\":1,\"versionID\":\"6672d39de27166fe778116ef\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"3750772487\",\"groupName\":\"\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1114245774\",\"createTime\":1702004434145,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"1114245774\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"3759778360\":{\"version\":1,\"versionID\":\"6672d39de27166fe778116c2\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"3759778360\",\"groupName\":\"11\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4911414951\",\"createTime\":1717497676562,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4911414951\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"3896488295\":{\"version\":2,\"versionID\":\"6672d39de27166fe778116af\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"3896488295\",\"groupName\":\"imæĩč¯\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3862147424\",\"createTime\":1704805511573,\"memberCount\":9,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3862147424\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"3957246617\":{\"version\":1,\"versionID\":\"6672d39de27166fe778116d1\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"3957246617\",\"groupName\":\"333\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7773809772\",\"createTime\":1706750177981,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"7773809772\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"402286284\":{\"version\":1,\"versionID\":\"6672d39de27166fe77811748\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"402286284\",\"groupName\":\"qun1\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"5778047866\",\"createTime\":1707207828132,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"5778047866\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"4040699454\":{\"version\":1,\"versionID\":\"6672d39de27166fe77811727\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"4040699454\",\"groupName\":\"OpenIM2ããããããããã\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7009965934\",\"createTime\":1696850155862,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"4045146473\":{\"version\":1,\"versionID\":\"6672d39de27166fe7781170f\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"4045146473\",\"groupName\":\"add\",\"notification\":\"1111\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"8772228740\",\"createTime\":1693593077473,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"8772228740\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1693890035609,\"notificationUserID\":\"8772228740\"}},\"4070499267\":{\"version\":1,\"versionID\":\"6672d39de27166fe778116e7\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"4070499267\",\"groupName\":\"111\",\"notification\":\"hahahah\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"8518800133\",\"createTime\":1712709369128,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"8518800133\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1712709383757,\"notificationUserID\":\"8518800133\"}},\"4075238610\":{\"version\":1,\"versionID\":\"6672d39de27166fe77811752\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"4075238610\",\"groupName\":\"11\",\"notification\":\"1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ 1222233777ÂĨÂĨÂĨÂĨÂĨÂĨÂĨÂĨ\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7516710182\",\"createTime\":1710187495948,\"memberCount\":6,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"7516710182\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1710187769275,\"notificationUserID\":\"7516710182\"}},\"4092904375\":{\"version\":1,\"versionID\":\"6672d39de27166fe77811736\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"4092904375\",\"groupName\":\"5688\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1774484110\",\"createTime\":1703232794318,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"1774484110\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"4094820687\":{\"version\":1,\"versionID\":\"6672d39de27166fe77811709\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"4094820687\",\"groupName\":\"hhhãOpenIM-GordonãOpenIM-Andrew123\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3233270846\",\"createTime\":1716863196612,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3233270846\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"4182703673\":{\"version\":1,\"versionID\":\"6672d39de27166fe778116f9\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"4182703673\",\"groupName\":\"454042\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4824619122\",\"createTime\":1716895462667,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4824619122\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"4253925195\":{\"version\":1,\"versionID\":\"6672d39de27166fe778116a1\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"4253925195\",\"groupName\":\"12121\",\"notification\":\"æįąå¤§åŽļ\\nåååå\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7854235526\",\"createTime\":1710236813146,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"7854235526\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1710242816576,\"notificationUserID\":\"7854235526\"}},\"446768090\":{\"version\":1,\"versionID\":\"6672d39de27166fe77811761\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"446768090\",\"groupName\":\"dffg \",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4558664801\",\"createTime\":1713326083446,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4558664801\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"454437308\":{\"version\":1,\"versionID\":\"6672d39de27166fe7781170d\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"454437308\",\"groupName\":\"qunn\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3767972548\",\"createTime\":1716872782246,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3767972548\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"45636129\":{\"version\":1,\"versionID\":\"6672d39de27166fe778116db\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"45636129\",\"groupName\":\"asdcsfadfadcsc\",\"notification\":\"äŊ čĒ厞b\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3859571259\",\"createTime\":1714982636137,\"memberCount\":7,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4911414951\",\"groupType\":2,\"needVerification\":1,\"lookMemberInfo\":1,\"applyMemberFriend\":1,\"notificationUpdateTime\":1715582999950,\"notificationUserID\":\"7497605401\"}},\"459143095\":{\"version\":1,\"versionID\":\"6672d39de27166fe77811698\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"459143095\",\"groupName\":\"fgg\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4641688133\",\"createTime\":1713349368349,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4641688133\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"491010394\":{\"version\":1,\"versionID\":\"6672d39de27166fe778116c7\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"491010394\",\"groupName\":\"sss\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7024387472\",\"createTime\":1718173203161,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"7024387472\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"518546243\":{\"version\":1,\"versionID\":\"6672d39de27166fe7781170b\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"518546243\",\"groupName\":\"bb\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"2981246162\",\"createTime\":1710511072820,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"2981246162\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"543925645\":{\"version\":1,\"versionID\":\"6672d39de27166fe77811700\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"543925645\",\"groupName\":\"12345\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"2545303424\",\"createTime\":1713322557193,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"2545303424\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"582136490\":{\"version\":1,\"versionID\":\"6672d39de27166fe778116e8\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"582136490\",\"groupName\":\"AT\",\"notification\":\"hhhhk\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4254681784\",\"createTime\":1704855145811,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4254681784\",\"groupType\":2,\"needVerification\":1,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1704855826699,\"notificationUserID\":\"4254681784\"}},\"595536262\":{\"version\":1,\"versionID\":\"6672d39de27166fe7781172d\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"595536262\",\"groupName\":\"kk\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1801012070\",\"createTime\":1709185662355,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"1801012070\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"68265665\":{\"version\":1,\"versionID\":\"6672d39de27166fe77811713\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"68265665\",\"groupName\":\"a\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"6629808721\",\"createTime\":1715416629462,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"6629808721\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"749544702\":{\"version\":1,\"versionID\":\"6672d39de27166fe7781171a\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"749544702\",\"groupName\":\"aaaa\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3849018031\",\"createTime\":1695867819801,\"memberCount\":2,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3849018031\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"773702228\":{\"version\":1,\"versionID\":\"6672d39de27166fe778116f4\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"773702228\",\"groupName\":\"karl æĩč¯įž¤čåčŊ\",\"notification\":\"æĩ蝿ĩ蝿ĩ蝿ĩč¯\",\"introduction\":\"\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4995366980/image_cropper_1706965486556.jpg\",\"ownerUserID\":\"4995366980\",\"createTime\":1706965447530,\"memberCount\":9,\"ex\":\"\",\"status\":3,\"creatorUserID\":\"4995366980\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":1,\"applyMemberFriend\":0,\"notificationUpdateTime\":1706965512821,\"notificationUserID\":\"4995366980\"}},\"810698493\":{\"version\":1,\"versionID\":\"6672d39de27166fe77811697\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"810698493\",\"groupName\":\"123\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"8039982396\",\"createTime\":1711349404733,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"8039982396\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"853658007\":{\"version\":1,\"versionID\":\"6672d39de27166fe7781169c\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"853658007\",\"groupName\":\"666\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"6319015024\",\"createTime\":1704273179302,\"memberCount\":6,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"6319015024\",\"groupType\":2,\"needVerification\":1,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"862487890\":{\"version\":1,\"versionID\":\"6672d39de27166fe7781174c\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"862487890\",\"groupName\":\"666\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"5669416921\",\"createTime\":1716799878564,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"5669416921\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"87742245\":{\"version\":1,\"versionID\":\"6672d39de27166fe7781171d\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"87742245\",\"groupName\":\"\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"9735279232\",\"createTime\":1718072946748,\"memberCount\":8,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"9735279232\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"93606743\":{\"version\":1,\"versionID\":\"6672d39de27166fe7781171e\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"93606743\",\"groupName\":\"444\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7388505150\",\"createTime\":1710774468499,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"7388505150\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}},\"995014316\":{\"version\":1,\"versionID\":\"6672d39de27166fe77811708\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null,\"group\":{\"groupID\":\"995014316\",\"groupName\":\"OpenIMååĄååŽå\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3418577436\",\"createTime\":1697158729338,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3418577436\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}}}}}"}
+2024-06-24 10:57:01.898 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_incremental_group_member_batch", "state": "success", "cost time": "532ms"}
+2024-06-24 10:57:01.912 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"2904928842\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.918 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"324253771\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.918 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"749544702\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.919 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"3560180171\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.919 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"3703077350\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.920 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"1295978993\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.920 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"3327630005\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.920 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"4070499267\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.920 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"4182703673\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.920 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"2048354932\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.920 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"3704350375\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.920 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"2458134291\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.920 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"1273621475\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.920 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"1577882571\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.920 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"2604460151\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.920 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"2958761051\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.920 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"3655346906\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.920 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"2145904160\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.920 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"3957246617\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.920 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"518546243\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.921 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"3590768919\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.921 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"4253925195\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.921 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"2956229812\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.921 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"2595610523\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.921 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"3700863541\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.921 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"3896488295\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.921 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"1986908192\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.921 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"192211066\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.921 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"4094820687\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.922 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"3727180154\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.922 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"1237366857\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.922 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"4040699454\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.922 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"582136490\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.922 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"2388705044\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.922 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"93606743\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.922 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"1747585985\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.922 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"1710171993\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.923 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"491010394\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.923 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"862487890\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.923 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"1177987017\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.923 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"2864738888\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.923 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"2527119729\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.923 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"1861322715\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.923 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"1254300734\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.923 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"595536262\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.923 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"1529525623\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.923 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"3014735116\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.923 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"1012900607\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.924 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"3069388481\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.924 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"459143095\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.924 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"995014316\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.924 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"2670578906\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.924 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"3750772487\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.924 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"2474039382\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.925 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"810698493\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.925 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"3417930724\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.925 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"4045146473\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.925 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"3504722739\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.925 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"3227287827\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.925 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"2677549796\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.925 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"217468446\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.925 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"773702228\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.926 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"3759778360\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.926 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"1597892186\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.927 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"2479200198\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.927 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"105081877\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.928 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"2806967959\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.928 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"2599904267\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.928 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"543925645\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.928 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"454437308\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.928 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"2625540721\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.928 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"2752799086\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.928 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"1738113305\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.928 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"4092904375\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.928 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"402286284\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.929 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"19439682\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.929 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"87742245\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.930 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"1662278840\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.930 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"339303081\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.930 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"68265665\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.930 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"446768090\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.930 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"3384390386\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.930 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"129612413\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.930 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"853658007\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.930 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"1137299436\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.930 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"1393169672\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.930 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"1869190487\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.930 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"2942457817\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.930 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"1671249356\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.930 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"1193166060\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.931 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"1898996710\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.931 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"45636129\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.931 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"3269509736\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.932 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"3693200714\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.932 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"1633118996\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.932 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"4075238610\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.932 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"1170336331\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.932 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"1268986309\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.932 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"1999119891\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.932 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"groupID\":\"2184807685\",\"filter\":0,\"keyword\":\"\"}"}
+2024-06-24 10:57:01.933 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":3,\"members\":[{\"groupID\":\"2904928842\",\"userID\":\"5665605844\",\"roleLevel\":100,\"joinTime\":1711530361143,\"nickname\":\"lgm\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"5665605844\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"5665605844\"},{\"groupID\":\"2904928842\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1711530361143,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"5665605844\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"5665605844\"},{\"groupID\":\"2904928842\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1711530361143,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"5665605844\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"5665605844\"}]}}"}
+2024-06-24 10:57:01.958 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":2,\"members\":[{\"groupID\":\"749544702\",\"userID\":\"3849018031\",\"roleLevel\":100,\"joinTime\":1695867819802,\"nickname\":\"ternary73\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3849018031\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3849018031\"},{\"groupID\":\"749544702\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1695867819802,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3849018031\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3849018031\"}]}}"}
+2024-06-24 10:57:01.962 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":2,\"members\":[{\"groupID\":\"3560180171\",\"userID\":\"4057171904\",\"roleLevel\":100,\"joinTime\":1703513913125,\"nickname\":\"CMD\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4057171904\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4057171904\"},{\"groupID\":\"3560180171\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1703513913125,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4057171904\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4057171904\"}]}}"}
+2024-06-24 10:57:01.976 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":4,\"members\":[{\"groupID\":\"1295978993\",\"userID\":\"4080264659\",\"roleLevel\":100,\"joinTime\":1718251471419,\"nickname\":\"é1\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4080264659\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4080264659\"},{\"groupID\":\"1295978993\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1718251471419,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4080264659\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4080264659\"},{\"groupID\":\"1295978993\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1718251471419,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4080264659\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4080264659\"},{\"groupID\":\"1295978993\",\"userID\":\"5496039772\",\"roleLevel\":20,\"joinTime\":1718251504614,\"nickname\":\"ååå\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4080264659\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4080264659\"}]}}"}
+2024-06-24 10:57:01.976 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":3,\"members\":[{\"groupID\":\"1577882571\",\"userID\":\"4364213352\",\"roleLevel\":100,\"joinTime\":1708782292087,\"nickname\":\"xiaoyu\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4364213352\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4364213352\"},{\"groupID\":\"1577882571\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1708782292087,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4364213352\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4364213352\"},{\"groupID\":\"1577882571\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1708782292087,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4364213352\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4364213352\"}]}}"}
+2024-06-24 10:57:01.980 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":3,\"members\":[{\"groupID\":\"2458134291\",\"userID\":\"6923431604\",\"roleLevel\":100,\"joinTime\":1695240253977,\"nickname\":\"AA\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"6923431604\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"6923431604\"},{\"groupID\":\"2458134291\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1695240253977,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"6923431604\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"6923431604\"},{\"groupID\":\"2458134291\",\"userID\":\"6105455334\",\"roleLevel\":20,\"joinTime\":1695240253977,\"nickname\":\"2234\",\"faceURL\":\"http://14.29.213.197:50002/object/6105455334/image_cropper_6B14D589-3B22-4F83-B6A0-33FEDAC33240-337-0000000E6EB9445B.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"6923431604\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"6923431604\"}]}}"}
+2024-06-24 10:57:01.987 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":5,\"members\":[{\"groupID\":\"3703077350\",\"userID\":\"3963875243\",\"roleLevel\":100,\"joinTime\":1704031400169,\"nickname\":\"å¨18\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3963875243\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3963875243\"},{\"groupID\":\"3703077350\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1704031400169,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3963875243\",\"ex\":\"\",\"muteEndTime\":1704035023858,\"inviterUserID\":\"3963875243\"},{\"groupID\":\"3703077350\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1704031400169,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3963875243\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3963875243\"},{\"groupID\":\"3703077350\",\"userID\":\"2839845469\",\"roleLevel\":20,\"joinTime\":1704031400169,\"nickname\":\"OpenIM-Kevln\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2839845469/image_cropper_CEAE004E-C57C-44F9-956D-968BA0CA0E6B-4437-000002C381F846B4.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3963875243\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3963875243\"},{\"groupID\":\"3703077350\",\"userID\":\"2882899447\",\"roleLevel\":20,\"joinTime\":1704031400169,\"nickname\":\"OpenIM-blooming\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3963875243\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3963875243\"}]}}"}
+2024-06-24 10:57:01.987 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":4,\"members\":[{\"groupID\":\"4182703673\",\"userID\":\"4824619122\",\"roleLevel\":100,\"joinTime\":1716895462668,\"nickname\":\"åģēåēˇ\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4824619122\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4824619122\"},{\"groupID\":\"4182703673\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1716895462668,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4824619122\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4824619122\"},{\"groupID\":\"4182703673\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1716895462668,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4824619122\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4824619122\"},{\"groupID\":\"4182703673\",\"userID\":\"7497605401\",\"roleLevel\":20,\"joinTime\":1716895462668,\"nickname\":\"Jane1\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7497605401/åąåšæĒåž 2024-05-15 110821.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4824619122\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4824619122\"}]}}"}
+2024-06-24 10:57:02.003 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":3,\"members\":[{\"groupID\":\"4094820687\",\"userID\":\"3233270846\",\"roleLevel\":100,\"joinTime\":1716863196614,\"nickname\":\"hhh\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3233270846\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3233270846\"},{\"groupID\":\"4094820687\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1716863196614,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3233270846\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3233270846\"},{\"groupID\":\"4094820687\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1716863196614,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3233270846\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3233270846\"}]}}"}
+2024-06-24 10:57:02.006 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "94ms"}
+2024-06-24 10:57:02.009 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "91ms"}
+2024-06-24 10:57:02.011 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "91ms"}
+2024-06-24 10:57:02.012 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "91ms"}
+2024-06-24 10:57:02.012 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "92ms"}
+2024-06-24 10:57:02.013 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "93ms"}
+2024-06-24 10:57:02.014 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "94ms"}
+2024-06-24 10:57:02.015 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "94ms"}
+2024-06-24 10:57:02.015 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "93ms"}
+2024-06-24 10:57:02.019 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":3,\"members\":[{\"groupID\":\"4070499267\",\"userID\":\"8518800133\",\"roleLevel\":100,\"joinTime\":1712709369129,\"nickname\":\"å¨å
į\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"8518800133\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"8518800133\"},{\"groupID\":\"4070499267\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1712709369129,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"8518800133\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"8518800133\"},{\"groupID\":\"4070499267\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1712709369129,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"8518800133\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"8518800133\"}]}}"}
+2024-06-24 10:57:02.019 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":3,\"members\":[{\"groupID\":\"3327630005\",\"userID\":\"8533102456\",\"roleLevel\":100,\"joinTime\":1708590737608,\"nickname\":\"aries\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"8533102456\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"8533102456\"},{\"groupID\":\"3327630005\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1708590737608,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"8533102456\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"8533102456\"},{\"groupID\":\"3327630005\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1708590737608,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"8533102456\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"8533102456\"}]}}"}
+2024-06-24 10:57:02.020 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":4,\"members\":[{\"groupID\":\"1237366857\",\"userID\":\"7618202429\",\"roleLevel\":100,\"joinTime\":1704362047830,\"nickname\":\"123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7618202429\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7618202429\"},{\"groupID\":\"1237366857\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1704362047830,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7618202429\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7618202429\"},{\"groupID\":\"1237366857\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1704362047830,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7618202429\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7618202429\"},{\"groupID\":\"1237366857\",\"userID\":\"2839845469\",\"roleLevel\":20,\"joinTime\":1704362047830,\"nickname\":\"OpenIM-Kevln\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2839845469/image_cropper_CEAE004E-C57C-44F9-956D-968BA0CA0E6B-4437-000002C381F846B4.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7618202429\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7618202429\"}]}}"}
+2024-06-24 10:57:02.020 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":3,\"members\":[{\"groupID\":\"518546243\",\"userID\":\"2981246162\",\"roleLevel\":100,\"joinTime\":1710511072822,\"nickname\":\"jzw\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2981246162\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2981246162\"},{\"groupID\":\"518546243\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1710511072822,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2981246162\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2981246162\"},{\"groupID\":\"518546243\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1710511072822,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2981246162\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2981246162\"}]}}"}
+2024-06-24 10:57:02.020 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":3,\"members\":[{\"groupID\":\"582136490\",\"userID\":\"4254681784\",\"roleLevel\":100,\"joinTime\":1704855145812,\"nickname\":\"To-T\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4254681784\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4254681784\"},{\"groupID\":\"582136490\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1704855145812,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4254681784\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4254681784\"},{\"groupID\":\"582136490\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1704855145812,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4254681784\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4254681784\"}]}}"}
+2024-06-24 10:57:02.025 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "105ms"}
+2024-06-24 10:57:02.027 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "107ms"}
+2024-06-24 10:57:02.028 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "105ms"}
+2024-06-24 10:57:02.028 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.029 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "108ms"}
+2024-06-24 10:57:02.030 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "108ms"}
+2024-06-24 10:57:02.032 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":3,\"members\":[{\"groupID\":\"2048354932\",\"userID\":\"2882899447\",\"roleLevel\":100,\"joinTime\":1715689072791,\"nickname\":\"OpenIM-blooming\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2882899447\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2882899447\"},{\"groupID\":\"2048354932\",\"userID\":\"1001978187\",\"roleLevel\":20,\"joinTime\":1715689072791,\"nickname\":\"CåĨ\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1001978187/storage/emulated/0/Android/data/io.openim.android.demo/cache/1705314301108.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2882899447\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2882899447\"},{\"groupID\":\"2048354932\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1715689072791,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2882899447\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2882899447\"}]}}"}
+2024-06-24 10:57:02.032 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":5,\"members\":[{\"groupID\":\"4253925195\",\"userID\":\"7854235526\",\"roleLevel\":100,\"joinTime\":1710236813147,\"nickname\":\"č\",\"faceURL\":\"ic_avatar_06\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7854235526\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7854235526\"},{\"groupID\":\"4253925195\",\"userID\":\"1695766238\",\"roleLevel\":60,\"joinTime\":1710236813147,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7854235526\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7854235526\"},{\"groupID\":\"4253925195\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1710236813147,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7854235526\",\"ex\":\"\",\"muteEndTime\":1710326725460,\"inviterUserID\":\"7854235526\"},{\"groupID\":\"4253925195\",\"userID\":\"2839845469\",\"roleLevel\":20,\"joinTime\":1710236813147,\"nickname\":\"OpenIM-Kevln\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2839845469/image_cropper_CEAE004E-C57C-44F9-956D-968BA0CA0E6B-4437-000002C381F846B4.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7854235526\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7854235526\"},{\"groupID\":\"4253925195\",\"userID\":\"2872689322\",\"roleLevel\":20,\"joinTime\":1710236813147,\"nickname\":\"tt1\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7854235526\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7854235526\"}]}}"}
+2024-06-24 10:57:02.038 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":3,\"members\":[{\"groupID\":\"1861322715\",\"userID\":\"8875139244\",\"roleLevel\":100,\"joinTime\":1701398294966,\"nickname\":\"moran\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"8875139244\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"8875139244\"},{\"groupID\":\"1861322715\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1701398294966,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"8875139244\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"8875139244\"},{\"groupID\":\"1861322715\",\"userID\":\"3418577436\",\"roleLevel\":20,\"joinTime\":1701398294966,\"nickname\":\"OpenIM-skiffer\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/3418577436/BD14C2C1956AB2E1BD8A9F33E76220BE (1).jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"8875139244\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"8875139244\"}]}}"}
+2024-06-24 10:57:02.038 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":3,\"members\":[{\"groupID\":\"2474039382\",\"userID\":\"1776346921\",\"roleLevel\":100,\"joinTime\":1708585133256,\"nickname\":\"pingfanh\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1776346921\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1776346921\"},{\"groupID\":\"2474039382\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1708585133256,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1776346921\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1776346921\"},{\"groupID\":\"2474039382\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1708585133256,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1776346921\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1776346921\"}]}}"}
+2024-06-24 10:57:02.039 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":3,\"members\":[{\"groupID\":\"810698493\",\"userID\":\"8039982396\",\"roleLevel\":100,\"joinTime\":1711349404734,\"nickname\":\"test\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"8039982396\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"8039982396\"},{\"groupID\":\"810698493\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1711349404734,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"8039982396\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"8039982396\"},{\"groupID\":\"810698493\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1711349404734,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"8039982396\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"8039982396\"}]}}"}
+2024-06-24 10:57:02.039 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":7,\"members\":[{\"groupID\":\"2958761051\",\"userID\":\"3796678904\",\"roleLevel\":100,\"joinTime\":1712470206173,\"nickname\":\"Mjun\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/3796678904/1712470602578_1712409388652.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3796678904\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3796678904\"},{\"groupID\":\"2958761051\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1712470206173,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3796678904\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3796678904\"},{\"groupID\":\"2958761051\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1712470206173,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3796678904\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3796678904\"},{\"groupID\":\"2958761051\",\"userID\":\"2839845469\",\"roleLevel\":20,\"joinTime\":1712470206173,\"nickname\":\"OpenIM-Kevln\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2839845469/image_cropper_CEAE004E-C57C-44F9-956D-968BA0CA0E6B-4437-000002C381F846B4.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3796678904\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3796678904\"},{\"groupID\":\"2958761051\",\"userID\":\"2882899447\",\"roleLevel\":20,\"joinTime\":1712470206173,\"nickname\":\"OpenIM-blooming\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3796678904\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3796678904\"},{\"groupID\":\"2958761051\",\"userID\":\"7497605401\",\"roleLevel\":20,\"joinTime\":1712470206173,\"nickname\":\"Jane1\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7497605401/åąåšæĒåž 2024-05-15 110821.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3796678904\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3796678904\"},{\"groupID\":\"2958761051\",\"userID\":\"9169530932\",\"roleLevel\":20,\"joinTime\":1712470206173,\"nickname\":\"AiRobot\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3796678904\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3796678904\"}]}}"}
+2024-06-24 10:57:02.039 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":4,\"members\":[{\"groupID\":\"3655346906\",\"userID\":\"2365006326\",\"roleLevel\":100,\"joinTime\":1715501281452,\"nickname\":\"677970\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2365006326\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2365006326\"},{\"groupID\":\"3655346906\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1715501281452,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2365006326\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2365006326\"},{\"groupID\":\"3655346906\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1715501281452,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2365006326\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2365006326\"},{\"groupID\":\"3655346906\",\"userID\":\"9169530932\",\"roleLevel\":20,\"joinTime\":1715501281452,\"nickname\":\"AiRobot\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2365006326\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2365006326\"}]}}"}
+2024-06-24 10:57:02.039 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":5,\"members\":[{\"groupID\":\"1273621475\",\"userID\":\"4072022438\",\"roleLevel\":100,\"joinTime\":1718203797459,\"nickname\":\"test\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4072022438\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4072022438\"},{\"groupID\":\"1273621475\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1718203797459,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4072022438\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4072022438\"},{\"groupID\":\"1273621475\",\"userID\":\"5620768201\",\"roleLevel\":20,\"joinTime\":1718203797459,\"nickname\":\"DFđđ¤\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5620768201/qq襨æ
.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4072022438\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4072022438\"},{\"groupID\":\"1273621475\",\"userID\":\"7497605401\",\"roleLevel\":20,\"joinTime\":1718203797459,\"nickname\":\"Jane1\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7497605401/åąåšæĒåž 2024-05-15 110821.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4072022438\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4072022438\"},{\"groupID\":\"1273621475\",\"userID\":\"9169530932\",\"roleLevel\":20,\"joinTime\":1718203797459,\"nickname\":\"AiRobot\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4072022438\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4072022438\"}]}}"}
+2024-06-24 10:57:02.040 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":4,\"members\":[{\"groupID\":\"2604460151\",\"userID\":\"1695766238\",\"roleLevel\":100,\"joinTime\":1691973743204,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1695766238\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"1695766238\"},{\"groupID\":\"2604460151\",\"userID\":\"8772228740\",\"roleLevel\":20,\"joinTime\":1691973743204,\"nickname\":\"įŋå\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/8772228740/icon.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1695766238\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"1695766238\"},{\"groupID\":\"2604460151\",\"userID\":\"9447003536\",\"roleLevel\":20,\"joinTime\":1693017466662,\"nickname\":\"bb123\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/9447003536/avatar.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1695766238\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"1695766238\"},{\"groupID\":\"2604460151\",\"userID\":\"9859217551\",\"roleLevel\":20,\"joinTime\":1691973743204,\"nickname\":\"chao\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1695766238\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"1695766238\"}]}}"}
+2024-06-24 10:57:02.041 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"2904928842\"}"}
+2024-06-24 10:57:02.041 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.043 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "123ms"}
+2024-06-24 10:57:02.045 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "124ms"}
+2024-06-24 10:57:02.045 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":3,\"members\":[{\"groupID\":\"3957246617\",\"userID\":\"7773809772\",\"roleLevel\":100,\"joinTime\":1706750177982,\"nickname\":\"å
å
\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7773809772\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7773809772\"},{\"groupID\":\"3957246617\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1706750177982,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7773809772\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7773809772\"},{\"groupID\":\"3957246617\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1706750177982,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7773809772\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7773809772\"}]}}"}
+2024-06-24 10:57:02.046 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "122ms"}
+2024-06-24 10:57:02.047 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":1,\"members\":[{\"groupID\":\"1177987017\",\"userID\":\"1695766238\",\"roleLevel\":100,\"joinTime\":1705046435332,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1695766238\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1695766238\"}]}}"}
+2024-06-24 10:57:02.047 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "122ms"}
+2024-06-24 10:57:02.048 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "122ms"}
+2024-06-24 10:57:02.048 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.050 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":4,\"members\":[{\"groupID\":\"4045146473\",\"userID\":\"8772228740\",\"roleLevel\":100,\"joinTime\":1693593077476,\"nickname\":\"įŋå\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/8772228740/icon.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"8772228740\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"8772228740\"},{\"groupID\":\"4045146473\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1693593077476,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"8772228740\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"8772228740\"},{\"groupID\":\"4045146473\",\"userID\":\"2882899447\",\"roleLevel\":20,\"joinTime\":1693593077476,\"nickname\":\"OpenIM-blooming\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"8772228740\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"8772228740\"},{\"groupID\":\"4045146473\",\"userID\":\"9285257296\",\"roleLevel\":20,\"joinTime\":1693593099955,\"nickname\":\"0053321\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/9285257296/8018359489_file_e33ea1883fde314aac0a7faab751dae2.webp\",\"appMangerLevel\":0,\"joinSource\":3,\"operatorUserID\":\"8772228740\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"\"}]}}"}
+2024-06-24 10:57:02.051 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "131ms"}
+2024-06-24 10:57:02.051 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":3,\"members\":[{\"groupID\":\"3750772487\",\"userID\":\"1114245774\",\"roleLevel\":100,\"joinTime\":1702004434146,\"nickname\":\"åéŖ\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1114245774\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1114245774\"},{\"groupID\":\"3750772487\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1702004434146,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1114245774\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1114245774\"},{\"groupID\":\"3750772487\",\"userID\":\"7009965934\",\"roleLevel\":20,\"joinTime\":1702004434146,\"nickname\":\"đâË¡Íāŧ¡ÍË*\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7009965934/image_cropper_1697097350170.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1114245774\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1114245774\"}]}}"}
+2024-06-24 10:57:02.052 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":3,\"members\":[{\"groupID\":\"3590768919\",\"userID\":\"9942703170\",\"roleLevel\":100,\"joinTime\":1709629978722,\"nickname\":\"haihai\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"9942703170\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"9942703170\"},{\"groupID\":\"3590768919\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1709629978722,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"9942703170\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"9942703170\"},{\"groupID\":\"3590768919\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1709629978722,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"9942703170\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"9942703170\"}]}}"}
+2024-06-24 10:57:02.052 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "131ms"}
+2024-06-24 10:57:02.053 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "133ms"}
+2024-06-24 10:57:02.054 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "133ms"}
+2024-06-24 10:57:02.054 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.054 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"749544702\"}"}
+2024-06-24 10:57:02.055 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "135ms"}
+2024-06-24 10:57:02.056 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "133ms"}
+2024-06-24 10:57:02.057 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"3560180171\"}"}
+2024-06-24 10:57:02.057 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "132ms"}
+2024-06-24 10:57:02.058 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.058 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "134ms"}
+2024-06-24 10:57:02.060 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "139ms"}
+2024-06-24 10:57:02.065 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":3,\"members\":[{\"groupID\":\"2388705044\",\"userID\":\"4641688133\",\"roleLevel\":100,\"joinTime\":1714113615027,\"nickname\":\"ææ\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4641688133/image_2024-04-26-22-27.549.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4641688133\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4641688133\"},{\"groupID\":\"2388705044\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1714113615027,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4641688133\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4641688133\"},{\"groupID\":\"2388705044\",\"userID\":\"2169175564\",\"roleLevel\":20,\"joinTime\":1714113615027,\"nickname\":\"ååĻåé´11\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2169175564/image_2024-04-23-23-16.752.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4641688133\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4641688133\"}]}}"}
+2024-06-24 10:57:02.065 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":3,\"members\":[{\"groupID\":\"2864738888\",\"userID\":\"7009965934\",\"roleLevel\":100,\"joinTime\":1697109175348,\"nickname\":\"đâË¡Íāŧ¡ÍË*\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7009965934/image_cropper_1697097350170.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7009965934\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7009965934\"},{\"groupID\":\"2864738888\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1697109175348,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7009965934\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7009965934\"},{\"groupID\":\"2864738888\",\"userID\":\"6269493573\",\"roleLevel\":20,\"joinTime\":1697109175348,\"nickname\":\"åĨŊãããããã\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/6269493573/1692169779130_1692081034718.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7009965934\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7009965934\"}]}}"}
+2024-06-24 10:57:02.066 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":4,\"members\":[{\"groupID\":\"595536262\",\"userID\":\"1801012070\",\"roleLevel\":100,\"joinTime\":1709185662356,\"nickname\":\"åļįļ\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1801012070\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1801012070\"},{\"groupID\":\"595536262\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1709185662356,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1801012070\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1801012070\"},{\"groupID\":\"595536262\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1709185662356,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1801012070\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1801012070\"},{\"groupID\":\"595536262\",\"userID\":\"2839845469\",\"roleLevel\":20,\"joinTime\":1709185662356,\"nickname\":\"OpenIM-Kevln\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2839845469/image_cropper_CEAE004E-C57C-44F9-956D-968BA0CA0E6B-4437-000002C381F846B4.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1801012070\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1801012070\"}]}}"}
+2024-06-24 10:57:02.066 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":5,\"members\":[{\"groupID\":\"4040699454\",\"userID\":\"7009965934\",\"roleLevel\":100,\"joinTime\":1696850155865,\"nickname\":\"xiaoting\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7009965934/image_cropper_1697097350170.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7009965934\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7009965934\"},{\"groupID\":\"4040699454\",\"userID\":\"1531800981\",\"roleLevel\":20,\"joinTime\":1696850896246,\"nickname\":\"Brett\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1531800981/99468005.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7009965934\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7009965934\"},{\"groupID\":\"4040699454\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1696850155865,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7009965934\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7009965934\"},{\"groupID\":\"4040699454\",\"userID\":\"2882899447\",\"roleLevel\":20,\"joinTime\":1696850155865,\"nickname\":\"666888\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7009965934\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7009965934\"},{\"groupID\":\"4040699454\",\"userID\":\"3418577436\",\"roleLevel\":20,\"joinTime\":1696850155865,\"nickname\":\"OpenIM-skiffer\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/3418577436/BD14C2C1956AB2E1BD8A9F33E76220BE (1).jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7009965934\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7009965934\"}]}}"}
+2024-06-24 10:57:02.067 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":4,\"members\":[{\"groupID\":\"459143095\",\"userID\":\"4641688133\",\"roleLevel\":100,\"joinTime\":1713349368350,\"nickname\":\"ææ\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4641688133/image_2024-04-26-22-27.549.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4641688133\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4641688133\"},{\"groupID\":\"459143095\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1713349368350,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4641688133\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4641688133\"},{\"groupID\":\"459143095\",\"userID\":\"2882899447\",\"roleLevel\":20,\"joinTime\":1713349368350,\"nickname\":\"OpenIM-blooming\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4641688133\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4641688133\"},{\"groupID\":\"459143095\",\"userID\":\"7497605401\",\"roleLevel\":20,\"joinTime\":1713349368350,\"nickname\":\"Jane1\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7497605401/åąåšæĒåž 2024-05-15 110821.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4641688133\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4641688133\"}]}}"}
+2024-06-24 10:57:02.067 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":5,\"members\":[{\"groupID\":\"3069388481\",\"userID\":\"3838004574\",\"roleLevel\":100,\"joinTime\":1695166738571,\"nickname\":\"Jie\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3838004574\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"3838004574\"},{\"groupID\":\"3069388481\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1695166738571,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3838004574\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"3838004574\"},{\"groupID\":\"3069388481\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1695166738571,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3838004574\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"3838004574\"},{\"groupID\":\"3069388481\",\"userID\":\"2839845469\",\"roleLevel\":20,\"joinTime\":1695166738571,\"nickname\":\"OpenIM-Kevln\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2839845469/image_cropper_CEAE004E-C57C-44F9-956D-968BA0CA0E6B-4437-000002C381F846B4.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3838004574\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"3838004574\"},{\"groupID\":\"3069388481\",\"userID\":\"2882899447\",\"roleLevel\":20,\"joinTime\":1695166738571,\"nickname\":\"OpenIM-blooming\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3838004574\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"3838004574\"}]}}"}
+2024-06-24 10:57:02.067 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"1295978993\"}"}
+2024-06-24 10:57:02.067 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":3,\"members\":[{\"groupID\":\"862487890\",\"userID\":\"5669416921\",\"roleLevel\":100,\"joinTime\":1716799878566,\"nickname\":\"大éž\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"5669416921\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"5669416921\"},{\"groupID\":\"862487890\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1716799878566,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"5669416921\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"5669416921\"},{\"groupID\":\"862487890\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1716799878566,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"5669416921\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"5669416921\"}]}}"}
+2024-06-24 10:57:02.067 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":3,\"members\":[{\"groupID\":\"2599904267\",\"userID\":\"4041344265\",\"roleLevel\":100,\"joinTime\":1704449140098,\"nickname\":\"test\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4041344265\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4041344265\"},{\"groupID\":\"2599904267\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1704449140098,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4041344265\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4041344265\"},{\"groupID\":\"2599904267\",\"userID\":\"2839845469\",\"roleLevel\":20,\"joinTime\":1704449155440,\"nickname\":\"OpenIM-Kevln\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2839845469/image_cropper_CEAE004E-C57C-44F9-956D-968BA0CA0E6B-4437-000002C381F846B4.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4041344265\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4041344265\"}]}}"}
+2024-06-24 10:57:02.069 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.069 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"1577882571\"}"}
+2024-06-24 10:57:02.070 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "148ms"}
+2024-06-24 10:57:02.071 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "148ms"}
+2024-06-24 10:57:02.072 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "148ms"}
+2024-06-24 10:57:02.073 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "150ms"}
+2024-06-24 10:57:02.074 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":3,\"members\":[{\"groupID\":\"1747585985\",\"userID\":\"9032177660\",\"roleLevel\":100,\"joinTime\":1705976593869,\"nickname\":\"hys\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"9032177660\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"9032177660\"},{\"groupID\":\"1747585985\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1705976593869,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"9032177660\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"9032177660\"},{\"groupID\":\"1747585985\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1705976593869,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"9032177660\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"9032177660\"}]}}"}
+2024-06-24 10:57:02.074 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":3,\"members\":[{\"groupID\":\"1597892186\",\"userID\":\"2097541846\",\"roleLevel\":100,\"joinTime\":1709005390128,\"nickname\":\"will\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2097541846\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2097541846\"},{\"groupID\":\"1597892186\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1709005390128,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2097541846\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2097541846\"},{\"groupID\":\"1597892186\",\"userID\":\"2839845469\",\"roleLevel\":20,\"joinTime\":1709005390128,\"nickname\":\"OpenIM-Kevln\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2839845469/image_cropper_CEAE004E-C57C-44F9-956D-968BA0CA0E6B-4437-000002C381F846B4.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2097541846\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2097541846\"}]}}"}
+2024-06-24 10:57:02.074 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "149ms"}
+2024-06-24 10:57:02.074 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.075 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "150ms"}
+2024-06-24 10:57:02.076 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":5,\"members\":[{\"groupID\":\"105081877\",\"userID\":\"5248385191\",\"roleLevel\":100,\"joinTime\":1710490825415,\"nickname\":\"Ramu\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"5248385191\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"5248385191\"},{\"groupID\":\"105081877\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1710490825415,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"5248385191\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"5248385191\"},{\"groupID\":\"105081877\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1710490825415,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"5248385191\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"5248385191\"},{\"groupID\":\"105081877\",\"userID\":\"2839845469\",\"roleLevel\":20,\"joinTime\":1710490825415,\"nickname\":\"OpenIM-Kevln\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2839845469/image_cropper_CEAE004E-C57C-44F9-956D-968BA0CA0E6B-4437-000002C381F846B4.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"5248385191\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"5248385191\"},{\"groupID\":\"105081877\",\"userID\":\"3418577436\",\"roleLevel\":20,\"joinTime\":1710490848503,\"nickname\":\"OpenIM-skiffer\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/3418577436/BD14C2C1956AB2E1BD8A9F33E76220BE (1).jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"5248385191\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"5248385191\"}]}}"}
+2024-06-24 10:57:02.076 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":3,\"members\":[{\"groupID\":\"454437308\",\"userID\":\"3767972548\",\"roleLevel\":100,\"joinTime\":1716872782248,\"nickname\":\"1_haha\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3767972548\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3767972548\"},{\"groupID\":\"454437308\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1716872782248,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3767972548\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3767972548\"},{\"groupID\":\"454437308\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1716872782248,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3767972548\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3767972548\"}]}}"}
+2024-06-24 10:57:02.076 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":3,\"members\":[{\"groupID\":\"543925645\",\"userID\":\"2545303424\",\"roleLevel\":100,\"joinTime\":1713322557194,\"nickname\":\"æĩč¯\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2545303424\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2545303424\"},{\"groupID\":\"543925645\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1713322557194,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2545303424\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2545303424\"},{\"groupID\":\"543925645\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1713322557194,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2545303424\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2545303424\"}]}}"}
+2024-06-24 10:57:02.076 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":3,\"members\":[{\"groupID\":\"1710171993\",\"userID\":\"5002491660\",\"roleLevel\":100,\"joinTime\":1716690369551,\"nickname\":\"å°čŊĻ\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"5002491660\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"5002491660\"},{\"groupID\":\"1710171993\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1716690369551,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"5002491660\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"5002491660\"},{\"groupID\":\"1710171993\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1716690369551,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"5002491660\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"5002491660\"}]}}"}
+2024-06-24 10:57:02.077 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "154ms"}
+2024-06-24 10:57:02.078 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "149ms"}
+2024-06-24 10:57:02.078 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"2458134291\"}"}
+2024-06-24 10:57:02.080 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "157ms"}
+2024-06-24 10:57:02.080 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "153ms"}
+2024-06-24 10:57:02.081 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"3703077350\"}"}
+2024-06-24 10:57:02.081 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.082 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "155ms"}
+2024-06-24 10:57:02.083 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "155ms"}
+2024-06-24 10:57:02.083 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "155ms"}
+2024-06-24 10:57:02.085 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "162ms"}
+2024-06-24 10:57:02.088 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.090 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"4182703673\"}"}
+2024-06-24 10:57:02.091 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":4,\"members\":[{\"groupID\":\"491010394\",\"userID\":\"7024387472\",\"roleLevel\":100,\"joinTime\":1718173203163,\"nickname\":\"xiaoming\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7024387472\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7024387472\"},{\"groupID\":\"491010394\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1718173203163,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7024387472\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7024387472\"},{\"groupID\":\"491010394\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1718173203163,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7024387472\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7024387472\"},{\"groupID\":\"491010394\",\"userID\":\"2839845469\",\"roleLevel\":20,\"joinTime\":1718173203163,\"nickname\":\"OpenIM-Kevln\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2839845469/image_cropper_CEAE004E-C57C-44F9-956D-968BA0CA0E6B-4437-000002C381F846B4.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7024387472\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7024387472\"}]}}"}
+2024-06-24 10:57:02.091 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":4,\"members\":[{\"groupID\":\"217468446\",\"userID\":\"1228521294\",\"roleLevel\":100,\"joinTime\":1702341644617,\"nickname\":\"DanielYi\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1228521294\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1228521294\"},{\"groupID\":\"217468446\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1702341644617,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1228521294\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1228521294\"},{\"groupID\":\"217468446\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1702341644617,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1228521294\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1228521294\"},{\"groupID\":\"217468446\",\"userID\":\"2839845469\",\"roleLevel\":20,\"joinTime\":1702341644617,\"nickname\":\"OpenIM-Kevln\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2839845469/image_cropper_CEAE004E-C57C-44F9-956D-968BA0CA0E6B-4437-000002C381F846B4.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1228521294\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1228521294\"}]}}"}
+2024-06-24 10:57:02.092 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"4094820687\"}"}
+2024-06-24 10:57:02.093 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "170ms"}
+2024-06-24 10:57:02.094 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "169ms"}
+2024-06-24 10:57:02.095 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":3,\"members\":[{\"groupID\":\"192211066\",\"userID\":\"8054377408\",\"roleLevel\":100,\"joinTime\":1712818885114,\"nickname\":\"aa\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"8054377408\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"8054377408\"},{\"groupID\":\"192211066\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1712818885114,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"8054377408\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"8054377408\"},{\"groupID\":\"192211066\",\"userID\":\"2839845469\",\"roleLevel\":20,\"joinTime\":1712818885114,\"nickname\":\"OpenIM-Kevln\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2839845469/image_cropper_CEAE004E-C57C-44F9-956D-968BA0CA0E6B-4437-000002C381F846B4.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"8054377408\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"8054377408\"}]}}"}
+2024-06-24 10:57:02.098 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":17053423579196614122,\"versionID\":\"6672d39de27166fe778116aa\",\"equal\":false,\"userIDs\":[\"5665605844\",\"1695766238\",\"2725451243\"]}}"}
+2024-06-24 10:57:02.098 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":3,\"members\":[{\"groupID\":\"339303081\",\"userID\":\"2879740664\",\"roleLevel\":100,\"joinTime\":1698464544667,\"nickname\":\"\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2879740664\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2879740664\"},{\"groupID\":\"339303081\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1698464544667,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2879740664\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2879740664\"},{\"groupID\":\"339303081\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1698464544667,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2879740664\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2879740664\"}]}}"}
+2024-06-24 10:57:02.098 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":4,\"members\":[{\"groupID\":\"68265665\",\"userID\":\"6629808721\",\"roleLevel\":100,\"joinTime\":1715416629464,\"nickname\":\"ccyydd\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"6629808721\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"6629808721\"},{\"groupID\":\"68265665\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1715416629464,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"6629808721\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"6629808721\"},{\"groupID\":\"68265665\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1715416629464,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"6629808721\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"6629808721\"},{\"groupID\":\"68265665\",\"userID\":\"2839845469\",\"roleLevel\":20,\"joinTime\":1715416629464,\"nickname\":\"OpenIM-Kevln\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2839845469/image_cropper_CEAE004E-C57C-44F9-956D-968BA0CA0E6B-4437-000002C381F846B4.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"6629808721\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"6629808721\"}]}}"}
+2024-06-24 10:57:02.098 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":3,\"members\":[{\"groupID\":\"402286284\",\"userID\":\"5778047866\",\"roleLevel\":100,\"joinTime\":1707207828133,\"nickname\":\"CHEN\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"5778047866\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"5778047866\"},{\"groupID\":\"402286284\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1707207828133,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"5778047866\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"5778047866\"},{\"groupID\":\"402286284\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1707207828133,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"5778047866\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"5778047866\"}]}}"}
+2024-06-24 10:57:02.098 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":5,\"members\":[{\"groupID\":\"2806967959\",\"userID\":\"1695766238\",\"roleLevel\":100,\"joinTime\":1710484261229,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3420613648\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3420613648\"},{\"groupID\":\"2806967959\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1710484261229,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3420613648\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3420613648\"},{\"groupID\":\"2806967959\",\"userID\":\"2839845469\",\"roleLevel\":20,\"joinTime\":1710484261229,\"nickname\":\"OpenIM-Kevln\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2839845469/image_cropper_CEAE004E-C57C-44F9-956D-968BA0CA0E6B-4437-000002C381F846B4.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3420613648\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3420613648\"},{\"groupID\":\"2806967959\",\"userID\":\"2882899447\",\"roleLevel\":20,\"joinTime\":1710484261229,\"nickname\":\"OpenIM-blooming\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3420613648\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3420613648\"},{\"groupID\":\"2806967959\",\"userID\":\"3420613648\",\"roleLevel\":20,\"joinTime\":1710484261229,\"nickname\":\"test\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3420613648\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3420613648\"}]}}"}
+2024-06-24 10:57:02.099 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.100 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "178ms"}
+2024-06-24 10:57:02.100 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "59ms"}
+2024-06-24 10:57:02.101 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "171ms"}
+2024-06-24 10:57:02.103 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":3,\"members\":[{\"groupID\":\"2625540721\",\"userID\":\"3340382285\",\"roleLevel\":100,\"joinTime\":1718092503550,\"nickname\":\"GavinMeng\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3340382285\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3340382285\"},{\"groupID\":\"2625540721\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1718092503550,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3340382285\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3340382285\"},{\"groupID\":\"2625540721\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1718092503550,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3340382285\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3340382285\"}]}}"}
+2024-06-24 10:57:02.103 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":16081615152951647435,\"versionID\":\"6672d39de27166fe778116b6\",\"equal\":false,\"userIDs\":[\"4057171904\",\"1695766238\"]}}"}
+2024-06-24 10:57:02.103 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":4,\"members\":[{\"groupID\":\"93606743\",\"userID\":\"7388505150\",\"roleLevel\":100,\"joinTime\":1710774468500,\"nickname\":\"ijijni\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7388505150\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7388505150\"},{\"groupID\":\"93606743\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1710774468500,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7388505150\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7388505150\"},{\"groupID\":\"93606743\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1710774468500,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7388505150\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7388505150\"},{\"groupID\":\"93606743\",\"userID\":\"2882899447\",\"roleLevel\":20,\"joinTime\":1710774468500,\"nickname\":\"OpenIM-blooming\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7388505150\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7388505150\"}]}}"}
+2024-06-24 10:57:02.104 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "174ms"}
+2024-06-24 10:57:02.105 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":5,\"members\":[{\"groupID\":\"1986908192\",\"userID\":\"8823387090\",\"roleLevel\":100,\"joinTime\":1708420355230,\"nickname\":\"test0220\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"8823387090\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"8823387090\"},{\"groupID\":\"1986908192\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1708420355230,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"8823387090\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"8823387090\"},{\"groupID\":\"1986908192\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1708420355230,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"8823387090\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"8823387090\"},{\"groupID\":\"1986908192\",\"userID\":\"2839845469\",\"roleLevel\":20,\"joinTime\":1708420355230,\"nickname\":\"OpenIM-Kevln\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2839845469/image_cropper_CEAE004E-C57C-44F9-956D-968BA0CA0E6B-4437-000002C381F846B4.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"8823387090\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"8823387090\"},{\"groupID\":\"1986908192\",\"userID\":\"2882899447\",\"roleLevel\":20,\"joinTime\":1708420355230,\"nickname\":\"OpenIM-blooming\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"8823387090\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"8823387090\"}]}}"}
+2024-06-24 10:57:02.105 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":10390343322549798725,\"versionID\":\"6672d39de27166fe7781171a\",\"equal\":false,\"userIDs\":[\"3849018031\",\"1695766238\"]}}"}
+2024-06-24 10:57:02.106 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "177ms"}
+2024-06-24 10:57:02.111 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":8327155674339480294,\"versionID\":\"6672d39de27166fe7781169b\",\"equal\":false,\"userIDs\":[\"4080264659\",\"1695766238\",\"2725451243\",\"5496039772\"]}}"}
+2024-06-24 10:57:02.111 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":6,\"members\":[{\"groupID\":\"3700863541\",\"userID\":\"1829995445\",\"roleLevel\":100,\"joinTime\":1713797111379,\"nickname\":\"ning\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1829995445\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1829995445\"},{\"groupID\":\"3700863541\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1713797111379,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1829995445\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1829995445\"},{\"groupID\":\"3700863541\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1713797111379,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1829995445\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1829995445\"},{\"groupID\":\"3700863541\",\"userID\":\"4819622986\",\"roleLevel\":20,\"joinTime\":1716598692335,\"nickname\":\"liu\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1829995445\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1829995445\"},{\"groupID\":\"3700863541\",\"userID\":\"5929204367\",\"roleLevel\":20,\"joinTime\":1716599236753,\"nickname\":\"fkfk\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1829995445\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4819622986\"},{\"groupID\":\"3700863541\",\"userID\":\"6118899713\",\"roleLevel\":20,\"joinTime\":1716599482803,\"nickname\":\"ggg\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1829995445\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1829995445\"}]}}"}
+2024-06-24 10:57:02.111 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":5,\"members\":[{\"groupID\":\"3727180154\",\"userID\":\"4293913125\",\"roleLevel\":100,\"joinTime\":1694646670593,\"nickname\":\"robin\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4293913125/private/var/mobile/Containers/Data/Application/1BCB0F32-96B0-439C-AC59-89344673CEA7/tmp/image_cropper_73709AAE-C97C-475F-96B3-C1AC6A291781-1488-000000F061B7253F.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4293913125\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"4293913125\"},{\"groupID\":\"3727180154\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1694646670593,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4293913125\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"4293913125\"},{\"groupID\":\"3727180154\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1694646670593,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4293913125\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"4293913125\"},{\"groupID\":\"3727180154\",\"userID\":\"2995890101\",\"roleLevel\":20,\"joinTime\":1694646670593,\"nickname\":\"ååå\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4293913125\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"4293913125\"},{\"groupID\":\"3727180154\",\"userID\":\"5292156665\",\"roleLevel\":20,\"joinTime\":1694646670593,\"nickname\":\"Oliver\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5292156665/storage/emulated/0/Android/data/io.openim.android.demo/cache/1706265155247/1706265148858.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4293913125\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"4293913125\"}]}}"}
+2024-06-24 10:57:02.111 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":4,\"members\":[{\"groupID\":\"2184807685\",\"userID\":\"4911414951\",\"roleLevel\":100,\"joinTime\":1717497595352,\"nickname\":\"OpenimAnd-Jane\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4911414951/image_2024-05-06-20-59.111.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4911414951\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4911414951\"},{\"groupID\":\"2184807685\",\"userID\":\"1035025841\",\"roleLevel\":20,\"joinTime\":1717497595352,\"nickname\":\"openimIos-\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1035025841/1703645744598_img-1701149298684f16e210025edac32b00418866d89c64e5def2deaf36ae0088476bf83df2c098e.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4911414951\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4911414951\"},{\"groupID\":\"2184807685\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1717497595352,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4911414951\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4911414951\"},{\"groupID\":\"2184807685\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1717497595352,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4911414951\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4911414951\"}]}}"}
+2024-06-24 10:57:02.111 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":5,\"members\":[{\"groupID\":\"995014316\",\"userID\":\"3418577436\",\"roleLevel\":100,\"joinTime\":1697158729340,\"nickname\":\"OpenIM-skiffer\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/3418577436/BD14C2C1956AB2E1BD8A9F33E76220BE (1).jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3418577436\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3418577436\"},{\"groupID\":\"995014316\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1697158729340,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3418577436\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3418577436\"},{\"groupID\":\"995014316\",\"userID\":\"2882899447\",\"roleLevel\":20,\"joinTime\":1697158729340,\"nickname\":\"OpenIM-blooming\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3418577436\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3418577436\"},{\"groupID\":\"995014316\",\"userID\":\"4918276559\",\"roleLevel\":20,\"joinTime\":1697428482921,\"nickname\":\"OpenIM Service\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4918276559/storage/emulated/0/Android/data/io.openim.android.demo/cache/1701055992946/1701055983961.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3418577436\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3418577436\"},{\"groupID\":\"995014316\",\"userID\":\"7009965934\",\"roleLevel\":20,\"joinTime\":1697158729340,\"nickname\":\"đâË¡Íāŧ¡ÍË*\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7009965934/image_cropper_1697097350170.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3418577436\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3418577436\"}]}}"}
+2024-06-24 10:57:02.111 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":8,\"members\":[{\"groupID\":\"3014735116\",\"userID\":\"8834765444\",\"roleLevel\":100,\"joinTime\":1716517624036,\"nickname\":\"shadow\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"8834765444\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"8834765444\"},{\"groupID\":\"3014735116\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1716517624036,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"8834765444\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"8834765444\"},{\"groupID\":\"3014735116\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1716517624036,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"8834765444\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"8834765444\"},{\"groupID\":\"3014735116\",\"userID\":\"2839845469\",\"roleLevel\":20,\"joinTime\":1716517624036,\"nickname\":\"OpenIM-Kevln\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2839845469/image_cropper_CEAE004E-C57C-44F9-956D-968BA0CA0E6B-4437-000002C381F846B4.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"8834765444\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"8834765444\"},{\"groupID\":\"3014735116\",\"userID\":\"2882899447\",\"roleLevel\":20,\"joinTime\":1716517624036,\"nickname\":\"OpenIM-blooming\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"8834765444\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"8834765444\"},{\"groupID\":\"3014735116\",\"userID\":\"5292156665\",\"roleLevel\":20,\"joinTime\":1716517624036,\"nickname\":\"Oliver\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5292156665/storage/emulated/0/Android/data/io.openim.android.demo/cache/1706265155247/1706265148858.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"8834765444\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"8834765444\"},{\"groupID\":\"3014735116\",\"userID\":\"5620768201\",\"roleLevel\":20,\"joinTime\":1716517624036,\"nickname\":\"DFđđ¤\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5620768201/qq襨æ
.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"8834765444\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"8834765444\"},{\"groupID\":\"3014735116\",\"userID\":\"5668985363\",\"roleLevel\":20,\"joinTime\":1716517624036,\"nickname\":\"Smile\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5668985363/image_cropper_1704713618993.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"8834765444\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"8834765444\"}]}}"}
+2024-06-24 10:57:02.111 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":6,\"members\":[{\"groupID\":\"2956229812\",\"userID\":\"3307929768\",\"roleLevel\":100,\"joinTime\":1709775007935,\"nickname\":\"xkn\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3307929768\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3307929768\"},{\"groupID\":\"2956229812\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1709775007935,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3307929768\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3307929768\"},{\"groupID\":\"2956229812\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1709775007935,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3307929768\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3307929768\"},{\"groupID\":\"2956229812\",\"userID\":\"2995890101\",\"roleLevel\":20,\"joinTime\":1709775007935,\"nickname\":\"ååå\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3307929768\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3307929768\"},{\"groupID\":\"2956229812\",\"userID\":\"5292156665\",\"roleLevel\":20,\"joinTime\":1709775007935,\"nickname\":\"Oliver\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5292156665/storage/emulated/0/Android/data/io.openim.android.demo/cache/1706265155247/1706265148858.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3307929768\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3307929768\"},{\"groupID\":\"2956229812\",\"userID\":\"8689302929\",\"roleLevel\":20,\"joinTime\":1709775007935,\"nickname\":\"kernal\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3307929768\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3307929768\"}]}}"}
+2024-06-24 10:57:02.111 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":3194576577942675101,\"versionID\":\"6672d39de27166fe77811758\",\"equal\":false,\"userIDs\":[\"4364213352\",\"1695766238\",\"2725451243\"]}}"}
+2024-06-24 10:57:02.111 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":5,\"members\":[{\"groupID\":\"2752799086\",\"userID\":\"1428611256\",\"roleLevel\":100,\"joinTime\":1695169606414,\"nickname\":\"ccc\",\"faceURL\":\"ic_avatar_06\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1428611256\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"1428611256\"},{\"groupID\":\"2752799086\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1695169606414,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1428611256\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"1428611256\"},{\"groupID\":\"2752799086\",\"userID\":\"2995890101\",\"roleLevel\":20,\"joinTime\":1695169606414,\"nickname\":\"ååå\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1428611256\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"1428611256\"},{\"groupID\":\"2752799086\",\"userID\":\"5292156665\",\"roleLevel\":20,\"joinTime\":1695169606414,\"nickname\":\"Oliver\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5292156665/storage/emulated/0/Android/data/io.openim.android.demo/cache/1706265155247/1706265148858.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1428611256\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"1428611256\"},{\"groupID\":\"2752799086\",\"userID\":\"8910288550\",\"roleLevel\":20,\"joinTime\":1695169606414,\"nickname\":\"holiday\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1428611256\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"1428611256\"}]}}"}
+2024-06-24 10:57:02.112 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":6,\"members\":[{\"groupID\":\"1529525623\",\"userID\":\"9735279232\",\"roleLevel\":100,\"joinTime\":1717166453315,\"nickname\":\"æ¨åēˇ\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"9735279232\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"9735279232\"},{\"groupID\":\"1529525623\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1717166453315,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"9735279232\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"9735279232\"},{\"groupID\":\"1529525623\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1717166453315,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"9735279232\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"9735279232\"},{\"groupID\":\"1529525623\",\"userID\":\"2839845469\",\"roleLevel\":20,\"joinTime\":1717166453315,\"nickname\":\"OpenIM-Kevln\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2839845469/image_cropper_CEAE004E-C57C-44F9-956D-968BA0CA0E6B-4437-000002C381F846B4.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"9735279232\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"9735279232\"},{\"groupID\":\"1529525623\",\"userID\":\"2882899447\",\"roleLevel\":20,\"joinTime\":1717166453315,\"nickname\":\"OpenIM-blooming\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"9735279232\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"9735279232\"},{\"groupID\":\"1529525623\",\"userID\":\"9169530932\",\"roleLevel\":20,\"joinTime\":1717166453315,\"nickname\":\"AiRobot\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"9735279232\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"9735279232\"}]}}"}
+2024-06-24 10:57:02.112 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":6,\"members\":[{\"groupID\":\"2595610523\",\"userID\":\"2391060935\",\"roleLevel\":100,\"joinTime\":1703076800886,\"nickname\":\"EmoryRoland\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2391060935\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2391060935\"},{\"groupID\":\"2595610523\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1703076800886,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2391060935\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2391060935\"},{\"groupID\":\"2595610523\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1703076800886,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2391060935\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2391060935\"},{\"groupID\":\"2595610523\",\"userID\":\"2839845469\",\"roleLevel\":20,\"joinTime\":1703076800886,\"nickname\":\"OpenIM-Kevln\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2839845469/image_cropper_CEAE004E-C57C-44F9-956D-968BA0CA0E6B-4437-000002C381F846B4.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2391060935\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2391060935\"},{\"groupID\":\"2595610523\",\"userID\":\"2882899447\",\"roleLevel\":20,\"joinTime\":1703076800886,\"nickname\":\"OpenIM-blooming\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2391060935\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2391060935\"},{\"groupID\":\"2595610523\",\"userID\":\"6319015024\",\"roleLevel\":20,\"joinTime\":1703076800886,\"nickname\":\"OpenIM-wind\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/6319015024/pexels-photo-2174974.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2391060935\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2391060935\"}]}}"}
+2024-06-24 10:57:02.112 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "184ms"}
+2024-06-24 10:57:02.114 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":13627155633353106620,\"versionID\":\"6672d39de27166fe778116cc\",\"equal\":false,\"userIDs\":[\"6923431604\",\"1695766238\",\"6105455334\"]}}"}
+2024-06-24 10:57:02.115 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":4,\"members\":[{\"groupID\":\"3269509736\",\"userID\":\"3879871786\",\"roleLevel\":100,\"joinTime\":1698997349422,\"nickname\":\"æĩį§°\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3879871786\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3879871786\"},{\"groupID\":\"3269509736\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1698997349422,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3879871786\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3879871786\"},{\"groupID\":\"3269509736\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1698997349422,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3879871786\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3879871786\"},{\"groupID\":\"3269509736\",\"userID\":\"2839845469\",\"roleLevel\":20,\"joinTime\":1698997349422,\"nickname\":\"OpenIM-Kevln\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2839845469/image_cropper_CEAE004E-C57C-44F9-956D-968BA0CA0E6B-4437-000002C381F846B4.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3879871786\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3879871786\"}]}}"}
+2024-06-24 10:57:02.115 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":3,\"members\":[{\"groupID\":\"1170336331\",\"userID\":\"4641688133\",\"roleLevel\":100,\"joinTime\":1714113624563,\"nickname\":\"ææ\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4641688133/image_2024-04-26-22-27.549.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4641688133\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4641688133\"},{\"groupID\":\"1170336331\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1714113624563,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4641688133\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4641688133\"},{\"groupID\":\"1170336331\",\"userID\":\"2169175564\",\"roleLevel\":20,\"joinTime\":1714113624563,\"nickname\":\"ååĻåé´11\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2169175564/image_2024-04-23-23-16.752.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4641688133\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4641688133\"}]}}"}
+2024-06-24 10:57:02.115 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":4,\"members\":[{\"groupID\":\"3693200714\",\"userID\":\"2880563506\",\"roleLevel\":100,\"joinTime\":1715500465385,\"nickname\":\"biogenius\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2880563506\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2880563506\"},{\"groupID\":\"3693200714\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1715500465385,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2880563506\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2880563506\"},{\"groupID\":\"3693200714\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1715500465385,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2880563506\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2880563506\"},{\"groupID\":\"3693200714\",\"userID\":\"2839845469\",\"roleLevel\":20,\"joinTime\":1715500465385,\"nickname\":\"OpenIM-Kevln\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2839845469/image_cropper_CEAE004E-C57C-44F9-956D-968BA0CA0E6B-4437-000002C381F846B4.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2880563506\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2880563506\"}]}}"}
+2024-06-24 10:57:02.115 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":6,\"members\":[{\"groupID\":\"1012900607\",\"userID\":\"1029199385\",\"roleLevel\":100,\"joinTime\":1708508050593,\"nickname\":\"åæēæļĩ\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"\"},{\"groupID\":\"1012900607\",\"userID\":\"1035025841\",\"roleLevel\":20,\"joinTime\":1708508050593,\"nickname\":\"openimIos-\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1035025841/1703645744598_img-1701149298684f16e210025edac32b00418866d89c64e5def2deaf36ae0088476bf83df2c098e.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"\"},{\"groupID\":\"1012900607\",\"userID\":\"1046238762\",\"roleLevel\":20,\"joinTime\":1708508050593,\"nickname\":\"Raymon\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"\"},{\"groupID\":\"1012900607\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1694999226530,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"8772228740\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"8772228740\"},{\"groupID\":\"1012900607\",\"userID\":\"8772228740\",\"roleLevel\":20,\"joinTime\":1694998142256,\"nickname\":\"įŋå\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/8772228740/icon.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"8772228740\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"8772228740\"},{\"groupID\":\"1012900607\",\"userID\":\"9447003536\",\"roleLevel\":20,\"joinTime\":1694999812840,\"nickname\":\"bb123\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/9447003536/avatar.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"8772228740\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"8772228740\"}]}}"}
+2024-06-24 10:57:02.115 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"4070499267\"}"}
+2024-06-24 10:57:02.116 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.116 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":3,\"members\":[{\"groupID\":\"1633118996\",\"userID\":\"2879577568\",\"roleLevel\":100,\"joinTime\":1704765184733,\"nickname\":\"V_V\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2879577568\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2879577568\"},{\"groupID\":\"1633118996\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1704765184733,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2879577568\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2879577568\"},{\"groupID\":\"1633118996\",\"userID\":\"2882899447\",\"roleLevel\":20,\"joinTime\":1704765184733,\"nickname\":\"OpenIM-blooming\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2879577568\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2879577568\"}]}}"}
+2024-06-24 10:57:02.118 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":3,\"members\":[{\"groupID\":\"1671249356\",\"userID\":\"4846054480\",\"roleLevel\":100,\"joinTime\":1715219363738,\"nickname\":\"test1\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4846054480\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4846054480\"},{\"groupID\":\"1671249356\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1715219363738,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4846054480\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4846054480\"},{\"groupID\":\"1671249356\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1715219363738,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4846054480\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4846054480\"}]}}"}
+2024-06-24 10:57:02.121 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":4,\"members\":[{\"groupID\":\"1869190487\",\"userID\":\"7364897573\",\"roleLevel\":100,\"joinTime\":1715147388155,\"nickname\":\"dorisoy\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7364897573\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7364897573\"},{\"groupID\":\"1869190487\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1715147388155,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7364897573\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7364897573\"},{\"groupID\":\"1869190487\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1715147388155,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7364897573\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7364897573\"},{\"groupID\":\"1869190487\",\"userID\":\"2839845469\",\"roleLevel\":20,\"joinTime\":1715147388155,\"nickname\":\"OpenIM-Kevln\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2839845469/image_cropper_CEAE004E-C57C-44F9-956D-968BA0CA0E6B-4437-000002C381F846B4.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7364897573\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7364897573\"}]}}"}
+2024-06-24 10:57:02.121 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":5,\"members\":[{\"groupID\":\"4092904375\",\"userID\":\"1774484110\",\"roleLevel\":100,\"joinTime\":1703232794319,\"nickname\":\"zd\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1774484110\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1774484110\"},{\"groupID\":\"4092904375\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1703232794319,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1774484110\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1774484110\"},{\"groupID\":\"4092904375\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1703232794319,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1774484110\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1774484110\"},{\"groupID\":\"4092904375\",\"userID\":\"2839845469\",\"roleLevel\":20,\"joinTime\":1703232794319,\"nickname\":\"OpenIM-Kevln\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2839845469/image_cropper_CEAE004E-C57C-44F9-956D-968BA0CA0E6B-4437-000002C381F846B4.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1774484110\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1774484110\"},{\"groupID\":\"4092904375\",\"userID\":\"2872689322\",\"roleLevel\":20,\"joinTime\":1703232794319,\"nickname\":\"tt1\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1774484110\",\"ex\":\"\",\"muteEndTime\":1703235037099,\"inviterUserID\":\"1774484110\"}]}}"}
+2024-06-24 10:57:02.121 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":3,\"members\":[{\"groupID\":\"2942457817\",\"userID\":\"3803355027\",\"roleLevel\":100,\"joinTime\":1717068262328,\"nickname\":\"flynn\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3803355027\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3803355027\"},{\"groupID\":\"2942457817\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1717068262328,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3803355027\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3803355027\"},{\"groupID\":\"2942457817\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1717068262328,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3803355027\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3803355027\"}]}}"}
+2024-06-24 10:57:02.121 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":4,\"members\":[{\"groupID\":\"1999119891\",\"userID\":\"5410355545\",\"roleLevel\":100,\"joinTime\":1695449665517,\"nickname\":\"diaodiao\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"5410355545\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"5410355545\"},{\"groupID\":\"1999119891\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1695449665517,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"5410355545\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"5410355545\"},{\"groupID\":\"1999119891\",\"userID\":\"1968770658\",\"roleLevel\":20,\"joinTime\":1695449665517,\"nickname\":\"East\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"5410355545\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"5410355545\"},{\"groupID\":\"1999119891\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1695449665517,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"5410355545\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"5410355545\"}]}}"}
+2024-06-24 10:57:02.121 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":3,\"members\":[{\"groupID\":\"446768090\",\"userID\":\"4558664801\",\"roleLevel\":100,\"joinTime\":1713326083448,\"nickname\":\"aa\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4558664801\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4558664801\"},{\"groupID\":\"446768090\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1713326083448,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4558664801\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4558664801\"},{\"groupID\":\"446768090\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1713326083448,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4558664801\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4558664801\"}]}}"}
+2024-06-24 10:57:02.124 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":5,\"members\":[{\"groupID\":\"3759778360\",\"userID\":\"4911414951\",\"roleLevel\":100,\"joinTime\":1717497676563,\"nickname\":\"OpenimAnd-Jane\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4911414951/image_2024-05-06-20-59.111.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4911414951\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4911414951\"},{\"groupID\":\"3759778360\",\"userID\":\"1035025841\",\"roleLevel\":20,\"joinTime\":1717497676563,\"nickname\":\"openimIos-\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1035025841/1703645744598_img-1701149298684f16e210025edac32b00418866d89c64e5def2deaf36ae0088476bf83df2c098e.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4911414951\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4911414951\"},{\"groupID\":\"3759778360\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1717497676563,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4911414951\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4911414951\"},{\"groupID\":\"3759778360\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1717497676563,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4911414951\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4911414951\"},{\"groupID\":\"3759778360\",\"userID\":\"2823062805\",\"roleLevel\":20,\"joinTime\":1717497676563,\"nickname\":\"įæ\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2823062805/beaming_face_with_smiling_eyes_3d@2x.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4911414951\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4911414951\"}]}}"}
+2024-06-24 10:57:02.124 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "195ms"}
+2024-06-24 10:57:02.124 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":5,\"members\":[{\"groupID\":\"1268986309\",\"userID\":\"3939999665\",\"roleLevel\":100,\"joinTime\":1693513328760,\"nickname\":\"mary\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3939999665\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"3939999665\"},{\"groupID\":\"1268986309\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1693513328760,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3939999665\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"3939999665\"},{\"groupID\":\"1268986309\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1693513328760,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3939999665\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"3939999665\"},{\"groupID\":\"1268986309\",\"userID\":\"2839845469\",\"roleLevel\":20,\"joinTime\":1693513328760,\"nickname\":\"OpenIM-Kevln\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2839845469/image_cropper_CEAE004E-C57C-44F9-956D-968BA0CA0E6B-4437-000002C381F846B4.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3939999665\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"3939999665\"},{\"groupID\":\"1268986309\",\"userID\":\"2882899447\",\"roleLevel\":20,\"joinTime\":1693513328760,\"nickname\":\"OpenIM-blooming\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3939999665\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"3939999665\"}]}}"}
+2024-06-24 10:57:02.124 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":8,\"members\":[{\"groupID\":\"87742245\",\"userID\":\"9735279232\",\"roleLevel\":100,\"joinTime\":1718072946749,\"nickname\":\"æ¨åēˇ\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"9735279232\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"9735279232\"},{\"groupID\":\"87742245\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1718072946749,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"9735279232\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"9735279232\"},{\"groupID\":\"87742245\",\"userID\":\"1712766650\",\"roleLevel\":20,\"joinTime\":1718072946749,\"nickname\":\"ly410726\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"9735279232\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"9735279232\"},{\"groupID\":\"87742245\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1718072946749,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"9735279232\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"9735279232\"},{\"groupID\":\"87742245\",\"userID\":\"2839845469\",\"roleLevel\":20,\"joinTime\":1718072946749,\"nickname\":\"OpenIM-Kevln\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2839845469/image_cropper_CEAE004E-C57C-44F9-956D-968BA0CA0E6B-4437-000002C381F846B4.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"9735279232\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"9735279232\"},{\"groupID\":\"87742245\",\"userID\":\"2882899447\",\"roleLevel\":20,\"joinTime\":1718072946749,\"nickname\":\"OpenIM-blooming\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"9735279232\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"9735279232\"},{\"groupID\":\"87742245\",\"userID\":\"3418577436\",\"roleLevel\":20,\"joinTime\":1718072946749,\"nickname\":\"OpenIM-skiffer\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/3418577436/BD14C2C1956AB2E1BD8A9F33E76220BE (1).jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"9735279232\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"9735279232\"},{\"groupID\":\"87742245\",\"userID\":\"4918276559\",\"roleLevel\":20,\"joinTime\":1718072946749,\"nickname\":\"OpenIM Service\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4918276559/storage/emulated/0/Android/data/io.openim.android.demo/cache/1701055992946/1701055983961.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"9735279232\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"9735279232\"}]}}"}
+2024-06-24 10:57:02.125 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":9165206103371424041,\"versionID\":\"6672d39de27166fe778116f9\",\"equal\":false,\"userIDs\":[\"4824619122\",\"1695766238\",\"2725451243\",\"7497605401\"]}}"}
+2024-06-24 10:57:02.125 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":9,\"members\":[{\"groupID\":\"3704350375\",\"userID\":\"5668985363\",\"roleLevel\":100,\"joinTime\":1709185283875,\"nickname\":\"Smile\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5668985363/image_cropper_1704713618993.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"5668985363\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"5668985363\"},{\"groupID\":\"3704350375\",\"userID\":\"1035025841\",\"roleLevel\":20,\"joinTime\":1709185283875,\"nickname\":\"openimIos-\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1035025841/1703645744598_img-1701149298684f16e210025edac32b00418866d89c64e5def2deaf36ae0088476bf83df2c098e.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"5668985363\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"5668985363\"},{\"groupID\":\"3704350375\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1709185283875,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"5668985363\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"5668985363\"},{\"groupID\":\"3704350375\",\"userID\":\"2553130763\",\"roleLevel\":20,\"joinTime\":1709185283875,\"nickname\":\"uniapp170\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"5668985363\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"5668985363\"},{\"groupID\":\"3704350375\",\"userID\":\"2845997329\",\"roleLevel\":20,\"joinTime\":1709185283875,\"nickname\":\"openIMUser\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"5668985363\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"5668985363\"},{\"groupID\":\"3704350375\",\"userID\":\"2882899447\",\"roleLevel\":20,\"joinTime\":1709185283875,\"nickname\":\"OpenIM-blooming\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"5668985363\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"5668985363\"},{\"groupID\":\"3704350375\",\"userID\":\"2890713225\",\"roleLevel\":20,\"joinTime\":1709185283875,\"nickname\":\"chao\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2890713225/image_cropper_1715156142003.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"5668985363\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"5668985363\"},{\"groupID\":\"3704350375\",\"userID\":\"4429313396\",\"roleLevel\":20,\"joinTime\":1709185283875,\"nickname\":\"openIMUser\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"5668985363\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"5668985363\"},{\"groupID\":\"3704350375\",\"userID\":\"5620768201\",\"roleLevel\":20,\"joinTime\":1709187056325,\"nickname\":\"DFđđ¤\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5620768201/qq襨æ
.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3418577436\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3418577436\"}]}}"}
+2024-06-24 10:57:02.125 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":6,\"members\":[{\"groupID\":\"1137299436\",\"userID\":\"4036830742\",\"roleLevel\":100,\"joinTime\":1692815148441,\"nickname\":\"sunjw\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4036830742\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"4036830742\"},{\"groupID\":\"1137299436\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1692815148441,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4036830742\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"4036830742\"},{\"groupID\":\"1137299436\",\"userID\":\"2839845469\",\"roleLevel\":20,\"joinTime\":1692815148441,\"nickname\":\"OpenIM-Kevln\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2839845469/image_cropper_CEAE004E-C57C-44F9-956D-968BA0CA0E6B-4437-000002C381F846B4.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4036830742\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"4036830742\"},{\"groupID\":\"1137299436\",\"userID\":\"5292156665\",\"roleLevel\":20,\"joinTime\":1692815148441,\"nickname\":\"Oliver\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5292156665/storage/emulated/0/Android/data/io.openim.android.demo/cache/1706265155247/1706265148858.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4036830742\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"4036830742\"},{\"groupID\":\"1137299436\",\"userID\":\"6105455334\",\"roleLevel\":20,\"joinTime\":1692815148441,\"nickname\":\"2234\",\"faceURL\":\"http://14.29.213.197:50002/object/6105455334/image_cropper_6B14D589-3B22-4F83-B6A0-33FEDAC33240-337-0000000E6EB9445B.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4036830742\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"4036830742\"},{\"groupID\":\"1137299436\",\"userID\":\"7009965934\",\"roleLevel\":20,\"joinTime\":1692815148441,\"nickname\":\"đâË¡Íāŧ¡ÍË*\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7009965934/image_cropper_1697097350170.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4036830742\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"4036830742\"}]}}"}
+2024-06-24 10:57:02.125 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":9,\"members\":[{\"groupID\":\"3896488295\",\"userID\":\"3862147424\",\"roleLevel\":100,\"joinTime\":1704805511574,\"nickname\":\"éģå
į\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3862147424\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3862147424\"},{\"groupID\":\"3896488295\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1704805511574,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3862147424\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3862147424\"},{\"groupID\":\"3896488295\",\"userID\":\"2839845469\",\"roleLevel\":20,\"joinTime\":1704805511574,\"nickname\":\"OpenIM-Kevln\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2839845469/image_cropper_CEAE004E-C57C-44F9-956D-968BA0CA0E6B-4437-000002C381F846B4.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3862147424\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3862147424\"},{\"groupID\":\"3896488295\",\"userID\":\"2882899447\",\"roleLevel\":20,\"joinTime\":1704805511574,\"nickname\":\"OpenIM-blooming\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3862147424\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3862147424\"},{\"groupID\":\"3896488295\",\"userID\":\"3418577436\",\"roleLevel\":20,\"joinTime\":1704805511574,\"nickname\":\"OpenIM-skiffer\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/3418577436/BD14C2C1956AB2E1BD8A9F33E76220BE (1).jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3862147424\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3862147424\"},{\"groupID\":\"3896488295\",\"userID\":\"5292156665\",\"roleLevel\":20,\"joinTime\":1704805511574,\"nickname\":\"Oliver\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5292156665/storage/emulated/0/Android/data/io.openim.android.demo/cache/1706265155247/1706265148858.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3862147424\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3862147424\"},{\"groupID\":\"3896488295\",\"userID\":\"5668985363\",\"roleLevel\":20,\"joinTime\":1704805511574,\"nickname\":\"Smile\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5668985363/image_cropper_1704713618993.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3862147424\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3862147424\"},{\"groupID\":\"3896488295\",\"userID\":\"6319015024\",\"roleLevel\":20,\"joinTime\":1704805511574,\"nickname\":\"OpenIM-wind\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/6319015024/pexels-photo-2174974.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3862147424\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3862147424\"},{\"groupID\":\"3896488295\",\"userID\":\"7497605401\",\"roleLevel\":20,\"joinTime\":1704805511574,\"nickname\":\"Jane1\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7497605401/åąåšæĒåž 2024-05-15 110821.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3862147424\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3862147424\"}]}}"}
+2024-06-24 10:57:02.127 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":7,\"members\":[{\"groupID\":\"1193166060\",\"userID\":\"7497605401\",\"roleLevel\":100,\"joinTime\":1716534979694,\"nickname\":\"Jane1\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7497605401/åąåšæĒåž 2024-05-15 110821.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7497605401\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7497605401\"},{\"groupID\":\"1193166060\",\"userID\":\"1003546611\",\"roleLevel\":20,\"joinTime\":1716534979694,\"nickname\":\"ææäēē\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7497605401\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7497605401\"},{\"groupID\":\"1193166060\",\"userID\":\"1005848588\",\"roleLevel\":20,\"joinTime\":1716534979694,\"nickname\":\"ah\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7497605401\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7497605401\"},{\"groupID\":\"1193166060\",\"userID\":\"1016745053\",\"roleLevel\":20,\"joinTime\":1716534979694,\"nickname\":\"ceshiceshi\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7497605401\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7497605401\"},{\"groupID\":\"1193166060\",\"userID\":\"1024013158\",\"roleLevel\":20,\"joinTime\":1716534979694,\"nickname\":\"asen\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7497605401\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7497605401\"},{\"groupID\":\"1193166060\",\"userID\":\"1026082681\",\"roleLevel\":20,\"joinTime\":1716534979694,\"nickname\":\"test\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7497605401\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7497605401\"},{\"groupID\":\"1193166060\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1716534996943,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3418577436\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3418577436\"}]}}"}
+2024-06-24 10:57:02.127 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":9,\"members\":[{\"groupID\":\"3417930724\",\"userID\":\"2839845469\",\"roleLevel\":100,\"joinTime\":1709890431190,\"nickname\":\"OpenIM-Kevln\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2839845469/image_cropper_CEAE004E-C57C-44F9-956D-968BA0CA0E6B-4437-000002C381F846B4.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7343731800\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7343731800\"},{\"groupID\":\"3417930724\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1709890431190,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7343731800\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7343731800\"},{\"groupID\":\"3417930724\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1709890431190,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7343731800\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7343731800\"},{\"groupID\":\"3417930724\",\"userID\":\"2882899447\",\"roleLevel\":20,\"joinTime\":1709891471737,\"nickname\":\"OpenIM-blooming\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7343731800\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7343731800\"},{\"groupID\":\"3417930724\",\"userID\":\"3418577436\",\"roleLevel\":20,\"joinTime\":1709891471737,\"nickname\":\"OpenIM-skiffer\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/3418577436/BD14C2C1956AB2E1BD8A9F33E76220BE (1).jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7343731800\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7343731800\"},{\"groupID\":\"3417930724\",\"userID\":\"4530769942\",\"roleLevel\":20,\"joinTime\":1709891471737,\"nickname\":\"snake\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7343731800\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7343731800\"},{\"groupID\":\"3417930724\",\"userID\":\"5292156665\",\"roleLevel\":20,\"joinTime\":1709891471737,\"nickname\":\"Oliver\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5292156665/storage/emulated/0/Android/data/io.openim.android.demo/cache/1706265155247/1706265148858.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7343731800\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7343731800\"},{\"groupID\":\"3417930724\",\"userID\":\"5668985363\",\"roleLevel\":20,\"joinTime\":1709891471737,\"nickname\":\"Smile\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5668985363/image_cropper_1704713618993.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7343731800\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7343731800\"},{\"groupID\":\"3417930724\",\"userID\":\"7343731800\",\"roleLevel\":20,\"joinTime\":1709890431190,\"nickname\":\"åŗé\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7343731800/垎äŋĄæĒåž_20240308173203.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7343731800\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7343731800\"}]}}"}
+2024-06-24 10:57:02.127 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":7,\"members\":[{\"groupID\":\"2145904160\",\"userID\":\"3233270846\",\"roleLevel\":100,\"joinTime\":1716881876627,\"nickname\":\"hhh\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3233270846\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3233270846\"},{\"groupID\":\"2145904160\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1716881876627,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3233270846\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3233270846\"},{\"groupID\":\"2145904160\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1716881876627,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3233270846\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3233270846\"},{\"groupID\":\"2145904160\",\"userID\":\"2839845469\",\"roleLevel\":20,\"joinTime\":1716881876627,\"nickname\":\"OpenIM-Kevln\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2839845469/image_cropper_CEAE004E-C57C-44F9-956D-968BA0CA0E6B-4437-000002C381F846B4.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3233270846\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3233270846\"},{\"groupID\":\"2145904160\",\"userID\":\"2882899447\",\"roleLevel\":20,\"joinTime\":1716881876627,\"nickname\":\"OpenIM-blooming\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3233270846\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3233270846\"},{\"groupID\":\"2145904160\",\"userID\":\"5292156665\",\"roleLevel\":20,\"joinTime\":1716881876627,\"nickname\":\"Oliver\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5292156665/storage/emulated/0/Android/data/io.openim.android.demo/cache/1706265155247/1706265148858.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3233270846\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3233270846\"},{\"groupID\":\"2145904160\",\"userID\":\"5668985363\",\"roleLevel\":20,\"joinTime\":1716881876627,\"nickname\":\"Smile\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5668985363/image_cropper_1704713618993.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3233270846\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3233270846\"}]}}"}
+2024-06-24 10:57:02.127 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "70ms"}
+2024-06-24 10:57:02.127 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":5,\"members\":[{\"groupID\":\"2479200198\",\"userID\":\"9735279232\",\"roleLevel\":100,\"joinTime\":1716986650437,\"nickname\":\"æ¨åēˇ\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"9735279232\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"9735279232\"},{\"groupID\":\"2479200198\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1716986650437,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"9735279232\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"9735279232\"},{\"groupID\":\"2479200198\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1716986650437,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"9735279232\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"9735279232\"},{\"groupID\":\"2479200198\",\"userID\":\"2839845469\",\"roleLevel\":20,\"joinTime\":1716986650437,\"nickname\":\"OpenIM-Kevln\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2839845469/image_cropper_CEAE004E-C57C-44F9-956D-968BA0CA0E6B-4437-000002C381F846B4.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"9735279232\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"9735279232\"},{\"groupID\":\"2479200198\",\"userID\":\"2882899447\",\"roleLevel\":20,\"joinTime\":1716986650437,\"nickname\":\"OpenIM-blooming\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"9735279232\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"9735279232\"}]}}"}
+2024-06-24 10:57:02.128 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "205ms"}
+2024-06-24 10:57:02.130 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "208ms"}
+2024-06-24 10:57:02.137 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":14,\"members\":[{\"groupID\":\"324253771\",\"userID\":\"1695766238\",\"roleLevel\":100,\"joinTime\":1693192158086,\"nickname\":\"Gordon1122333\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7009965934\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"7009965934\"},{\"groupID\":\"324253771\",\"userID\":\"1531800981\",\"roleLevel\":60,\"joinTime\":1693184277227,\"nickname\":\"OpenIM-Brett\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1531800981/99468005.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7009965934\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"7009965934\"},{\"groupID\":\"324253771\",\"userID\":\"3418577436\",\"roleLevel\":60,\"joinTime\":1693184277227,\"nickname\":\"OpenIM-skiffer\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/3418577436/BD14C2C1956AB2E1BD8A9F33E76220BE (1).jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7009965934\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"7009965934\"},{\"groupID\":\"324253771\",\"userID\":\"1035025841\",\"roleLevel\":20,\"joinTime\":1703499842996,\"nickname\":\"openimIos-\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1035025841/1703645744598_img-1701149298684f16e210025edac32b00418866d89c64e5def2deaf36ae0088476bf83df2c098e.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7497605401\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7497605401\"},{\"groupID\":\"324253771\",\"userID\":\"2276632311\",\"roleLevel\":20,\"joinTime\":1702610322057,\"nickname\":\"sk-test\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3418577436\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3418577436\"},{\"groupID\":\"324253771\",\"userID\":\"2839845469\",\"roleLevel\":20,\"joinTime\":1693184277227,\"nickname\":\"OpenIM-Kevln\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2839845469/image_cropper_CEAE004E-C57C-44F9-956D-968BA0CA0E6B-4437-000002C381F846B4.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7009965934\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"7009965934\"},{\"groupID\":\"324253771\",\"userID\":\"2882899447\",\"roleLevel\":20,\"joinTime\":1693184500045,\"nickname\":\"OpenIM-blooming\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\",\"appMangerLevel\":0,\"joinSource\":3,\"operatorUserID\":\"1531800981\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"\"},{\"groupID\":\"324253771\",\"userID\":\"2890713225\",\"roleLevel\":20,\"joinTime\":1693184883985,\"nickname\":\"chao\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2890713225/image_cropper_1715156142003.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7009965934\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"7009965934\"},{\"groupID\":\"324253771\",\"userID\":\"4911414951\",\"roleLevel\":20,\"joinTime\":1711521350926,\"nickname\":\"OpenimAnd-Jane\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4911414951/image_2024-05-06-20-59.111.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3418577436\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"\"},{\"groupID\":\"324253771\",\"userID\":\"4918276559\",\"roleLevel\":20,\"joinTime\":1697428327837,\"nickname\":\"OpenIM Service\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4918276559/storage/emulated/0/Android/data/io.openim.android.demo/cache/1701055992946/1701055983961.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7009965934\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7009965934\"},{\"groupID\":\"324253771\",\"userID\":\"5292156665\",\"roleLevel\":20,\"joinTime\":1714469571716,\"nickname\":\"Oliver\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5292156665/storage/emulated/0/Android/data/io.openim.android.demo/cache/1706265155247/1706265148858.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1035025841\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1035025841\"},{\"groupID\":\"324253771\",\"userID\":\"7497605401\",\"roleLevel\":20,\"joinTime\":1702882166307,\"nickname\":\"Jane\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7497605401/åąåšæĒåž 2024-05-15 110821.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4918276559\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4918276559\"},{\"groupID\":\"324253771\",\"userID\":\"8203292432\",\"roleLevel\":20,\"joinTime\":1708226008269,\"nickname\":\"alex\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3418577436\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3418577436\"},{\"groupID\":\"324253771\",\"userID\":\"9361332642\",\"roleLevel\":20,\"joinTime\":1718092883443,\"nickname\":\"bona\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3418577436\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3418577436\"}]}}"}
+2024-06-24 10:57:02.137 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "83ms"}
+2024-06-24 10:57:02.137 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":8,\"members\":[{\"groupID\":\"129612413\",\"userID\":\"7854235526\",\"roleLevel\":100,\"joinTime\":1708318649883,\"nickname\":\"č\",\"faceURL\":\"ic_avatar_06\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7854235526\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7854235526\"},{\"groupID\":\"129612413\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1708318649883,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7854235526\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7854235526\"},{\"groupID\":\"129612413\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1708318649883,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7854235526\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7854235526\"},{\"groupID\":\"129612413\",\"userID\":\"2839845469\",\"roleLevel\":20,\"joinTime\":1708318649883,\"nickname\":\"OpenIM-Kevln\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2839845469/image_cropper_CEAE004E-C57C-44F9-956D-968BA0CA0E6B-4437-000002C381F846B4.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7854235526\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7854235526\"},{\"groupID\":\"129612413\",\"userID\":\"2882899447\",\"roleLevel\":20,\"joinTime\":1708318649883,\"nickname\":\"OpenIM-blooming\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7854235526\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7854235526\"},{\"groupID\":\"129612413\",\"userID\":\"3418577436\",\"roleLevel\":20,\"joinTime\":1708318649883,\"nickname\":\"OpenIM-skiffer\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/3418577436/BD14C2C1956AB2E1BD8A9F33E76220BE (1).jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7854235526\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7854235526\"},{\"groupID\":\"129612413\",\"userID\":\"5292156665\",\"roleLevel\":20,\"joinTime\":1708318649883,\"nickname\":\"Oliver\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5292156665/storage/emulated/0/Android/data/io.openim.android.demo/cache/1706265155247/1706265148858.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7854235526\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7854235526\"},{\"groupID\":\"129612413\",\"userID\":\"7497605401\",\"roleLevel\":20,\"joinTime\":1708318649883,\"nickname\":\"Jane1\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7497605401/åąåšæĒåž 2024-05-15 110821.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7854235526\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7854235526\"}]}}"}
+2024-06-24 10:57:02.138 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":7,\"members\":[{\"groupID\":\"1898996710\",\"userID\":\"1308526907\",\"roleLevel\":100,\"joinTime\":1717071967759,\"nickname\":\"jerry\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1308526907\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1308526907\"},{\"groupID\":\"1898996710\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1717071967759,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1308526907\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1308526907\"},{\"groupID\":\"1898996710\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1717071967759,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1308526907\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1308526907\"},{\"groupID\":\"1898996710\",\"userID\":\"2882899447\",\"roleLevel\":20,\"joinTime\":1717071967759,\"nickname\":\"OpenIM-blooming\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1308526907\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1308526907\"},{\"groupID\":\"1898996710\",\"userID\":\"3418577436\",\"roleLevel\":20,\"joinTime\":1717071967759,\"nickname\":\"OpenIM-skiffer\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/3418577436/BD14C2C1956AB2E1BD8A9F33E76220BE (1).jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1308526907\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1308526907\"},{\"groupID\":\"1898996710\",\"userID\":\"5668985363\",\"roleLevel\":20,\"joinTime\":1717071994779,\"nickname\":\"Smile\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5668985363/image_cropper_1704713618993.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1308526907\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1308526907\"},{\"groupID\":\"1898996710\",\"userID\":\"7497605401\",\"roleLevel\":20,\"joinTime\":1717071994779,\"nickname\":\"Jane1\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7497605401/åąåšæĒåž 2024-05-15 110821.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1308526907\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1308526907\"}]}}"}
+2024-06-24 10:57:02.138 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":8,\"members\":[{\"groupID\":\"3504722739\",\"userID\":\"2905053077\",\"roleLevel\":100,\"joinTime\":1702537175541,\"nickname\":\"saber\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2905053077\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2905053077\"},{\"groupID\":\"3504722739\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1702537175541,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2905053077\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2905053077\"},{\"groupID\":\"3504722739\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1702537175541,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2905053077\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2905053077\"},{\"groupID\":\"3504722739\",\"userID\":\"2839845469\",\"roleLevel\":20,\"joinTime\":1702537175541,\"nickname\":\"OpenIM-Kevln\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2839845469/image_cropper_CEAE004E-C57C-44F9-956D-968BA0CA0E6B-4437-000002C381F846B4.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2905053077\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2905053077\"},{\"groupID\":\"3504722739\",\"userID\":\"2995890101\",\"roleLevel\":20,\"joinTime\":1702537175541,\"nickname\":\"ååå\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2905053077\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2905053077\"},{\"groupID\":\"3504722739\",\"userID\":\"5292156665\",\"roleLevel\":20,\"joinTime\":1702537175541,\"nickname\":\"Oliver\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5292156665/storage/emulated/0/Android/data/io.openim.android.demo/cache/1706265155247/1706265148858.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2905053077\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2905053077\"},{\"groupID\":\"3504722739\",\"userID\":\"8689302929\",\"roleLevel\":20,\"joinTime\":1702537175541,\"nickname\":\"kernal\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2905053077\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2905053077\"},{\"groupID\":\"3504722739\",\"userID\":\"8910288550\",\"roleLevel\":20,\"joinTime\":1702537175541,\"nickname\":\"holiday\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2905053077\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2905053077\"}]}}"}
+2024-06-24 10:57:02.138 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":6,\"members\":[{\"groupID\":\"1393169672\",\"userID\":\"1050659067\",\"roleLevel\":100,\"joinTime\":1715182015590,\"nickname\":\"assa\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1050659067\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1050659067\"},{\"groupID\":\"1393169672\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1715182015590,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1050659067\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1050659067\"},{\"groupID\":\"1393169672\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1715182015590,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1050659067\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1050659067\"},{\"groupID\":\"1393169672\",\"userID\":\"2839845469\",\"roleLevel\":20,\"joinTime\":1715182015590,\"nickname\":\"OpenIM-Kevln\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2839845469/image_cropper_CEAE004E-C57C-44F9-956D-968BA0CA0E6B-4437-000002C381F846B4.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1050659067\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1050659067\"},{\"groupID\":\"1393169672\",\"userID\":\"2882899447\",\"roleLevel\":20,\"joinTime\":1715182015590,\"nickname\":\"OpenIM-blooming\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1050659067\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1050659067\"},{\"groupID\":\"1393169672\",\"userID\":\"9564624893\",\"roleLevel\":20,\"joinTime\":1715229527366,\"nickname\":\"åå\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1050659067\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1050659067\"}]}}"}
+2024-06-24 10:57:02.138 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":18350356362473929706,\"versionID\":\"6672d39de27166fe77811709\",\"equal\":false,\"userIDs\":[\"3233270846\",\"1695766238\",\"2725451243\"]}}"}
+2024-06-24 10:57:02.138 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":6,\"members\":[{\"groupID\":\"853658007\",\"userID\":\"6319015024\",\"roleLevel\":100,\"joinTime\":1704273179303,\"nickname\":\"OpenIM-wind\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/6319015024/pexels-photo-2174974.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"6319015024\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"6319015024\"},{\"groupID\":\"853658007\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1704273287682,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":3,\"operatorUserID\":\"6319015024\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"\"},{\"groupID\":\"853658007\",\"userID\":\"3418577436\",\"roleLevel\":20,\"joinTime\":1704273906130,\"nickname\":\"OpenIM-skiffer\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/3418577436/BD14C2C1956AB2E1BD8A9F33E76220BE (1).jpg\",\"appMangerLevel\":0,\"joinSource\":3,\"operatorUserID\":\"6319015024\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"\"},{\"groupID\":\"853658007\",\"userID\":\"4918276559\",\"roleLevel\":20,\"joinTime\":1704273179303,\"nickname\":\"OpenIM Service\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4918276559/storage/emulated/0/Android/data/io.openim.android.demo/cache/1701055992946/1701055983961.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"6319015024\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"6319015024\"},{\"groupID\":\"853658007\",\"userID\":\"5430821760\",\"roleLevel\":20,\"joinTime\":1704273179303,\"nickname\":\"ouyang\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"6319015024\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"6319015024\"},{\"groupID\":\"853658007\",\"userID\":\"7298268529\",\"roleLevel\":20,\"joinTime\":1704273179303,\"nickname\":\"openim733\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"6319015024\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"6319015024\"}]}}"}
+2024-06-24 10:57:02.138 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":5,\"members\":[{\"groupID\":\"3227287827\",\"userID\":\"8772228740\",\"roleLevel\":100,\"joinTime\":1693592291228,\"nickname\":\"įŋå\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/8772228740/icon.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"8772228740\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"8772228740\"},{\"groupID\":\"3227287827\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1693592291228,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"8772228740\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"8772228740\"},{\"groupID\":\"3227287827\",\"userID\":\"2882899447\",\"roleLevel\":20,\"joinTime\":1693592291228,\"nickname\":\"OpenIM-blooming\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"8772228740\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"8772228740\"},{\"groupID\":\"3227287827\",\"userID\":\"7849831301\",\"roleLevel\":20,\"joinTime\":1693592291228,\"nickname\":\"003\",\"faceURL\":\"http://14.29.213.197:50002/object/7849831301/flutter_android_qrcode.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"8772228740\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"8772228740\"},{\"groupID\":\"3227287827\",\"userID\":\"9285257296\",\"roleLevel\":20,\"joinTime\":1693592345937,\"nickname\":\"00544\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/9285257296/8018359489_file_e33ea1883fde314aac0a7faab751dae2.webp\",\"appMangerLevel\":0,\"joinSource\":3,\"operatorUserID\":\"8772228740\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"\"}]}}"}
+2024-06-24 10:57:02.138 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":3,\"members\":[{\"groupID\":\"19439682\",\"userID\":\"6554716140\",\"roleLevel\":100,\"joinTime\":1702888507886,\"nickname\":\"shuinan\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"6554716140\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"6554716140\"},{\"groupID\":\"19439682\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1702888507886,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"6554716140\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"6554716140\"},{\"groupID\":\"19439682\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1702888507886,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"6554716140\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"6554716140\"}]}}"}
+2024-06-24 10:57:02.138 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":9945061657028923038,\"versionID\":\"6672d39de27166fe778116a7\",\"equal\":false,\"userIDs\":[\"3963875243\",\"1695766238\",\"2725451243\",\"2839845469\",\"2882899447\"]}}"}
+2024-06-24 10:57:02.140 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":9,\"members\":[{\"groupID\":\"2677549796\",\"userID\":\"5553194662\",\"roleLevel\":100,\"joinTime\":1709186337395,\"nickname\":\"åŽåįŗįŗ\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5553194662/storage/emulated/0/Android/data/io.openim.android.demo/cache/1710897301210.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"5553194662\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"5553194662\"},{\"groupID\":\"2677549796\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1709186337395,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"5553194662\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"5553194662\"},{\"groupID\":\"2677549796\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1709186337395,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"5553194662\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"5553194662\"},{\"groupID\":\"2677549796\",\"userID\":\"2839845469\",\"roleLevel\":20,\"joinTime\":1709186337395,\"nickname\":\"OpenIM-Kevln\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2839845469/image_cropper_CEAE004E-C57C-44F9-956D-968BA0CA0E6B-4437-000002C381F846B4.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"5553194662\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"5553194662\"},{\"groupID\":\"2677549796\",\"userID\":\"2882899447\",\"roleLevel\":20,\"joinTime\":1709186337395,\"nickname\":\"OpenIM-blooming\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"5553194662\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"5553194662\"},{\"groupID\":\"2677549796\",\"userID\":\"3418577436\",\"roleLevel\":20,\"joinTime\":1709186337395,\"nickname\":\"OpenIM-skiffer\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/3418577436/BD14C2C1956AB2E1BD8A9F33E76220BE (1).jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"5553194662\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"5553194662\"},{\"groupID\":\"2677549796\",\"userID\":\"5292156665\",\"roleLevel\":20,\"joinTime\":1709186337395,\"nickname\":\"Oliver\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5292156665/storage/emulated/0/Android/data/io.openim.android.demo/cache/1706265155247/1706265148858.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"5553194662\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"5553194662\"},{\"groupID\":\"2677549796\",\"userID\":\"5668985363\",\"roleLevel\":20,\"joinTime\":1709186337395,\"nickname\":\"Smile\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5668985363/image_cropper_1704713618993.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"5553194662\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"5553194662\"},{\"groupID\":\"2677549796\",\"userID\":\"7497605401\",\"roleLevel\":20,\"joinTime\":1709186337395,\"nickname\":\"Jane1\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7497605401/åąåšæĒåž 2024-05-15 110821.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"5553194662\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"5553194662\"}]}}"}
+2024-06-24 10:57:02.140 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":6,\"members\":[{\"groupID\":\"4075238610\",\"userID\":\"7516710182\",\"roleLevel\":100,\"joinTime\":1710187495949,\"nickname\":\"Youth\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7516710182\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7516710182\"},{\"groupID\":\"4075238610\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1710187495949,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7516710182\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7516710182\"},{\"groupID\":\"4075238610\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1710187495949,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7516710182\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7516710182\"},{\"groupID\":\"4075238610\",\"userID\":\"5292156665\",\"roleLevel\":20,\"joinTime\":1710187495949,\"nickname\":\"Oliver\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5292156665/storage/emulated/0/Android/data/io.openim.android.demo/cache/1706265155247/1706265148858.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7516710182\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7516710182\"},{\"groupID\":\"4075238610\",\"userID\":\"7497605401\",\"roleLevel\":20,\"joinTime\":1710187495949,\"nickname\":\"Jane1\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7497605401/åąåšæĒåž 2024-05-15 110821.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7516710182\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7516710182\"},{\"groupID\":\"4075238610\",\"userID\":\"9169530932\",\"roleLevel\":20,\"joinTime\":1710187495949,\"nickname\":\"AiRobot\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7516710182\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7516710182\"}]}}"}
+2024-06-24 10:57:02.140 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":7,\"members\":[{\"groupID\":\"45636129\",\"userID\":\"3859571259\",\"roleLevel\":100,\"joinTime\":1716279740329,\"nickname\":\"äē˛äē˛1\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"7497605401\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"7497605401\"},{\"groupID\":\"45636129\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1715583159151,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"8879166186\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"8879166186\"},{\"groupID\":\"45636129\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1715583159151,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"8879166186\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"8879166186\"},{\"groupID\":\"45636129\",\"userID\":\"4911414951\",\"roleLevel\":20,\"joinTime\":1714982636138,\"nickname\":\"OpenimAnd-Jane\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4911414951/image_2024-05-06-20-59.111.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4911414951\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4911414951\"},{\"groupID\":\"45636129\",\"userID\":\"4918276559\",\"roleLevel\":20,\"joinTime\":1714982636138,\"nickname\":\"OpenIM Service\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4918276559/storage/emulated/0/Android/data/io.openim.android.demo/cache/1701055992946/1701055983961.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4911414951\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4911414951\"},{\"groupID\":\"45636129\",\"userID\":\"7497605401\",\"roleLevel\":20,\"joinTime\":1716456329093,\"nickname\":\"Jane \",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7497605401/åąåšæĒåž 2024-05-15 110821.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3859571259\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4911414951\"},{\"groupID\":\"45636129\",\"userID\":\"8879166186\",\"roleLevel\":20,\"joinTime\":1714985315925,\"nickname\":\"PwJane\",\"faceURL\":\"http://14.29.213.197:50002/object/8879166186/storage/emulated/0/Android/data/io.openim.android.demo/cache/1715072796388/1715072794908.jpg\",\"appMangerLevel\":0,\"joinSource\":3,\"operatorUserID\":\"4918276559\",\"ex\":\"\",\"muteEndTime\":1715573787511,\"inviterUserID\":\"\"}]}}"}
+2024-06-24 10:57:02.140 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":9,\"members\":[{\"groupID\":\"1254300734\",\"userID\":\"4681582191\",\"roleLevel\":100,\"joinTime\":1713582441627,\"nickname\":\"zjnbfjh\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4681582191\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4681582191\"},{\"groupID\":\"1254300734\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1713582441627,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4681582191\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4681582191\"},{\"groupID\":\"1254300734\",\"userID\":\"2839845469\",\"roleLevel\":20,\"joinTime\":1713582513485,\"nickname\":\"OpenIM-Kevln\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2839845469/image_cropper_CEAE004E-C57C-44F9-956D-968BA0CA0E6B-4437-000002C381F846B4.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4681582191\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4681582191\"},{\"groupID\":\"1254300734\",\"userID\":\"3418577436\",\"roleLevel\":20,\"joinTime\":1713582513485,\"nickname\":\"OpenIM-skiffer\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/3418577436/BD14C2C1956AB2E1BD8A9F33E76220BE (1).jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4681582191\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4681582191\"},{\"groupID\":\"1254300734\",\"userID\":\"4918276559\",\"roleLevel\":20,\"joinTime\":1713582513485,\"nickname\":\"OpenIM Service\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4918276559/storage/emulated/0/Android/data/io.openim.android.demo/cache/1701055992946/1701055983961.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4681582191\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4681582191\"},{\"groupID\":\"1254300734\",\"userID\":\"5292156665\",\"roleLevel\":20,\"joinTime\":1713582544324,\"nickname\":\"Oliver\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5292156665/storage/emulated/0/Android/data/io.openim.android.demo/cache/1706265155247/1706265148858.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4681582191\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4681582191\"},{\"groupID\":\"1254300734\",\"userID\":\"5620768201\",\"roleLevel\":20,\"joinTime\":1713582544324,\"nickname\":\"DFđđ¤\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5620768201/qq襨æ
.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4681582191\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4681582191\"},{\"groupID\":\"1254300734\",\"userID\":\"5668985363\",\"roleLevel\":20,\"joinTime\":1713582544324,\"nickname\":\"Smile\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5668985363/image_cropper_1704713618993.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4681582191\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4681582191\"},{\"groupID\":\"1254300734\",\"userID\":\"7497605401\",\"roleLevel\":20,\"joinTime\":1713582544324,\"nickname\":\"Jane1\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7497605401/åąåšæĒåž 2024-05-15 110821.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4681582191\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4681582191\"}]}}"}
+2024-06-24 10:57:02.140 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":12,\"members\":[{\"groupID\":\"2527119729\",\"userID\":\"2680629439\",\"roleLevel\":100,\"joinTime\":1714381168028,\"nickname\":\"111\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2680629439\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2680629439\"},{\"groupID\":\"2527119729\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1714381168028,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2680629439\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2680629439\"},{\"groupID\":\"2527119729\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1714381168028,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2680629439\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2680629439\"},{\"groupID\":\"2527119729\",\"userID\":\"2839845469\",\"roleLevel\":20,\"joinTime\":1714381168028,\"nickname\":\"OpenIM-Kevln\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2839845469/image_cropper_CEAE004E-C57C-44F9-956D-968BA0CA0E6B-4437-000002C381F846B4.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2680629439\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2680629439\"},{\"groupID\":\"2527119729\",\"userID\":\"2882899447\",\"roleLevel\":20,\"joinTime\":1714381168028,\"nickname\":\"OpenIM-blooming\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2680629439\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2680629439\"},{\"groupID\":\"2527119729\",\"userID\":\"3418577436\",\"roleLevel\":20,\"joinTime\":1714381168028,\"nickname\":\"OpenIM-skiffer\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/3418577436/BD14C2C1956AB2E1BD8A9F33E76220BE (1).jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2680629439\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2680629439\"},{\"groupID\":\"2527119729\",\"userID\":\"4918276559\",\"roleLevel\":20,\"joinTime\":1714381168028,\"nickname\":\"OpenIM Service\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4918276559/storage/emulated/0/Android/data/io.openim.android.demo/cache/1701055992946/1701055983961.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2680629439\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2680629439\"},{\"groupID\":\"2527119729\",\"userID\":\"5292156665\",\"roleLevel\":20,\"joinTime\":1714381168028,\"nickname\":\"Oliver\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5292156665/storage/emulated/0/Android/data/io.openim.android.demo/cache/1706265155247/1706265148858.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2680629439\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2680629439\"},{\"groupID\":\"2527119729\",\"userID\":\"5620768201\",\"roleLevel\":20,\"joinTime\":1714381168028,\"nickname\":\"DFđđ¤\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5620768201/qq襨æ
.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2680629439\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2680629439\"},{\"groupID\":\"2527119729\",\"userID\":\"5668985363\",\"roleLevel\":20,\"joinTime\":1714381168028,\"nickname\":\"Smile\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5668985363/image_cropper_1704713618993.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2680629439\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2680629439\"},{\"groupID\":\"2527119729\",\"userID\":\"7497605401\",\"roleLevel\":20,\"joinTime\":1714381168028,\"nickname\":\"Jane1\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7497605401/åąåšæĒåž 2024-05-15 110821.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2680629439\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2680629439\"},{\"groupID\":\"2527119729\",\"userID\":\"9169530932\",\"roleLevel\":20,\"joinTime\":1714381168028,\"nickname\":\"AiRobot\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2680629439\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"2680629439\"}]}}"}
+2024-06-24 10:57:02.143 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":9,\"members\":[{\"groupID\":\"773702228\",\"userID\":\"4995366980\",\"roleLevel\":100,\"joinTime\":1706965447531,\"nickname\":\"karl\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4995366980\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4995366980\"},{\"groupID\":\"773702228\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1706965447531,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4995366980\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4995366980\"},{\"groupID\":\"773702228\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1706965447531,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4995366980\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4995366980\"},{\"groupID\":\"773702228\",\"userID\":\"2839845469\",\"roleLevel\":20,\"joinTime\":1706965447531,\"nickname\":\"OpenIM-Kevln\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2839845469/image_cropper_CEAE004E-C57C-44F9-956D-968BA0CA0E6B-4437-000002C381F846B4.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4995366980\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4995366980\"},{\"groupID\":\"773702228\",\"userID\":\"2882899447\",\"roleLevel\":20,\"joinTime\":1706965447531,\"nickname\":\"OpenIM-blooming\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4995366980\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4995366980\"},{\"groupID\":\"773702228\",\"userID\":\"3418577436\",\"roleLevel\":20,\"joinTime\":1706965447531,\"nickname\":\"OpenIM-skiffer\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/3418577436/BD14C2C1956AB2E1BD8A9F33E76220BE (1).jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4995366980\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4995366980\"},{\"groupID\":\"773702228\",\"userID\":\"5292156665\",\"roleLevel\":20,\"joinTime\":1706965447531,\"nickname\":\"Oliver\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5292156665/storage/emulated/0/Android/data/io.openim.android.demo/cache/1706265155247/1706265148858.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4995366980\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4995366980\"},{\"groupID\":\"773702228\",\"userID\":\"5668985363\",\"roleLevel\":20,\"joinTime\":1706965447531,\"nickname\":\"Smile\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5668985363/image_cropper_1704713618993.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4995366980\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4995366980\"},{\"groupID\":\"773702228\",\"userID\":\"7497605401\",\"roleLevel\":20,\"joinTime\":1706965447531,\"nickname\":\"Jane1\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7497605401/åąåšæĒåž 2024-05-15 110821.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4995366980\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4995366980\"}]}}"}
+2024-06-24 10:57:02.143 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":9,\"members\":[{\"groupID\":\"1738113305\",\"userID\":\"2890713225\",\"roleLevel\":100,\"joinTime\":1692838259544,\"nickname\":\"chao\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2890713225/image_cropper_1715156142003.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2890713225\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"2890713225\"},{\"groupID\":\"1738113305\",\"userID\":\"1112594574\",\"roleLevel\":20,\"joinTime\":1692838259544,\"nickname\":\"D\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2890713225\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"2890713225\"},{\"groupID\":\"1738113305\",\"userID\":\"1650936842\",\"roleLevel\":20,\"joinTime\":1692838343084,\"nickname\":\"1234\",\"faceURL\":\"/storage/emulated/0/Pictures/1691572509231.jpg\",\"appMangerLevel\":0,\"joinSource\":4,\"operatorUserID\":\"2890713225\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"\"},{\"groupID\":\"1738113305\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1693218996712,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"8930133512\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"8930133512\"},{\"groupID\":\"1738113305\",\"userID\":\"2563100730\",\"roleLevel\":20,\"joinTime\":1692838259544,\"nickname\":\"éŋæ¯ččŦå°ąįįladsįģååŖĢ大å¤Ģæĸæģé\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2890713225\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"2890713225\"},{\"groupID\":\"1738113305\",\"userID\":\"3865122896\",\"roleLevel\":20,\"joinTime\":1692838259544,\"nickname\":\"ååäē\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2890713225\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"2890713225\"},{\"groupID\":\"1738113305\",\"userID\":\"4446845883\",\"roleLevel\":20,\"joinTime\":1692838259544,\"nickname\":\"Afei\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2890713225\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"2890713225\"},{\"groupID\":\"1738113305\",\"userID\":\"7659814119\",\"roleLevel\":20,\"joinTime\":1692838259544,\"nickname\":\"AX\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2890713225\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"2890713225\"},{\"groupID\":\"1738113305\",\"userID\":\"8930133512\",\"roleLevel\":20,\"joinTime\":1692838259544,\"nickname\":\"ahmad\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2890713225\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"2890713225\"}]}}"}
+2024-06-24 10:57:02.143 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":10,\"members\":[{\"groupID\":\"3384390386\",\"userID\":\"8203292432\",\"roleLevel\":100,\"joinTime\":1711331880567,\"nickname\":\"alex\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"8203292432\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"8203292432\"},{\"groupID\":\"3384390386\",\"userID\":\"1312766592\",\"roleLevel\":20,\"joinTime\":1711332367886,\"nickname\":\"DanGiant\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":3,\"operatorUserID\":\"8203292432\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"\"},{\"groupID\":\"3384390386\",\"userID\":\"1531800981\",\"roleLevel\":20,\"joinTime\":1711332706402,\"nickname\":\"OpenIM-Brett\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1531800981/99468005.webp\",\"appMangerLevel\":0,\"joinSource\":3,\"operatorUserID\":\"8203292432\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"\"},{\"groupID\":\"3384390386\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1711372591490,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3418577436\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3418577436\"},{\"groupID\":\"3384390386\",\"userID\":\"2882899447\",\"roleLevel\":20,\"joinTime\":1711331880567,\"nickname\":\"OpenIM-blooming\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"8203292432\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"8203292432\"},{\"groupID\":\"3384390386\",\"userID\":\"2890713225\",\"roleLevel\":20,\"joinTime\":1711353672901,\"nickname\":\"chao\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2890713225/image_cropper_1715156142003.jpg\",\"appMangerLevel\":0,\"joinSource\":4,\"operatorUserID\":\"8203292432\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"\"},{\"groupID\":\"3384390386\",\"userID\":\"3418577436\",\"roleLevel\":20,\"joinTime\":1711331880567,\"nickname\":\"OpenIM-skiffer\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/3418577436/BD14C2C1956AB2E1BD8A9F33E76220BE (1).jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"8203292432\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"8203292432\"},{\"groupID\":\"3384390386\",\"userID\":\"5304967461\",\"roleLevel\":20,\"joinTime\":1711332051054,\"nickname\":\"å°įēĸ\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5304967461/image_cropper_1711332115708.jpg\",\"appMangerLevel\":0,\"joinSource\":4,\"operatorUserID\":\"8203292432\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"\"},{\"groupID\":\"3384390386\",\"userID\":\"5668985363\",\"roleLevel\":20,\"joinTime\":1711331880567,\"nickname\":\"Smile\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5668985363/image_cropper_1704713618993.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"8203292432\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"8203292432\"},{\"groupID\":\"3384390386\",\"userID\":\"6858024107\",\"roleLevel\":20,\"joinTime\":1711346437520,\"nickname\":\"Albert\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"8203292432\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"\"}]}}"}
+2024-06-24 10:57:02.143 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "76ms"}
+2024-06-24 10:57:02.144 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.145 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "223ms"}
+2024-06-24 10:57:02.146 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":11,\"members\":[{\"groupID\":\"1662278840\",\"userID\":\"4950713210\",\"roleLevel\":100,\"joinTime\":1714039865285,\"nickname\":\"helpmsg\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4950713210\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4950713210\"},{\"groupID\":\"1662278840\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1714039865285,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4950713210\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4950713210\"},{\"groupID\":\"1662278840\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1714039865285,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4950713210\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4950713210\"},{\"groupID\":\"1662278840\",\"userID\":\"2839845469\",\"roleLevel\":20,\"joinTime\":1714039865285,\"nickname\":\"OpenIM-Kevln\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2839845469/image_cropper_CEAE004E-C57C-44F9-956D-968BA0CA0E6B-4437-000002C381F846B4.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4950713210\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4950713210\"},{\"groupID\":\"1662278840\",\"userID\":\"2882899447\",\"roleLevel\":20,\"joinTime\":1714039865285,\"nickname\":\"OpenIM-blooming\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4950713210\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4950713210\"},{\"groupID\":\"1662278840\",\"userID\":\"3418577436\",\"roleLevel\":20,\"joinTime\":1714039865285,\"nickname\":\"OpenIM-skiffer\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/3418577436/BD14C2C1956AB2E1BD8A9F33E76220BE (1).jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4950713210\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4950713210\"},{\"groupID\":\"1662278840\",\"userID\":\"5292156665\",\"roleLevel\":20,\"joinTime\":1714039865285,\"nickname\":\"Oliver\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5292156665/storage/emulated/0/Android/data/io.openim.android.demo/cache/1706265155247/1706265148858.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4950713210\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4950713210\"},{\"groupID\":\"1662278840\",\"userID\":\"5620768201\",\"roleLevel\":20,\"joinTime\":1714039865285,\"nickname\":\"DFđđ¤\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5620768201/qq襨æ
.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4950713210\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4950713210\"},{\"groupID\":\"1662278840\",\"userID\":\"5668985363\",\"roleLevel\":20,\"joinTime\":1714039865285,\"nickname\":\"Smile\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5668985363/image_cropper_1704713618993.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4950713210\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4950713210\"},{\"groupID\":\"1662278840\",\"userID\":\"7497605401\",\"roleLevel\":20,\"joinTime\":1714039865285,\"nickname\":\"Jane1\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7497605401/åąåšæĒåž 2024-05-15 110821.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4950713210\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4950713210\"},{\"groupID\":\"1662278840\",\"userID\":\"9169530932\",\"roleLevel\":20,\"joinTime\":1714039865285,\"nickname\":\"AiRobot\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4950713210\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4950713210\"}]}}"}
+2024-06-24 10:57:02.147 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "225ms"}
+2024-06-24 10:57:02.147 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_member_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"total\":19,\"members\":[{\"groupID\":\"2670578906\",\"userID\":\"1762559417\",\"roleLevel\":100,\"joinTime\":1702954557478,\"nickname\":\"B\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1762559417/storage/emulated/0/Android/data/io.openim.android.demo/cache/1705314460359/1705314457751.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1762559417\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1762559417\"},{\"groupID\":\"2670578906\",\"userID\":\"1001978187\",\"roleLevel\":20,\"joinTime\":1708504859350,\"nickname\":\"CåĨ\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1001978187/storage/emulated/0/Android/data/io.openim.android.demo/cache/1705314301108.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1762559417\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1762559417\"},{\"groupID\":\"2670578906\",\"userID\":\"1531800981\",\"roleLevel\":20,\"joinTime\":1708502965240,\"nickname\":\"OpenIM-Brett\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1531800981/99468005.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1762559417\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1762559417\"},{\"groupID\":\"2670578906\",\"userID\":\"1695766238\",\"roleLevel\":20,\"joinTime\":1711436648694,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1001978187\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1001978187\"},{\"groupID\":\"2670578906\",\"userID\":\"1847173569\",\"roleLevel\":20,\"joinTime\":1711436648694,\"nickname\":\"ææ¯æĩč¯\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1001978187\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1001978187\"},{\"groupID\":\"2670578906\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1711436648694,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1001978187\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1001978187\"},{\"groupID\":\"2670578906\",\"userID\":\"2995890101\",\"roleLevel\":20,\"joinTime\":1711436648694,\"nickname\":\"ååå\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1001978187\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1001978187\"},{\"groupID\":\"2670578906\",\"userID\":\"3765484234\",\"roleLevel\":20,\"joinTime\":1715408298035,\"nickname\":\"4234\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/3765484234/1713782495110.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1531800981\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1531800981\"},{\"groupID\":\"2670578906\",\"userID\":\"4979639389\",\"roleLevel\":20,\"joinTime\":1711436648694,\"nickname\":\"1\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1001978187\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1001978187\"},{\"groupID\":\"2670578906\",\"userID\":\"5292156665\",\"roleLevel\":20,\"joinTime\":1711436738140,\"nickname\":\"Oliver\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5292156665/storage/emulated/0/Android/data/io.openim.android.demo/cache/1706265155247/1706265148858.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1001978187\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1001978187\"},{\"groupID\":\"2670578906\",\"userID\":\"5668985363\",\"roleLevel\":20,\"joinTime\":1711436738140,\"nickname\":\"Smile\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5668985363/image_cropper_1704713618993.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1001978187\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1001978187\"},{\"groupID\":\"2670578906\",\"userID\":\"6105455334\",\"roleLevel\":20,\"joinTime\":1711436648694,\"nickname\":\"2234\",\"faceURL\":\"http://14.29.213.197:50002/object/6105455334/image_cropper_6B14D589-3B22-4F83-B6A0-33FEDAC33240-337-0000000E6EB9445B.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1001978187\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1001978187\"},{\"groupID\":\"2670578906\",\"userID\":\"6767809967\",\"roleLevel\":20,\"joinTime\":1711436648694,\"nickname\":\"lee\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1001978187\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1001978187\"},{\"groupID\":\"2670578906\",\"userID\":\"7009965934\",\"roleLevel\":20,\"joinTime\":1715408518551,\"nickname\":\"đâË¡Íāŧ¡ÍË*\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7009965934/image_cropper_1697097350170.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1531800981\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1531800981\"},{\"groupID\":\"2670578906\",\"userID\":\"8134977687\",\"roleLevel\":20,\"joinTime\":1711436738140,\"nickname\":\"Xx\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/8134977687/垎äŋĄåžį_20231011164634.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1001978187\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1001978187\"},{\"groupID\":\"2670578906\",\"userID\":\"8448409603\",\"roleLevel\":20,\"joinTime\":1711436648694,\"nickname\":\"Li yuan\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/8448409603/image_cropper_E9B09BD4-4AF6-45F4-9617-D1F9F5D47C14-1619-0000008CB406D173.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1001978187\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1001978187\"},{\"groupID\":\"2670578906\",\"userID\":\"8910288550\",\"roleLevel\":20,\"joinTime\":1711436648694,\"nickname\":\"holiday\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1001978187\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1001978187\"},{\"groupID\":\"2670578906\",\"userID\":\"9749333133\",\"roleLevel\":20,\"joinTime\":1711436648694,\"nickname\":\"yff\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1001978187\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1001978187\"},{\"groupID\":\"2670578906\",\"userID\":\"openIMAdmin\",\"roleLevel\":20,\"joinTime\":1711436648694,\"nickname\":\"system3\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1001978187\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1001978187\"}]}}"}
+2024-06-24 10:57:02.149 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "216ms"}
+2024-06-24 10:57:02.150 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "225ms"}
+2024-06-24 10:57:02.152 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.152 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "228ms"}
+2024-06-24 10:57:02.155 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "233ms"}
+2024-06-24 10:57:02.155 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "85ms"}
+2024-06-24 10:57:02.156 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "227ms"}
+2024-06-24 10:57:02.157 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "233ms"}
+2024-06-24 10:57:02.158 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "237ms"}
+2024-06-24 10:57:02.159 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.159 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "81ms"}
+2024-06-24 10:57:02.160 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "228ms"}
+2024-06-24 10:57:02.161 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "229ms"}
+2024-06-24 10:57:02.162 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "230ms"}
+2024-06-24 10:57:02.163 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "239ms"}
+2024-06-24 10:57:02.164 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"3327630005\"}"}
+2024-06-24 10:57:02.165 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.165 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "233ms"}
+2024-06-24 10:57:02.166 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "235ms"}
+2024-06-24 10:57:02.167 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "236ms"}
+2024-06-24 10:57:02.168 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "239ms"}
+2024-06-24 10:57:02.169 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "238ms"}
+2024-06-24 10:57:02.170 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "238ms"}
+2024-06-24 10:57:02.171 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.171 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "241ms"}
+2024-06-24 10:57:02.172 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "245ms"}
+2024-06-24 10:57:02.174 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "242ms"}
+2024-06-24 10:57:02.176 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "246ms"}
+2024-06-24 10:57:02.176 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "86ms"}
+2024-06-24 10:57:02.177 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.178 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "258ms"}
+2024-06-24 10:57:02.179 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "249ms"}
+2024-06-24 10:57:02.180 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "259ms"}
+2024-06-24 10:57:02.182 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "251ms"}
+2024-06-24 10:57:02.183 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.183 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "258ms"}
+2024-06-24 10:57:02.185 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":15177546785252354560,\"versionID\":\"6672d39de27166fe778116e7\",\"equal\":false,\"userIDs\":[\"8518800133\",\"1695766238\",\"2725451243\"]}}"}
+2024-06-24 10:57:02.186 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "265ms"}
+2024-06-24 10:57:02.187 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "259ms"}
+2024-06-24 10:57:02.190 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "272ms"}
+2024-06-24 10:57:02.191 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.192 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "262ms"}
+2024-06-24 10:57:02.194 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "262ms"}
+2024-06-24 10:57:02.195 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "269ms"}
+2024-06-24 10:57:02.196 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "266ms"}
+2024-06-24 10:57:02.196 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "104ms"}
+2024-06-24 10:57:02.197 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "267ms"}
+2024-06-24 10:57:02.198 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "272ms"}
+2024-06-24 10:57:02.199 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "270ms"}
+2024-06-24 10:57:02.200 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "119ms"}
+2024-06-24 10:57:02.200 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.202 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "276ms"}
+2024-06-24 10:57:02.205 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "273ms"}
+2024-06-24 10:57:02.206 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "274ms"}
+2024-06-24 10:57:02.208 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "285ms"}
+2024-06-24 10:57:02.209 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.210 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "286ms"}
+2024-06-24 10:57:02.212 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "286ms"}
+2024-06-24 10:57:02.213 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "284ms"}
+2024-06-24 10:57:02.214 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "284ms"}
+2024-06-24 10:57:02.216 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"1237366857\"}"}
+2024-06-24 10:57:02.216 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.218 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "288ms"}
+2024-06-24 10:57:02.221 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_member_list", "state": "success", "cost time": "297ms"}
+2024-06-24 10:57:02.222 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.223 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"518546243\"}"}
+2024-06-24 10:57:02.224 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"582136490\"}"}
+2024-06-24 10:57:02.225 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"2048354932\"}"}
+2024-06-24 10:57:02.227 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.228 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"4253925195\"}"}
+2024-06-24 10:57:02.230 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"1861322715\"}"}
+2024-06-24 10:57:02.231 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"2474039382\"}"}
+2024-06-24 10:57:02.232 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "116ms"}
+2024-06-24 10:57:02.232 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.234 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"810698493\"}"}
+2024-06-24 10:57:02.238 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"2958761051\"}"}
+2024-06-24 10:57:02.238 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.239 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"3655346906\"}"}
+2024-06-24 10:57:02.241 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"1273621475\"}"}
+2024-06-24 10:57:02.242 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"2604460151\"}"}
+2024-06-24 10:57:02.243 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.245 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":4127765908772086345,\"versionID\":\"6672d39de27166fe77811693\",\"equal\":false,\"userIDs\":[\"8533102456\",\"1695766238\",\"2725451243\"]}}"}
+2024-06-24 10:57:02.245 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"995014316\"}"}
+2024-06-24 10:57:02.248 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"3957246617\"}"}
+2024-06-24 10:57:02.248 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.257 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"1177987017\"}"}
+2024-06-24 10:57:02.258 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":14725720531529571662,\"versionID\":\"6672d39de27166fe778116a0\",\"equal\":false,\"userIDs\":[\"7618202429\",\"1695766238\",\"2725451243\",\"2839845469\"]}}"}
+2024-06-24 10:57:02.263 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.263 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"4045146473\"}"}
+2024-06-24 10:57:02.264 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "100ms"}
+2024-06-24 10:57:02.269 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":750477764510254660,\"versionID\":\"6672d39de27166fe77811729\",\"equal\":false,\"userIDs\":[\"8875139244\",\"1695766238\",\"3418577436\"]}}"}
+2024-06-24 10:57:02.269 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":10785748207123346625,\"versionID\":\"6672d39de27166fe778116a1\",\"equal\":false,\"userIDs\":[\"7854235526\",\"1695766238\",\"2725451243\",\"2839845469\",\"2872689322\"]}}"}
+2024-06-24 10:57:02.269 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":11802279068422332419,\"versionID\":\"6672d39de27166fe77811731\",\"equal\":false,\"userIDs\":[\"2882899447\",\"1001978187\",\"1695766238\"]}}"}
+2024-06-24 10:57:02.269 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":6418038943359886413,\"versionID\":\"6672d39de27166fe7781170b\",\"equal\":false,\"userIDs\":[\"2981246162\",\"1695766238\",\"2725451243\"]}}"}
+2024-06-24 10:57:02.269 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":5579737000661661932,\"versionID\":\"6672d39de27166fe778116e8\",\"equal\":false,\"userIDs\":[\"4254681784\",\"1695766238\",\"2725451243\"]}}"}
+2024-06-24 10:57:02.269 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":6850186196004066278,\"versionID\":\"6672d39de27166fe778116f3\",\"equal\":false,\"userIDs\":[\"1776346921\",\"1695766238\",\"2725451243\"]}}"}
+2024-06-24 10:57:02.269 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":13436443309567564303,\"versionID\":\"6672d39de27166fe77811697\",\"equal\":false,\"userIDs\":[\"8039982396\",\"1695766238\",\"2725451243\"]}}"}
+2024-06-24 10:57:02.273 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"3750772487\"}"}
+2024-06-24 10:57:02.274 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "58ms"}
+2024-06-24 10:57:02.275 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"3590768919\"}"}
+2024-06-24 10:57:02.276 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.279 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":18007095705887843402,\"versionID\":\"6672d39de27166fe778116fc\",\"equal\":false,\"userIDs\":[\"2365006326\",\"1695766238\",\"2725451243\",\"9169530932\"]}}"}
+2024-06-24 10:57:02.279 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":16354540190402911006,\"versionID\":\"6672d39de27166fe77811760\",\"equal\":false,\"userIDs\":[\"1695766238\",\"8772228740\",\"9447003536\",\"9859217551\"]}}"}
+2024-06-24 10:57:02.279 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "49ms"}
+2024-06-24 10:57:02.279 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":5284464926130337258,\"versionID\":\"6672d39de27166fe778116b7\",\"equal\":false,\"userIDs\":[\"3796678904\",\"1695766238\",\"2725451243\",\"2839845469\",\"2882899447\",\"7497605401\",\"9169530932\"]}}"}
+2024-06-24 10:57:02.280 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "52ms"}
+2024-06-24 10:57:02.280 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":12637708744317025505,\"versionID\":\"6672d39de27166fe778116b4\",\"equal\":false,\"userIDs\":[\"4072022438\",\"1695766238\",\"5620768201\",\"7497605401\",\"9169530932\"]}}"}
+2024-06-24 10:57:02.282 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "56ms"}
+2024-06-24 10:57:02.282 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "59ms"}
+2024-06-24 10:57:02.282 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "58ms"}
+2024-06-24 10:57:02.283 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "51ms"}
+2024-06-24 10:57:02.283 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "49ms"}
+2024-06-24 10:57:02.285 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"2388705044\"}"}
+2024-06-24 10:57:02.286 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "46ms"}
+2024-06-24 10:57:02.287 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "45ms"}
+2024-06-24 10:57:02.288 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "50ms"}
+2024-06-24 10:57:02.288 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.289 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "47ms"}
+2024-06-24 10:57:02.293 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"2864738888\"}"}
+2024-06-24 10:57:02.297 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":10187160458120263888,\"versionID\":\"6672d39de27166fe77811707\",\"equal\":false,\"userIDs\":[\"1695766238\"]}}"}
+2024-06-24 10:57:02.297 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":13412206464262622706,\"versionID\":\"6672d39de27166fe778116d1\",\"equal\":false,\"userIDs\":[\"7773809772\",\"1695766238\",\"2725451243\"]}}"}
+2024-06-24 10:57:02.297 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":2771835303148309128,\"versionID\":\"6672d39de27166fe7781170f\",\"equal\":false,\"userIDs\":[\"8772228740\",\"1695766238\",\"2882899447\",\"9285257296\"]}}"}
+2024-06-24 10:57:02.297 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":11704521589296096094,\"versionID\":\"6672d39de27166fe77811708\",\"equal\":false,\"userIDs\":[\"3418577436\",\"1695766238\",\"2882899447\",\"4918276559\",\"7009965934\"]}}"}
+2024-06-24 10:57:02.298 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.299 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "41ms"}
+2024-06-24 10:57:02.302 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "54ms"}
+2024-06-24 10:57:02.303 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":6895161163620584839,\"versionID\":\"6672d39de27166fe778116ef\",\"equal\":false,\"userIDs\":[\"1114245774\",\"1695766238\",\"7009965934\"]}}"}
+2024-06-24 10:57:02.303 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":17173726194144563862,\"versionID\":\"6672d39de27166fe778116a2\",\"equal\":false,\"userIDs\":[\"9942703170\",\"1695766238\",\"2725451243\"]}}"}
+2024-06-24 10:57:02.304 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "40ms"}
+2024-06-24 10:57:02.304 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "29ms"}
+2024-06-24 10:57:02.304 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "59ms"}
+2024-06-24 10:57:02.304 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"595536262\"}"}
+2024-06-24 10:57:02.306 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "32ms"}
+2024-06-24 10:57:02.308 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.308 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":1199601187645570372,\"versionID\":\"6672d39de27166fe778116e1\",\"equal\":false,\"userIDs\":[\"4641688133\",\"1695766238\",\"2169175564\"]}}"}
+2024-06-24 10:57:02.309 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"4040699454\"}"}
+2024-06-24 10:57:02.311 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "25ms"}
+2024-06-24 10:57:02.314 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.314 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":6026895216805171943,\"versionID\":\"6672d39de27166fe778116f5\",\"equal\":false,\"userIDs\":[\"7009965934\",\"1695766238\",\"6269493573\"]}}"}
+2024-06-24 10:57:02.314 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"459143095\"}"}
+2024-06-24 10:57:02.315 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "22ms"}
+2024-06-24 10:57:02.320 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.320 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"3069388481\"}"}
+2024-06-24 10:57:02.321 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":5387662000506146724,\"versionID\":\"6672d39de27166fe7781172d\",\"equal\":false,\"userIDs\":[\"1801012070\",\"1695766238\",\"2725451243\",\"2839845469\"]}}"}
+2024-06-24 10:57:02.322 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "17ms"}
+2024-06-24 10:57:02.325 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.325 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"862487890\"}"}
+2024-06-24 10:57:02.328 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":7725487603857359265,\"versionID\":\"6672d39de27166fe77811727\",\"equal\":false,\"userIDs\":[\"7009965934\",\"1531800981\",\"1695766238\",\"2882899447\",\"3418577436\"]}}"}
+2024-06-24 10:57:02.328 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "18ms"}
+2024-06-24 10:57:02.330 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.331 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":15114705813937889394,\"versionID\":\"6672d39de27166fe77811698\",\"equal\":false,\"userIDs\":[\"4641688133\",\"1695766238\",\"2882899447\",\"7497605401\"]}}"}
+2024-06-24 10:57:02.331 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"2599904267\"}"}
+2024-06-24 10:57:02.331 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "16ms"}
+2024-06-24 10:57:02.335 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.336 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"1747585985\"}"}
+2024-06-24 10:57:02.337 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":9812207038683511266,\"versionID\":\"6672d39de27166fe778116f8\",\"equal\":false,\"userIDs\":[\"3838004574\",\"1695766238\",\"2725451243\",\"2839845469\",\"2882899447\"]}}"}
+2024-06-24 10:57:02.338 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "17ms"}
+2024-06-24 10:57:02.341 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.342 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":18390342166856205026,\"versionID\":\"6672d39de27166fe7781174c\",\"equal\":false,\"userIDs\":[\"5669416921\",\"1695766238\",\"2725451243\"]}}"}
+2024-06-24 10:57:02.342 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"1597892186\"}"}
+2024-06-24 10:57:02.343 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "17ms"}
+2024-06-24 10:57:02.345 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.345 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"105081877\"}"}
+2024-06-24 10:57:02.348 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":13709532463307805025,\"versionID\":\"6672d39de27166fe77811757\",\"equal\":false,\"userIDs\":[\"4041344265\",\"1695766238\",\"2839845469\"]}}"}
+2024-06-24 10:57:02.348 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "16ms"}
+2024-06-24 10:57:02.351 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.352 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"454437308\"}"}
+2024-06-24 10:57:02.355 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":11201375879478508638,\"versionID\":\"6672d39de27166fe778116c0\",\"equal\":false,\"userIDs\":[\"9032177660\",\"1695766238\",\"2725451243\"]}}"}
+2024-06-24 10:57:02.355 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "18ms"}
+2024-06-24 10:57:02.356 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.356 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"543925645\"}"}
+2024-06-24 10:57:02.357 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":3062075099231069360,\"versionID\":\"6672d39de27166fe778116c3\",\"equal\":false,\"userIDs\":[\"2097541846\",\"1695766238\",\"2839845469\"]}}"}
+2024-06-24 10:57:02.358 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "16ms"}
+2024-06-24 10:57:02.361 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.361 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"1710171993\"}"}
+2024-06-24 10:57:02.362 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":11491867966525590688,\"versionID\":\"6672d39de27166fe77811753\",\"equal\":false,\"userIDs\":[\"5248385191\",\"1695766238\",\"2725451243\",\"2839845469\",\"3418577436\"]}}"}
+2024-06-24 10:57:02.363 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "17ms"}
+2024-06-24 10:57:02.369 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.369 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":6954357523281729184,\"versionID\":\"6672d39de27166fe7781170d\",\"equal\":false,\"userIDs\":[\"3767972548\",\"1695766238\",\"2725451243\"]}}"}
+2024-06-24 10:57:02.371 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"491010394\"}"}
+2024-06-24 10:57:02.372 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "19ms"}
+2024-06-24 10:57:02.376 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":17577999471910202960,\"versionID\":\"6672d39de27166fe77811700\",\"equal\":false,\"userIDs\":[\"2545303424\",\"1695766238\",\"2725451243\"]}}"}
+2024-06-24 10:57:02.376 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.377 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "20ms"}
+2024-06-24 10:57:02.377 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"217468446\"}"}
+2024-06-24 10:57:02.379 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":3193284587473926998,\"versionID\":\"6672d39de27166fe7781172a\",\"equal\":false,\"userIDs\":[\"5002491660\",\"1695766238\",\"2725451243\"]}}"}
+2024-06-24 10:57:02.380 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "18ms"}
+2024-06-24 10:57:02.382 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.383 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"192211066\"}"}
+2024-06-24 10:57:02.387 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.389 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"339303081\"}"}
+2024-06-24 10:57:02.389 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":5131933782821159097,\"versionID\":\"6672d39de27166fe778116c7\",\"equal\":false,\"userIDs\":[\"7024387472\",\"1695766238\",\"2725451243\",\"2839845469\"]}}"}
+2024-06-24 10:57:02.390 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "19ms"}
+2024-06-24 10:57:02.393 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.393 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"68265665\"}"}
+2024-06-24 10:57:02.398 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.398 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"402286284\"}"}
+2024-06-24 10:57:02.402 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":1899632503098104226,\"versionID\":\"6672d39de27166fe77811718\",\"equal\":false,\"userIDs\":[\"1228521294\",\"1695766238\",\"2725451243\",\"2839845469\"]}}"}
+2024-06-24 10:57:02.403 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "26ms"}
+2024-06-24 10:57:02.405 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.405 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":3800910435226418823,\"versionID\":\"6672d39de27166fe77811701\",\"equal\":false,\"userIDs\":[\"8054377408\",\"1695766238\",\"2839845469\"]}}"}
+2024-06-24 10:57:02.405 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"2806967959\"}"}
+2024-06-24 10:57:02.406 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "22ms"}
+2024-06-24 10:57:02.410 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.410 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":10663494350694210519,\"versionID\":\"6672d39de27166fe77811728\",\"equal\":false,\"userIDs\":[\"2879740664\",\"1695766238\",\"2725451243\"]}}"}
+2024-06-24 10:57:02.411 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"2625540721\"}"}
+2024-06-24 10:57:02.411 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":6934407634680411125,\"versionID\":\"6672d39de27166fe77811713\",\"equal\":false,\"userIDs\":[\"6629808721\",\"1695766238\",\"2725451243\",\"2839845469\"]}}"}
+2024-06-24 10:57:02.412 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "18ms"}
+2024-06-24 10:57:02.413 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "23ms"}
+2024-06-24 10:57:02.414 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.414 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"93606743\"}"}
+2024-06-24 10:57:02.420 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.420 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":6594811355795797287,\"versionID\":\"6672d39de27166fe77811748\",\"equal\":false,\"userIDs\":[\"5778047866\",\"1695766238\",\"2725451243\"]}}"}
+2024-06-24 10:57:02.421 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"1986908192\"}"}
+2024-06-24 10:57:02.422 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":18061471175281844123,\"versionID\":\"6672d39de27166fe77811734\",\"equal\":false,\"userIDs\":[\"1695766238\",\"2725451243\",\"2839845469\",\"2882899447\",\"3420613648\"]}}"}
+2024-06-24 10:57:02.423 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "25ms"}
+2024-06-24 10:57:02.424 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "18ms"}
+2024-06-24 10:57:02.425 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.425 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"3700863541\"}"}
+2024-06-24 10:57:02.428 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":5229677877149433994,\"versionID\":\"6672d39de27166fe7781172b\",\"equal\":false,\"userIDs\":[\"3340382285\",\"1695766238\",\"2725451243\"]}}"}
+2024-06-24 10:57:02.428 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "17ms"}
+2024-06-24 10:57:02.431 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.431 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":15491512131697806473,\"versionID\":\"6672d39de27166fe7781171e\",\"equal\":false,\"userIDs\":[\"7388505150\",\"1695766238\",\"2725451243\",\"2882899447\"]}}"}
+2024-06-24 10:57:02.432 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"3727180154\"}"}
+2024-06-24 10:57:02.432 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "18ms"}
+2024-06-24 10:57:02.438 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":5791305787777943471,\"versionID\":\"6672d39de27166fe77811719\",\"equal\":false,\"userIDs\":[\"8823387090\",\"1695766238\",\"2725451243\",\"2839845469\",\"2882899447\"]}}"}
+2024-06-24 10:57:02.438 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.439 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "18ms"}
+2024-06-24 10:57:02.440 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"2184807685\"}"}
+2024-06-24 10:57:02.444 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":11578228332759034926,\"versionID\":\"6672d39de27166fe77811754\",\"equal\":false,\"userIDs\":[\"1829995445\",\"1695766238\",\"2725451243\",\"4819622986\",\"5929204367\",\"6118899713\"]}}"}
+2024-06-24 10:57:02.444 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "18ms"}
+2024-06-24 10:57:02.445 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.445 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"3014735116\"}"}
+2024-06-24 10:57:02.451 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":1330215121064454679,\"versionID\":\"6672d39de27166fe778116ff\",\"equal\":false,\"userIDs\":[\"4293913125\",\"1695766238\",\"2725451243\",\"2995890101\",\"5292156665\"]}}"}
+2024-06-24 10:57:02.452 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.453 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "21ms"}
+2024-06-24 10:57:02.453 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"2956229812\"}"}
+2024-06-24 10:57:02.457 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.457 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"2752799086\"}"}
+2024-06-24 10:57:02.458 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":17062206318625459039,\"versionID\":\"6672d39de27166fe778116f0\",\"equal\":false,\"userIDs\":[\"4911414951\",\"1035025841\",\"1695766238\",\"2725451243\"]}}"}
+2024-06-24 10:57:02.459 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "19ms"}
+2024-06-24 10:57:02.462 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.462 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"1529525623\"}"}
+2024-06-24 10:57:02.464 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":2033567554351942778,\"versionID\":\"6672d39de27166fe778116f1\",\"equal\":false,\"userIDs\":[\"8834765444\",\"1695766238\",\"2725451243\",\"2839845469\",\"2882899447\",\"5292156665\",\"5620768201\",\"5668985363\"]}}"}
+2024-06-24 10:57:02.466 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "20ms"}
+2024-06-24 10:57:02.468 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.468 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"2595610523\"}"}
+2024-06-24 10:57:02.470 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":1321562827189464485,\"versionID\":\"6672d39de27166fe7781175c\",\"equal\":false,\"userIDs\":[\"3307929768\",\"1695766238\",\"2725451243\",\"2995890101\",\"5292156665\",\"8689302929\"]}}"}
+2024-06-24 10:57:02.471 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "17ms"}
+2024-06-24 10:57:02.473 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.473 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":7985777935837439291,\"versionID\":\"6672d39de27166fe778116fd\",\"equal\":false,\"userIDs\":[\"1428611256\",\"1695766238\",\"2995890101\",\"5292156665\",\"8910288550\"]}}"}
+2024-06-24 10:57:02.473 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"3269509736\"}"}
+2024-06-24 10:57:02.474 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "16ms"}
+2024-06-24 10:57:02.478 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.479 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"1170336331\"}"}
+2024-06-24 10:57:02.482 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":13300317860397512531,\"versionID\":\"6672d39de27166fe77811726\",\"equal\":false,\"userIDs\":[\"9735279232\",\"1695766238\",\"2725451243\",\"2839845469\",\"2882899447\",\"9169530932\"]}}"}
+2024-06-24 10:57:02.482 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "19ms"}
+2024-06-24 10:57:02.483 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.484 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"3693200714\"}"}
+2024-06-24 10:57:02.489 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.489 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"1012900607\"}"}
+2024-06-24 10:57:02.493 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":13991558628914721423,\"versionID\":\"6672d39de27166fe77811756\",\"equal\":false,\"userIDs\":[\"3879871786\",\"1695766238\",\"2725451243\",\"2839845469\"]}}"}
+2024-06-24 10:57:02.493 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":2161809543173038606,\"versionID\":\"6672d39de27166fe778116fe\",\"equal\":false,\"userIDs\":[\"2391060935\",\"1695766238\",\"2725451243\",\"2839845469\",\"2882899447\",\"6319015024\"]}}"}
+2024-06-24 10:57:02.494 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "20ms"}
+2024-06-24 10:57:02.494 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "25ms"}
+2024-06-24 10:57:02.496 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.497 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"1633118996\"}"}
+2024-06-24 10:57:02.502 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":1199601187645570372,\"versionID\":\"6672d39de27166fe778116da\",\"equal\":false,\"userIDs\":[\"4641688133\",\"1695766238\",\"2169175564\"]}}"}
+2024-06-24 10:57:02.503 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "23ms"}
+2024-06-24 10:57:02.503 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.503 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"1671249356\"}"}
+2024-06-24 10:57:02.508 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":6888227397188198301,\"versionID\":\"6672d39de27166fe77811735\",\"equal\":false,\"userIDs\":[\"2880563506\",\"1695766238\",\"2725451243\",\"2839845469\"]}}"}
+2024-06-24 10:57:02.508 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":8486036731034896532,\"versionID\":\"6672d39de27166fe7781174d\",\"equal\":false,\"userIDs\":[\"1029199385\",\"1035025841\",\"1046238762\",\"1695766238\",\"8772228740\",\"9447003536\"]}}"}
+2024-06-24 10:57:02.509 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "24ms"}
+2024-06-24 10:57:02.509 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "19ms"}
+2024-06-24 10:57:02.511 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.511 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"1869190487\"}"}
+2024-06-24 10:57:02.514 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":9939438955781144734,\"versionID\":\"6672d39de27166fe77811746\",\"equal\":false,\"userIDs\":[\"2879577568\",\"1695766238\",\"2882899447\"]}}"}
+2024-06-24 10:57:02.514 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "17ms"}
+2024-06-24 10:57:02.516 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.517 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"4092904375\"}"}
+2024-06-24 10:57:02.520 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":3142334956848736459,\"versionID\":\"6672d39de27166fe778116cb\",\"equal\":false,\"userIDs\":[\"4846054480\",\"1695766238\",\"2725451243\"]}}"}
+2024-06-24 10:57:02.520 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "17ms"}
+2024-06-24 10:57:02.522 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.523 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"2942457817\"}"}
+2024-06-24 10:57:02.527 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.528 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":11604375521710787239,\"versionID\":\"6672d39de27166fe77811722\",\"equal\":false,\"userIDs\":[\"7364897573\",\"1695766238\",\"2725451243\",\"2839845469\"]}}"}
+2024-06-24 10:57:02.528 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"1999119891\"}"}
+2024-06-24 10:57:02.528 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "17ms"}
+2024-06-24 10:57:02.532 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.533 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"446768090\"}"}
+2024-06-24 10:57:02.534 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":14030116508179295044,\"versionID\":\"6672d39de27166fe77811736\",\"equal\":false,\"userIDs\":[\"1774484110\",\"1695766238\",\"2725451243\",\"2839845469\",\"2872689322\"]}}"}
+2024-06-24 10:57:02.536 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "18ms"}
+2024-06-24 10:57:02.538 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.539 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":5631893083613852913,\"versionID\":\"6672d39de27166fe778116ae\",\"equal\":false,\"userIDs\":[\"3803355027\",\"1695766238\",\"2725451243\"]}}"}
+2024-06-24 10:57:02.540 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"3759778360\"}"}
+2024-06-24 10:57:02.541 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "18ms"}
+2024-06-24 10:57:02.543 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.544 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"1268986309\"}"}
+2024-06-24 10:57:02.549 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.550 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"87742245\"}"}
+2024-06-24 10:57:02.553 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":16154767753451694308,\"versionID\":\"6672d39de27166fe778116b3\",\"equal\":false,\"userIDs\":[\"5410355545\",\"1695766238\",\"1968770658\",\"2725451243\"]}}"}
+2024-06-24 10:57:02.553 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":14619982703055541066,\"versionID\":\"6672d39de27166fe77811761\",\"equal\":false,\"userIDs\":[\"4558664801\",\"1695766238\",\"2725451243\"]}}"}
+2024-06-24 10:57:02.553 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "24ms"}
+2024-06-24 10:57:02.554 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "20ms"}
+2024-06-24 10:57:02.556 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.556 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"3704350375\"}"}
+2024-06-24 10:57:02.558 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":924120851387011953,\"versionID\":\"6672d39de27166fe778116c2\",\"equal\":false,\"userIDs\":[\"4911414951\",\"1035025841\",\"1695766238\",\"2725451243\",\"2823062805\"]}}"}
+2024-06-24 10:57:02.561 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "21ms"}
+2024-06-24 10:57:02.565 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":8103746737680863433,\"versionID\":\"6672d39de27166fe7781172e\",\"equal\":false,\"userIDs\":[\"3939999665\",\"1695766238\",\"2725451243\",\"2839845469\",\"2882899447\"]}}"}
+2024-06-24 10:57:02.565 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":16398088861009522333,\"versionID\":\"6672d39de27166fe7781171d\",\"equal\":false,\"userIDs\":[\"9735279232\",\"1695766238\",\"1712766650\",\"2725451243\",\"2839845469\",\"2882899447\",\"3418577436\",\"4918276559\"]}}"}
+2024-06-24 10:57:02.566 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "21ms"}
+2024-06-24 10:57:02.566 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "16ms"}
+2024-06-24 10:57:02.569 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.569 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"1137299436\"}"}
+2024-06-24 10:57:02.574 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":2691102460142700928,\"versionID\":\"6672d39de27166fe778116c6\",\"equal\":false,\"userIDs\":[\"5668985363\",\"1035025841\",\"1695766238\",\"2553130763\",\"2845997329\",\"2882899447\",\"2890713225\",\"4429313396\",\"5620768201\"]}}"}
+2024-06-24 10:57:02.575 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "18ms"}
+2024-06-24 10:57:02.576 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.576 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"3896488295\"}"}
+2024-06-24 10:57:02.582 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.582 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"1193166060\"}"}
+2024-06-24 10:57:02.586 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":7849295955742458130,\"versionID\":\"6672d39de27166fe778116a3\",\"equal\":false,\"userIDs\":[\"4036830742\",\"1695766238\",\"2839845469\",\"5292156665\",\"6105455334\",\"7009965934\"]}}"}
+2024-06-24 10:57:02.587 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "17ms"}
+2024-06-24 10:57:02.588 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.588 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"3417930724\"}"}
+2024-06-24 10:57:02.594 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.594 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":11591159876204527408,\"versionID\":\"6672d39de27166fe778116af\",\"equal\":false,\"userIDs\":[\"3862147424\",\"1695766238\",\"2839845469\",\"2882899447\",\"3418577436\",\"5292156665\",\"5668985363\",\"6319015024\",\"7497605401\"]}}"}
+2024-06-24 10:57:02.594 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"2145904160\"}"}
+2024-06-24 10:57:02.595 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "18ms"}
+2024-06-24 10:57:02.599 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.599 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"2479200198\"}"}
+2024-06-24 10:57:02.601 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":1431808912513064708,\"versionID\":\"6672d39de27166fe778116d0\",\"equal\":false,\"userIDs\":[\"7497605401\",\"1003546611\",\"1005848588\",\"1016745053\",\"1024013158\",\"1026082681\",\"1695766238\"]}}"}
+2024-06-24 10:57:02.602 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "19ms"}
+2024-06-24 10:57:02.606 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.606 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"324253771\"}"}
+2024-06-24 10:57:02.606 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":6371521495914261365,\"versionID\":\"6672d39de27166fe7781172c\",\"equal\":false,\"userIDs\":[\"2839845469\",\"1695766238\",\"2725451243\",\"2882899447\",\"3418577436\",\"4530769942\",\"5292156665\",\"5668985363\",\"7343731800\"]}}"}
+2024-06-24 10:57:02.607 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "18ms"}
+2024-06-24 10:57:02.611 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.612 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"129612413\"}"}
+2024-06-24 10:57:02.615 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":2537006417046683040,\"versionID\":\"6672d39de27166fe778116d9\",\"equal\":false,\"userIDs\":[\"9735279232\",\"1695766238\",\"2725451243\",\"2839845469\",\"2882899447\"]}}"}
+2024-06-24 10:57:02.616 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":5404673377571800314,\"versionID\":\"6672d39de27166fe778116e2\",\"equal\":false,\"userIDs\":[\"3233270846\",\"1695766238\",\"2725451243\",\"2839845469\",\"2882899447\",\"5292156665\",\"5668985363\"]}}"}
+2024-06-24 10:57:02.617 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "17ms"}
+2024-06-24 10:57:02.619 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "24ms"}
+2024-06-24 10:57:02.620 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.622 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"1898996710\"}"}
+2024-06-24 10:57:02.625 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":15540544611482518444,\"versionID\":\"6672d39de27166fe778116d6\",\"equal\":false,\"userIDs\":[\"1695766238\",\"1531800981\",\"3418577436\",\"1035025841\",\"2276632311\",\"2839845469\",\"2882899447\",\"2890713225\",\"4911414951\",\"4918276559\",\"5292156665\",\"7497605401\",\"8203292432\",\"9361332642\"]}}"}
+2024-06-24 10:57:02.626 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "19ms"}
+2024-06-24 10:57:02.628 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.629 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"3504722739\"}"}
+2024-06-24 10:57:02.630 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":1830926699427552195,\"versionID\":\"6672d39de27166fe77811694\",\"equal\":false,\"userIDs\":[\"7854235526\",\"1695766238\",\"2725451243\",\"2839845469\",\"2882899447\",\"3418577436\",\"5292156665\",\"7497605401\"]}}"}
+2024-06-24 10:57:02.631 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "19ms"}
+2024-06-24 10:57:02.636 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.637 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"1393169672\"}"}
+2024-06-24 10:57:02.640 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":775294646734492471,\"versionID\":\"6672d39de27166fe77811703\",\"equal\":false,\"userIDs\":[\"1308526907\",\"1695766238\",\"2725451243\",\"2882899447\",\"3418577436\",\"5668985363\",\"7497605401\"]}}"}
+2024-06-24 10:57:02.641 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "18ms"}
+2024-06-24 10:57:02.644 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.644 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"853658007\"}"}
+2024-06-24 10:57:02.645 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":11418833920971891917,\"versionID\":\"6672d39de27166fe77811737\",\"equal\":false,\"userIDs\":[\"2905053077\",\"1695766238\",\"2725451243\",\"2839845469\",\"2995890101\",\"5292156665\",\"8689302929\",\"8910288550\"]}}"}
+2024-06-24 10:57:02.646 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "16ms"}
+2024-06-24 10:57:02.650 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.651 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"3227287827\"}"}
+2024-06-24 10:57:02.655 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":10076413673710771957,\"versionID\":\"6672d39de27166fe778116b2\",\"equal\":false,\"userIDs\":[\"1050659067\",\"1695766238\",\"2725451243\",\"2839845469\",\"2882899447\",\"9564624893\"]}}"}
+2024-06-24 10:57:02.656 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "19ms"}
+2024-06-24 10:57:02.657 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.658 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"19439682\"}"}
+2024-06-24 10:57:02.662 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":8778842827672616777,\"versionID\":\"6672d39de27166fe7781169c\",\"equal\":false,\"userIDs\":[\"6319015024\",\"1695766238\",\"3418577436\",\"4918276559\",\"5430821760\",\"7298268529\"]}}"}
+2024-06-24 10:57:02.662 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "17ms"}
+2024-06-24 10:57:02.663 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.664 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"2677549796\"}"}
+2024-06-24 10:57:02.670 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":1538077371022360142,\"versionID\":\"6672d39de27166fe778116bc\",\"equal\":false,\"userIDs\":[\"8772228740\",\"1695766238\",\"2882899447\",\"7849831301\",\"9285257296\"]}}"}
+2024-06-24 10:57:02.670 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.671 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "19ms"}
+2024-06-24 10:57:02.671 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"4075238610\"}"}
+2024-06-24 10:57:02.674 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":433985497541761393,\"versionID\":\"6672d39de27166fe7781173a\",\"equal\":false,\"userIDs\":[\"6554716140\",\"1695766238\",\"2725451243\"]}}"}
+2024-06-24 10:57:02.675 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "17ms"}
+2024-06-24 10:57:02.676 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.677 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"45636129\"}"}
+2024-06-24 10:57:02.682 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.683 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"2527119729\"}"}
+2024-06-24 10:57:02.687 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":15968889354587092297,\"versionID\":\"6672d39de27166fe77811752\",\"equal\":false,\"userIDs\":[\"7516710182\",\"1695766238\",\"2725451243\",\"5292156665\",\"7497605401\",\"9169530932\"]}}"}
+2024-06-24 10:57:02.687 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":14236780554397666393,\"versionID\":\"6672d39de27166fe778116dc\",\"equal\":false,\"userIDs\":[\"5553194662\",\"1695766238\",\"2725451243\",\"2839845469\",\"2882899447\",\"3418577436\",\"5292156665\",\"5668985363\",\"7497605401\"]}}"}
+2024-06-24 10:57:02.688 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "17ms"}
+2024-06-24 10:57:02.689 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "24ms"}
+2024-06-24 10:57:02.691 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.691 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"1254300734\"}"}
+2024-06-24 10:57:02.696 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.698 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"773702228\"}"}
+2024-06-24 10:57:02.698 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":16824112976227655551,\"versionID\":\"6672d39de27166fe778116db\",\"equal\":false,\"userIDs\":[\"3859571259\",\"1695766238\",\"2725451243\",\"4911414951\",\"4918276559\",\"7497605401\",\"8879166186\"]}}"}
+2024-06-24 10:57:02.700 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "23ms"}
+2024-06-24 10:57:02.704 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.705 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"1738113305\"}"}
+2024-06-24 10:57:02.708 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":7885842124697100852,\"versionID\":\"6672d39de27166fe778116b5\",\"equal\":false,\"userIDs\":[\"4681582191\",\"1695766238\",\"2839845469\",\"3418577436\",\"4918276559\",\"5292156665\",\"5620768201\",\"5668985363\",\"7497605401\"]}}"}
+2024-06-24 10:57:02.708 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":13505591952582577816,\"versionID\":\"6672d39de27166fe778116cf\",\"equal\":false,\"userIDs\":[\"2680629439\",\"1695766238\",\"2725451243\",\"2839845469\",\"2882899447\",\"3418577436\",\"4918276559\",\"5292156665\",\"5620768201\",\"5668985363\",\"7497605401\",\"9169530932\"]}}"}
+2024-06-24 10:57:02.708 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "17ms"}
+2024-06-24 10:57:02.708 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "25ms"}
+2024-06-24 10:57:02.713 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.714 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"3384390386\"}"}
+2024-06-24 10:57:02.717 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":12149467687016614103,\"versionID\":\"6672d39de27166fe778116f4\",\"equal\":false,\"userIDs\":[\"4995366980\",\"1695766238\",\"2725451243\",\"2839845469\",\"2882899447\",\"3418577436\",\"5292156665\",\"5668985363\",\"7497605401\"]}}"}
+2024-06-24 10:57:02.718 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "19ms"}
+2024-06-24 10:57:02.719 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.720 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"1662278840\"}"}
+2024-06-24 10:57:02.725 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalGroupMember"}
+2024-06-24 10:57:02.725 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":11403104638406706587,\"versionID\":\"6672d39de27166fe77811741\",\"equal\":false,\"userIDs\":[\"2890713225\",\"1112594574\",\"1650936842\",\"1695766238\",\"2563100730\",\"3865122896\",\"4446845883\",\"7659814119\",\"8930133512\"]}}"}
+2024-06-24 10:57:02.726 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "body": "{\"idHash\":0,\"groupID\":\"2670578906\"}"}
+2024-06-24 10:57:02.726 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "21ms"}
+2024-06-24 10:57:02.729 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":12619954697288894648,\"versionID\":\"6672d39de27166fe778116d2\",\"equal\":false,\"userIDs\":[\"8203292432\",\"1312766592\",\"1531800981\",\"1695766238\",\"2882899447\",\"2890713225\",\"3418577436\",\"5304967461\",\"5668985363\",\"6858024107\"]}}"}
+2024-06-24 10:57:02.730 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "15ms"}
+2024-06-24 10:57:02.736 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":9132649509398695305,\"versionID\":\"6672d39de27166fe77811733\",\"equal\":false,\"userIDs\":[\"4950713210\",\"1695766238\",\"2725451243\",\"2839845469\",\"2882899447\",\"3418577436\",\"5292156665\",\"5620768201\",\"5668985363\",\"7497605401\",\"9169530932\"]}}"}
+2024-06-24 10:57:02.737 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "17ms"}
+2024-06-24 10:57:02.743 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_full_group_member_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":16768040222288632183,\"versionID\":\"6672d39de27166fe7781170a\",\"equal\":false,\"userIDs\":[\"1762559417\",\"1001978187\",\"1531800981\",\"1695766238\",\"1847173569\",\"2725451243\",\"2995890101\",\"3765484234\",\"4979639389\",\"5292156665\",\"5668985363\",\"6105455334\",\"6767809967\",\"7009965934\",\"8134977687\",\"8448409603\",\"8910288550\",\"9749333133\",\"openIMAdmin\"]}}"}
+2024-06-24 10:57:02.744 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_full_group_member_user_ids", "state": "success", "cost time": "18ms"}
+2024-06-24 10:57:03.207 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [group/sync.go:209] SyncAllJoinedGroupsAndMembers fn call end {"operationID": "1719197817604066041", "cost time": "2635 ms"}
+2024-06-24 10:57:03.207 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_notification.go:87] github.com/openimsdk/openim-sdk-core/v3/internal/group.(*Group).SyncAllJoinedGroupsAndMembers-fm completed successfully {"operationID": "1719197817604066041", "duration": 2.6359363}
+2024-06-24 10:57:03.207 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/friend/get_incremental_friends", "body": "{\"userID\":\"1695766238\",\"versionID\":\"\",\"version\":0}"}
+2024-06-24 10:57:03.230 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/friend/get_incremental_friends", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":4,\"versionID\":\"66716ed586ddb14d8309dc80\",\"full\":true,\"delete\":null,\"insert\":null,\"update\":null}}"}
+2024-06-24 10:57:03.232 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/friend/get_incremental_friends", "state": "success", "cost time": "24ms"}
+2024-06-24 10:57:03.242 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/friend/get_friend_list", "body": "{\"pagination\":{\"pageNumber\":1,\"showNumber\":100},\"userID\":\"1695766238\"}"}
+2024-06-24 10:57:03.317 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/friend/get_friend_list", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"friendsInfo\":[{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"2857250700\",\"nickname\":\"æåæå
\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"2ba5371e-9b4d-4408-be20-a04dc7298490\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"3117943962\",\"nickname\":\"yi\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"1703766947025\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"9112045680\",\"nickname\":\"æäšä¸æ ˇ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"04a3f6c5-c57f-4029-9389-b381a0e2852e\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"7999733965\",\"nickname\":\"čĒ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"c4248e71-87ef-4908-84ef-9cc031edc864\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"7363948441\",\"nickname\":\"å°sir\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"1703771066409\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"9972242149\",\"nickname\":\"æĸæäŧ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"1703786643023\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"6131489317\",\"nickname\":\"xxhhope\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"10679451-9210-475c-83ff-702ff5683148\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"2529173030\",\"nickname\":\"\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"cfafb0fa-fe35-477b-95c4-ceb87f22ca70\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"8316865470\",\"nickname\":\"įŦ¨é¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"d1b925fa-1b4b-4d05-8524-6da8b1c62277\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"1951127248\",\"nickname\":\"\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"1703831671170\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"9658470863\",\"nickname\":\"qqqqqq\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"7d3369a6-8ddd-4da7-8640-b19990d91457\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"2213558486\",\"nickname\":\"ä¸įå777\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"297871a4-86a5-4df6-a4d0-303ddacedd85\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"4650957151\",\"nickname\":\"longyu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"e629f45c-1867-430d-8bc3-3d02731b14df\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"3089530163\",\"nickname\":\"qian\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"1703834428064\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"5046045029\",\"nickname\":\"åéŖ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"557ecb64-126f-4030-9b2f-80079ee47f02\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"5297812664\",\"nickname\":\"åæé¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"1703843263390\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"7706881098\",\"nickname\":\"yafeng\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"d400e047-3453-4f5c-bf54-b2b5a6753697\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"4253320786\",\"nickname\":\"gvgfg\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"a136ca68-b038-4393-b678-2348f9e35944\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"4378913374\",\"nickname\":\"asy5668985363\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"628f8fd8-4e52-4570-a7a0-ce176c69d75f\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"1219920920\",\"nickname\":\"John\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"1703918186917\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"4140617939\",\"nickname\":\"Sam\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"36ce5ccc-d9a0-4ab5-acc0-26a5dff5112b\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"4174741233\",\"nickname\":\"jinti\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"1703918743982\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"7618202429\",\"nickname\":\"123\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"643a2059-4579-4a05-8a5a-1c147780bde2\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"7656755258\",\"nickname\":\"Jason\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"3b19bd1a-5bc7-4fd9-b32b-9974951f91a3\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"1132125149\",\"nickname\":\"caigou\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"965b6657-29f7-4d22-bfa1-97690408729a\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"7758124650\",\"nickname\":\"C\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"991b216f-ad68-494a-9722-81cd0ffcc5bc\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"9550545034\",\"nickname\":\"\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"afd5c79a-4703-4510-9be9-5df6c4730b64\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"2161754714\",\"nickname\":\"Mingyi\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"fee2ed13-1161-4e58-80a9-916f243f98b0\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"5296469685\",\"nickname\":\"rongsw\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"a86f189f-5ec9-4445-a6ee-562ac34fc711\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"4752930364\",\"nickname\":\"st\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"34fcf368-3329-4e7c-82cd-ca14cfca5e99\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"3153752108\",\"nickname\":\"jacky\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"c619e57e-f82e-40a4-bda9-06ed9faad681\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"4674991198\",\"nickname\":\"561367\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"1704005366366\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"2962770393\",\"nickname\":\"æĩŠæĨ åĨĸåē\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"628cbc54-d54c-4fdd-83b8-d98ccf9add36\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"4142553143\",\"nickname\":\"į¤ŧæå¤Š\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"cb6a54e8-7abe-438c-ab0c-8ca98151c8c9\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"9186029513\",\"nickname\":\"lux\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"1704156980584\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"5863796992\",\"nickname\":\"čåååĢ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"0b762959-a5fd-4184-bf91-f5f2bb584f7f\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"2823062805\",\"nickname\":\"įæ\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2823062805/beaming_face_with_smiling_eyes_3d@2x.webp\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"78728c26-2fc5-4a73-be44-d1cf37fc73a8\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"2115325771\",\"nickname\":\"zh\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"1704166529210\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"3950148404\",\"nickname\":\"test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"a0aa4e2f-bd84-49b3-a1f4-66112a0f4ad1\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"5775691842\",\"nickname\":\"蝎éŽåŽå¸å
\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"1704179161702\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"6311770884\",\"nickname\":\"åģéŽéŽæ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"1704179339958\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"3868556005\",\"nickname\":\"xuyiyang\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"85998992-e7c4-40af-9347-bb3b5164a86d\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"7261912754\",\"nickname\":\"mzutj\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"b4450b67-9f73-4e65-afbb-f3608c895dd1\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"2964634883\",\"nickname\":\"åĸ¨čž°\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"f566795c-38b8-4ce2-9865-b36c423d5313\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"7103047524\",\"nickname\":\"aaaa\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"1704248174169\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"5306710076\",\"nickname\":\"RmondJone\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"1704248938649\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"2294788609\",\"nickname\":\"paopaoyo\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2294788609/č¯éŗ.webp\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"6f31e1cb-e76a-42c8-8f45-7ef57dee076a\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"7605980080\",\"nickname\":\"å¤\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"2536e633-b684-4b89-8aa0-b6fce5c02c13\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"2081682065\",\"nickname\":\"æä¸ģäģģ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"1704251337984\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"5832825629\",\"nickname\":\"hugon\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"7d860a47-0fd6-4699-946c-514eb7c1ba46\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"7955826088\",\"nickname\":\"æŦåąąäŧ åĒ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"1704255334125\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"8052618451\",\"nickname\":\"æžæ æĸ
æ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"1704263287811\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"5808959084\",\"nickname\":\"Tttt\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"8E9AD773-6752-449D-97C4-6F6D9B247A7C\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"8914287800\",\"nickname\":\"大åč\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"d5e06d61-bd9f-4656-97f2-aa4fa2121c8a\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"6342959213\",\"nickname\":\"cotox\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"071fd65e-63d5-437e-84e8-e04d55a4ba44\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"3140450276\",\"nickname\":\"lbh\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"6f942aeb-cb0e-422e-ba1e-2da5b03492bd\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"6132997969\",\"nickname\":\"zj\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"bbcc6bf8-f000-4ff1-b64f-9a11931eb290\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"1005848588\",\"nickname\":\"ah\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"c5e144de-4b73-4c6e-a4d8-09e9a632b6f5\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"9511107616\",\"nickname\":\"xx123\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"07af529b-58d8-4202-9cee-4275ae1cc18a\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"7235831415\",\"nickname\":\"T.M\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"1704301098047\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"7614636349\",\"nickname\":\"haha\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"97e34028-ca55-4b8d-9ff9-c6aca92bf585\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"7092131990\",\"nickname\":\"Darcy\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"38f86754-fb67-41f9-ba55-10081a1a792c\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"6529480566\",\"nickname\":\"ahzhangcg\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"1704337266653\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"7115019432\",\"nickname\":\"åĻåĻåĻåĻ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"4336a98c-491c-474c-9eb8-75a545927209\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"8085178076\",\"nickname\":\"æĩč¯į\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"13cfdec5-7b5f-4b60-be32-6082f96a916f\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"4389192475\",\"nickname\":\"HD\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"e81156d9-3faf-41a6-9105-f9034c6715d7\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"4393448866\",\"nickname\":\"åäš\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"7d7662ee-17d0-4f3a-b1ab-41c88d372505\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"8211291202\",\"nickname\":\"éŋįĻž\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"c1adb014-6e2f-4b03-9a99-12a73c770bf6\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"2275164187\",\"nickname\":\"į\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"db53ca8c-d4eb-4023-ab59-e7d07994f752\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"3020676146\",\"nickname\":\"åé¯å¤Šæļ¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"3d606e8f-29df-424a-87e3-cfa9f097952c\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"4981130292\",\"nickname\":\"mo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"1704355008258\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"7690907701\",\"nickname\":\"ååĻåĻååĻåĻ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"233d0aee-a7e6-455b-85c1-f2bc577ea746\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"7531814579\",\"nickname\":\"ææ¯åĨŊäēē\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"5fb683ed-259b-40de-9ed3-683a090f7b9a\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"6965419526\",\"nickname\":\"E\\\\van\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"b5eda1d5-d4af-433b-b5a3-3e143ff08529\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"1831659683\",\"nickname\":\"zzz\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"5bb86892-eca5-4be6-90e9-dc10cb14b33b\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"5596279712\",\"nickname\":\"1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"f9119c91-a67e-46a8-8a9a-a492603fc60c\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"8952393298\",\"nickname\":\"maplerpx\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"21e096f4-9eab-4829-ace0-a65a9ff8c2bd\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"6283419580\",\"nickname\":\"æ¸
čˇ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"e07a35dd-f4be-4710-9bdb-ef11b767cba4\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"2190613325\",\"nickname\":\"大éåĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"fff4877e-a969-4ece-bf51-5afbb874b4df\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"7865020191\",\"nickname\":\"CVIP\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"9357d616-b074-4c60-9a60-7a9a1bc489d3\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"8224334313\",\"nickname\":\"Van\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"1c143896-9a66-46ec-9c26-f9dd8afa99ff\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"1820723584\",\"nickname\":\"åäē\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"1704383234625\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"9162422557\",\"nickname\":\"king\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"a92e9876-f479-4bbf-ab4a-2104070a82d7\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"7453584800\",\"nickname\":\"æĨįå§æ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"76cc3850-f419-48d8-ae5b-03ace8d3aaf2\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"2389045052\",\"nickname\":\"carry\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2389045052/v2-b98cf82ba221673b93c542c83c3c5bca_r.webp\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"393dd3d5-2c28-4959-af67-e9a0f8014c46\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"2631401942\",\"nickname\":\"čĸå
į\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"1704425653131\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"5349634613\",\"nickname\":\"sam\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"c48f496a-8dfa-4ec9-88f1-137876b1efd8\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"9860289710\",\"nickname\":\"eh\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"5dd46802-904d-4e8a-84ff-15d8227af2aa\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"6686846215\",\"nickname\":\"18310935896\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"57460695-7612-40a1-b164-02e4e3985a91\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"3169244622\",\"nickname\":\"åŧå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"8c2da0a6-7d24-46f6-bddd-a2806220a969\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"8086558094\",\"nickname\":\"å°äē\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"1704435823190\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"4261410970\",\"nickname\":\"BETTER\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"06ca834c-8b87-4f00-9d65-6f372e97361c\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"4939956693\",\"nickname\":\"skysheep\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"40086030-3908-4f00-8d58-c92586f3be85\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"1119462227\",\"nickname\":\"cyber\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"1704439677887\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"6566879594\",\"nickname\":\"Uson\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"1ef3a270-cfc2-448d-8e38-cc3339f4f53d\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"6287774671\",\"nickname\":\"kk\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"0146ab26-91f0-47c3-ad89-df6006586aa9\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"6901714518\",\"nickname\":\"å\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"2665fb3c-8012-4e28-899c-a2383834002f\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"5535739780\",\"nickname\":\"1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"30350d4e-dba8-47ab-bd69-5c305e042dbd\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"8646025601\",\"nickname\":\"éŖä¸æčŊŦ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"faba2112-b1c1-44f2-8889-b21db35a90c8\",\"ex\":\"\",\"isPinned\":false},{\"ownerUserID\":\"1695766238\",\"remark\":\"\",\"createTime\":-62135596800,\"friendUser\":{\"userID\":\"4041344265\",\"nickname\":\"test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},\"addSource\":1,\"operatorUserID\":\"f0418a44-7029-4af6-ba64-4aa85f89a8ec\",\"ex\":\"\",\"isPinned\":false}],\"total\":3944}}"}
+2024-06-24 10:57:03.345 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/friend/get_friend_list", "state": "success", "cost time": "103ms"}
+2024-06-24 10:57:03.346 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [friend/friend.go:104] BatchInsertFriend {"operationID": "1719197817604066041", "length": 100}
+2024-06-24 10:57:03.353 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:330] full sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalFriend"}
+2024-06-24 10:57:03.354 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/friend/get_full_friend_user_ids", "body": "{\"idHash\":0,\"userID\":\"1695766238\"}"}
+2024-06-24 10:57:03.433 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/friend/get_full_friend_user_ids", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"version\":16198494589760299495,\"versionID\":\"66716ed586ddb14d8309dc80\",\"equal\":false,\"userIDs\":[\"2857250700\",\"3117943962\",\"9112045680\",\"7999733965\",\"7363948441\",\"9972242149\",\"6131489317\",\"2529173030\",\"8316865470\",\"1951127248\",\"9658470863\",\"2213558486\",\"4650957151\",\"3089530163\",\"5046045029\",\"5297812664\",\"7706881098\",\"4253320786\",\"4378913374\",\"1219920920\",\"4140617939\",\"4174741233\",\"7618202429\",\"7656755258\",\"1132125149\",\"7758124650\",\"9550545034\",\"2161754714\",\"5296469685\",\"4752930364\",\"3153752108\",\"4674991198\",\"2962770393\",\"4142553143\",\"9186029513\",\"5863796992\",\"2823062805\",\"2115325771\",\"3950148404\",\"5775691842\",\"6311770884\",\"3868556005\",\"7261912754\",\"2964634883\",\"7103047524\",\"5306710076\",\"2294788609\",\"7605980080\",\"2081682065\",\"5832825629\",\"7955826088\",\"8052618451\",\"5808959084\",\"8914287800\",\"6342959213\",\"3140450276\",\"6132997969\",\"1005848588\",\"9511107616\",\"7235831415\",\"7614636349\",\"7092131990\",\"6529480566\",\"7115019432\",\"8085178076\",\"4389192475\",\"4393448866\",\"8211291202\",\"2275164187\",\"3020676146\",\"4981130292\",\"7690907701\",\"7531814579\",\"6965419526\",\"1831659683\",\"5596279712\",\"8952393298\",\"6283419580\",\"2190613325\",\"7865020191\",\"8224334313\",\"1820723584\",\"9162422557\",\"7453584800\",\"2389045052\",\"2631401942\",\"5349634613\",\"9860289710\",\"6686846215\",\"3169244622\",\"8086558094\",\"4261410970\",\"4939956693\",\"1119462227\",\"6566879594\",\"6287774671\",\"6901714518\",\"5535739780\",\"8646025601\",\"4041344265\",\"9418340681\",\"8443805897\",\"4875538382\",\"5336317141\",\"7852754787\",\"6966528341\",\"6763043356\",\"8327482141\",\"1153514846\",\"3192218781\",\"6857178107\",\"2116967433\",\"6875431039\",\"3751457430\",\"2294068026\",\"5606396140\",\"5734504508\",\"7940483102\",\"4641774210\",\"5401562218\",\"1130612769\",\"4152679278\",\"9808385174\",\"6453774519\",\"2494091274\",\"5620768201\",\"1291601426\",\"5304967461\",\"8003800642\",\"1878877862\",\"5059658106\",\"6171677006\",\"2484820129\",\"3277768810\",\"5939377886\",\"2879577568\",\"3220549850\",\"3561370203\",\"7440672921\",\"8476059904\",\"3862147424\",\"1029199385\",\"5406159540\",\"4008031414\",\"2956222225\",\"8032860565\",\"9600612423\",\"4164663659\",\"1854239844\",\"4254681784\",\"8389624275\",\"6913797339\",\"5823977481\",\"1197740724\",\"6265776649\",\"7601958347\",\"7020398872\",\"9962903434\",\"6893239717\",\"4371536904\",\"5552236107\",\"6386210375\",\"9875288022\",\"8445041485\",\"5410098477\",\"5383441189\",\"7213865012\",\"2734901662\",\"1948326429\",\"7162252799\",\"4834281814\",\"1831010849\",\"6699700239\",\"4834690774\",\"9812341763\",\"1425098887\",\"6863876045\",\"6161718484\",\"3679618679\",\"5896150134\",\"1330357963\",\"2610489646\",\"4576249771\",\"4475835014\",\"9003815934\",\"7044261595\",\"6285709625\",\"2839845469\",\"2177829402\",\"5586125949\",\"2100400616\",\"7291693120\",\"4302380765\",\"7102928206\",\"6352839849\",\"8929623425\",\"2767105920\",\"2980893666\",\"4257335322\",\"2180823601\",\"2876405749\",\"4609025266\",\"7620665389\",\"7410291177\",\"1831904357\",\"2962834146\",\"8558447046\",\"4204574965\",\"8929662634\",\"9213219531\",\"7992150449\",\"8014785059\",\"8450512511\",\"1197930203\",\"7020890145\",\"7597689214\",\"6754137880\",\"6568661215\",\"1253082303\",\"3947763668\",\"5857452412\",\"6537610017\",\"8737115397\",\"5788143929\",\"9630683705\",\"5794961319\",\"5296644653\",\"2550644812\",\"3387336082\",\"9520465181\",\"4143953359\",\"3550065953\",\"8560709818\",\"5496039772\",\"1435708354\",\"2704233049\",\"8005444087\",\"1128086235\",\"6420701443\",\"8035577893\",\"2413777979\",\"8392406358\",\"5375609152\",\"6685902642\",\"8879166186\",\"9204866505\",\"7291327778\",\"8182249376\",\"4892758656\",\"5584327976\",\"7437040692\",\"5633059660\",\"1743177197\",\"5152772821\",\"6539096974\",\"6868678037\",\"2300236631\",\"4672885387\",\"5513765615\",\"9215480998\",\"8384057593\",\"5907279098\",\"4668099372\",\"9556144042\",\"5452365658\",\"8536119014\",\"1255769566\",\"9704234829\",\"1713347484\",\"9924223480\",\"7390780798\",\"8985349171\",\"3224221765\",\"1817747447\",\"3554401652\",\"8353064427\",\"1169864390\",\"4049340883\",\"5241529913\",\"1408523578\",\"6754912650\",\"3625321133\",\"6966123174\",\"8596270879\",\"9245513894\",\"9449123364\",\"5677381479\",\"8542303515\",\"2105815429\",\"2500499043\",\"4754517682\",\"8744886846\",\"6772352172\",\"9682481051\",\"7856252983\",\"8019770129\",\"5795637205\",\"3261157334\",\"6618248076\",\"5817925510\",\"7368376836\",\"9783788754\",\"7240565210\",\"4780839267\",\"7357465056\",\"4513939193\",\"5397087982\",\"2067518707\",\"3826712907\",\"4648916002\",\"9287504890\",\"3895447084\",\"8310070431\",\"4975019413\",\"8818424284\",\"4080738041\",\"4233310059\",\"5647374792\",\"8190298841\",\"5803896006\",\"3834757485\",\"3739934262\",\"2294606956\",\"7828193903\",\"4220093768\",\"2970994891\",\"1313516275\",\"7724890013\",\"6204547412\",\"6288096156\",\"4252484758\",\"9920591606\",\"5818783212\",\"8019506801\",\"9325129123\",\"9653906508\",\"4508553291\",\"6083951309\",\"1069920007\",\"6078638343\",\"3602955381\",\"1246378526\",\"9939908351\",\"1774447755\",\"3583855819\",\"7706735929\",\"7207940426\",\"3645011153\",\"9032177660\",\"2361415263\",\"7363253608\",\"9783316715\",\"7854235526\",\"4401936006\",\"1070085652\",\"5067345572\",\"2552156733\",\"4578601959\",\"6688995137\",\"1501353503\",\"5883787211\",\"7569247517\",\"9044201385\",\"5109208108\",\"1296481060\",\"3951978865\",\"3418101290\",\"8180241502\",\"8612888823\",\"4617886925\",\"7614708020\",\"2384253834\",\"1426385421\",\"2108107622\",\"7864246599\",\"6165380448\",\"3495022341\",\"6571764694\",\"4095191329\",\"8014326203\",\"5185600527\",\"4835400415\",\"2220605266\",\"7275557315\",\"4247095598\",\"8970561974\",\"5290454482\",\"6013027606\",\"1896406410\",\"4627757948\",\"6277147514\",\"3352768401\",\"6404356222\",\"3493014269\",\"4979480519\",\"3309832576\",\"4631480818\",\"2364621913\",\"7673707661\",\"2104195868\",\"4628456484\",\"7591217919\",\"6448579919\",\"5107494273\",\"8633297465\",\"9644984361\",\"8690034954\",\"5842361658\",\"6398540247\",\"4612931477\",\"9000953253\",\"1993324527\",\"2373832029\",\"9389457938\",\"1952868490\",\"3787639127\",\"9940283309\",\"6616366600\",\"2713785709\",\"4568092882\",\"3958284610\",\"2014288178\",\"4113735582\",\"2863149679\",\"5120891134\",\"9408449152\",\"1979754569\",\"7475442514\",\"1287973372\",\"7104903347\",\"1225764106\",\"6585308853\",\"9615126029\",\"5821718929\",\"6921798228\",\"4010963995\",\"2831301183\",\"5937972697\",\"7218943329\",\"4451267516\",\"3204690068\",\"6531826562\",\"1057649044\",\"3512321008\",\"3697152375\",\"8528240286\",\"7052078762\",\"6561879012\",\"2715028883\",\"7773809772\",\"7522269845\",\"3502864403\",\"9705413308\",\"9528720745\",\"1062100611\",\"2324043115\",\"7899640700\",\"3628521511\",\"8935113461\",\"3355860649\",\"1752144503\",\"4064402118\",\"2777392996\",\"3750980145\",\"3423009410\",\"5017045152\",\"1110128907\",\"4328265262\",\"6982573684\",\"4067008127\",\"5343195507\",\"6933150383\",\"4551538686\",\"1503799516\",\"5001599614\",\"1778147024\",\"3094251676\",\"1105464832\",\"3517778099\",\"8614413702\",\"2104948837\",\"7839142209\",\"6947312143\",\"3276126003\",\"1081211551\",\"7288601605\",\"1231061920\",\"9260806687\",\"5296052389\",\"4870999670\",\"9868600919\",\"2890334421\",\"7306283423\",\"2951333723\",\"9790545188\",\"8053445313\",\"8228094145\",\"4189886690\",\"6955315855\",\"4122315779\",\"4554875439\",\"2106298144\",\"7782213970\",\"3789622986\",\"5151877467\",\"4316352542\",\"4995366980\",\"5975439779\",\"5358143052\",\"8941452423\",\"6614558445\",\"8785536899\",\"3227148059\",\"1201870569\",\"5307357041\",\"6692484993\",\"9716918074\",\"1981410842\",\"6156827373\",\"8112346923\",\"8151192752\",\"4231104423\",\"1975712729\",\"6608487604\",\"4233425493\",\"3750772349\",\"2962214402\",\"6352104335\",\"1239260993\",\"5249725335\",\"2216649304\",\"1466421314\",\"6663875174\",\"7690669440\",\"8808621985\",\"7335137190\",\"2902603154\",\"5397363424\",\"8569604066\",\"2419735015\",\"8455239611\",\"6006290878\",\"3322768391\",\"7743820010\",\"5778047866\",\"1525076035\",\"7457097377\",\"3150135159\",\"7916509152\",\"2074661004\",\"3962961610\",\"4583274239\",\"5045959757\",\"3789393466\",\"6087811348\",\"3655173277\",\"1163727739\",\"7121367305\",\"6326666004\",\"7319360351\",\"3224719808\",\"5910546288\",\"1421222947\",\"8322698564\",\"2320413995\",\"1511563482\",\"2558214548\",\"7739798150\",\"9582809602\",\"6512556770\",\"2175304326\",\"1457549515\",\"3643765049\",\"5659573503\",\"4300349125\",\"1834112002\",\"9762257538\",\"6261322669\",\"1860327649\",\"5203162281\",\"5540563810\",\"2491509322\",\"8203292432\",\"4958357173\",\"6116896250\",\"3591643599\",\"4614771183\",\"4560543353\",\"5143564922\",\"4961711537\",\"2854365488\",\"6414911020\",\"2934198637\",\"9533255877\",\"4911851183\",\"9201875027\",\"9721005199\",\"2495044228\",\"1692205388\",\"3405014751\",\"8842425902\",\"8583690065\",\"7034540317\",\"6611636445\",\"3129026839\",\"3570742368\",\"3528275239\",\"3173403446\",\"1118121179\",\"7567294877\",\"2247734613\",\"6700520119\",\"7421821939\",\"1179846066\",\"9793764585\",\"8613544365\",\"6262174436\",\"8002441294\",\"1041526810\",\"8319353787\",\"9207372851\",\"1807355584\",\"3133075625\",\"3193592046\",\"8544654562\",\"9294815765\",\"5368584236\",\"9914300355\",\"9624703660\",\"2726215647\",\"6441149641\",\"8823387090\",\"7503981720\",\"8235499624\",\"1672477147\",\"2592855383\",\"4636565947\",\"4767981688\",\"9438981908\",\"4198077672\",\"7853514710\",\"1450541750\",\"7387723009\",\"5480713946\",\"5206946655\",\"6720463717\",\"1664486975\",\"7439714986\",\"1112057887\",\"5381374647\",\"7643653997\",\"7681112296\",\"1076727996\",\"8460084433\",\"3380521639\",\"4951801389\",\"8309865529\",\"4049223183\",\"4710682050\",\"7672451658\",\"7940823833\",\"9458613234\",\"4019430612\",\"3284080283\",\"7271132643\",\"4413764571\",\"2731806832\",\"5207254443\",\"5728062211\",\"2321445599\",\"1776346921\",\"1035018583\",\"3049658867\",\"3233270846\",\"8533102456\",\"1484864273\",\"4900753426\",\"9874112427\",\"5864051915\",\"3045192605\",\"3719131896\",\"2933595653\",\"7943196334\",\"7966350266\",\"8246905074\",\"5581090381\",\"2966958326\",\"3489929329\",\"6605809249\",\"2271624505\",\"3023583215\",\"2755984629\",\"3483519033\",\"4959913802\",\"8640727499\",\"9480889921\",\"3999001279\",\"6975622953\",\"6699224388\",\"8386666767\",\"3268693150\",\"6270908929\",\"1191255050\",\"4364213352\",\"9874390196\",\"4240278083\",\"8607110044\",\"7319611102\",\"1255014799\",\"9356390327\",\"8455935596\",\"7924475094\",\"3650402223\",\"3960310198\",\"2660869153\",\"1522530015\",\"7347440370\",\"8210397277\",\"2367330798\",\"2226864743\",\"3408547602\",\"6168075727\",\"2513608056\",\"6960387254\",\"9987229337\",\"4289978919\",\"4647392322\",\"3693972131\",\"2136985550\",\"3221190872\",\"1483410143\",\"1197722329\",\"3192583468\",\"3470375736\",\"8770027856\",\"7263485679\",\"9068605463\",\"6313419358\",\"2097541846\",\"6832510780\",\"2802049271\",\"4111442760\",\"3168796642\",\"5086890922\",\"5347992385\",\"1122401334\",\"5031390441\",\"1498293229\",\"8893609597\",\"5039689203\",\"6686526228\",\"2601184652\",\"9410947536\",\"5839682145\",\"9643981165\",\"7207090799\",\"2316549309\",\"8046375945\",\"9105258430\",\"1655462573\",\"1619510595\",\"3571143305\",\"9089447149\",\"5453108500\",\"4549986255\",\"2797666974\",\"1894592643\",\"6219819108\",\"2159393416\",\"4275733340\",\"4422224754\",\"8506767167\",\"7236965387\",\"8172345347\",\"7464954417\",\"7147058580\",\"3709292948\",\"4716126862\",\"9486728724\",\"3688737567\",\"2553226423\",\"6881124784\",\"5996388709\",\"2553130763\",\"5822391747\",\"7377769800\",\"3221229320\",\"5553194662\",\"1801012070\",\"3799378960\",\"4943773015\",\"1084666176\",\"9090358505\",\"1026082681\",\"6957081032\",\"1856646576\",\"4615063306\",\"2575964991\",\"9701705776\",\"1825528748\",\"5931929122\",\"4481379556\",\"9846367663\",\"5321467496\",\"2756605961\",\"6765812585\",\"7882873434\",\"1538447111\",\"4911332544\",\"6128440220\",\"7158015552\",\"9472932551\",\"2878889045\",\"1114171800\",\"4999156692\",\"9845972476\",\"3800330261\",\"5860770188\",\"3447932943\",\"9235143815\",\"1145518931\",\"2677077317\",\"9147986978\",\"4366259531\",\"4596532610\",\"6642201111\",\"9990136696\",\"5908182038\",\"7405212428\",\"3727425498\",\"4195435042\",\"3200726264\",\"3308461087\",\"3701246521\",\"1199452366\",\"5360417820\",\"3839699134\",\"5950701783\",\"1203740992\",\"3485197519\",\"9942703170\",\"8355159098\",\"2768044296\",\"8938639079\",\"7867796641\",\"9499885295\",\"8460784953\",\"6060319919\",\"4026813737\",\"2519991844\",\"9169530932\",\"4896388822\",\"1262838585\",\"5052720919\",\"4344723150\",\"7004255923\",\"5217579807\",\"6511811241\",\"3748470665\",\"3564564648\",\"8742676847\",\"7854288559\",\"1119049102\",\"8045511039\",\"6133543856\",\"9025203324\",\"4124281952\",\"5856396568\",\"4389669728\",\"4689169233\",\"1586898988\",\"4791442681\",\"4988969273\",\"8046251549\",\"6920562819\",\"2904203350\",\"9765325563\",\"2963659057\",\"9397440115\",\"3115019608\",\"8578360952\",\"8439362049\",\"1974192173\",\"2406359607\",\"3189972504\",\"8242204929\",\"5160877753\",\"8004543435\",\"2055552460\",\"7152114427\",\"5159666152\",\"6926553569\",\"3897778874\",\"3790708319\",\"8372997122\",\"4530769942\",\"7343731800\",\"9654809682\",\"1570753957\",\"5654578948\",\"8535351180\",\"1035596382\",\"8558757778\",\"7175306389\",\"1912058390\",\"7935004142\",\"5016947087\",\"3402038544\",\"2814204296\",\"4501084974\",\"1819708663\",\"8688389470\",\"1879624691\",\"1098139429\",\"2379157232\",\"2738525736\",\"8494962468\",\"4485043552\",\"6806887201\",\"5259696013\",\"7692607035\",\"7412111847\",\"2661098595\",\"7383684265\",\"1617274099\",\"3441335163\",\"1503313265\",\"1328609722\",\"5896186963\",\"1111364629\",\"2397238037\",\"3935071086\",\"7175450468\",\"7516710182\",\"4450360727\",\"1114603358\",\"5936400835\",\"1125316748\",\"8810821200\",\"4488638760\",\"3463065880\",\"1864342100\",\"3973845314\",\"7360686805\",\"5286535793\",\"9702639521\",\"2901914165\",\"2595508365\",\"6549643089\",\"9070071192\",\"6693315961\",\"8632216197\",\"4912844543\",\"1148014193\",\"9460029109\",\"7894596798\",\"5295369982\",\"9715723472\",\"7548971598\",\"7931463251\",\"5630216908\",\"7652778337\",\"6858024107\",\"2130822983\",\"2193659648\",\"1247281849\",\"7482603409\",\"6746838054\",\"4663715535\",\"3707971244\",\"7848167680\",\"4222334962\",\"7537716241\",\"6443345562\",\"4119796562\",\"4167776677\",\"2984741494\",\"1610353382\",\"8344051901\",\"7244572239\",\"8436024021\",\"9527412250\",\"8477220212\",\"4590290601\",\"3235316541\",\"9410605811\",\"4867820065\",\"9192054233\",\"5918528750\",\"5200142893\",\"7047604147\",\"5334756257\",\"8350518493\",\"3420613648\",\"4553582795\",\"3270681057\",\"7802400332\",\"1793479516\",\"6627105296\",\"9413853471\",\"5248385191\",\"6224388014\",\"7320145013\",\"1222190045\",\"5152367578\",\"2981246162\",\"4464911980\",\"5124623407\",\"1250766516\",\"7763239948\",\"2827017309\",\"6441650238\",\"9118795910\",\"2033736816\",\"9067017669\",\"8745122471\",\"7302196202\",\"9308608945\",\"9200307656\",\"5098290115\",\"1445725217\",\"8400344163\",\"3297069764\",\"7646760743\",\"3786464348\",\"1049946080\",\"3405537375\",\"5108778950\",\"6670760760\",\"6704991652\",\"3196192331\",\"7856301343\",\"4209534099\",\"4985196437\",\"7986340950\",\"8783516485\",\"1602000005\",\"8189440989\",\"7693122919\",\"3845663923\",\"5352682579\",\"1528034041\",\"8193549184\",\"1721395134\",\"3357676251\",\"7388505150\",\"9956133955\",\"8607773408\",\"3522449211\",\"5373490184\",\"2467222861\",\"9879946936\",\"3598806139\",\"2529149450\",\"7963718443\",\"5152700528\",\"2822906793\",\"4055940070\",\"5192859184\",\"9550992804\",\"7357529462\",\"6845749447\",\"8337539661\",\"5329543914\",\"2974929762\",\"8804394305\",\"2010453067\",\"3217545671\",\"9203035243\",\"6494483474\",\"5735206330\",\"1326889006\",\"1905725782\",\"4829651300\",\"4702935618\",\"7169497233\",\"5358983896\",\"6741909723\",\"3509756342\",\"5658001949\",\"7597673862\",\"6786364682\",\"2024880531\",\"9701519461\",\"1109663154\",\"5728456517\",\"4124733788\",\"4235698714\",\"6449141444\",\"5285022981\",\"3360234875\",\"2814797407\",\"5887387594\",\"5233426123\",\"9418897256\",\"6818425876\",\"7439021681\",\"5450965115\",\"8443036798\",\"3173756579\",\"3529802775\",\"6373189805\",\"9444808535\",\"9389885910\",\"7772289742\",\"5240575339\",\"7497646189\",\"9568064166\",\"3107511955\",\"1184247096\",\"9510908752\",\"1908218712\",\"5945434993\",\"9773300745\",\"2330580373\",\"3269425301\",\"1048970643\",\"9929919200\",\"7827297461\",\"8904622411\",\"6987095163\",\"7999383414\",\"4180249221\",\"4087789327\",\"3394129159\",\"7275425646\",\"7821370665\",\"6625451597\",\"4536976003\",\"2933186791\",\"9431649345\",\"9894477008\",\"3547752374\",\"6582718155\",\"9199088622\",\"2754162204\",\"4306527503\",\"6670339193\",\"8454189295\",\"5442199418\",\"9346971193\",\"8039982396\",\"4981368838\",\"4221194205\",\"6767821294\",\"3708535808\",\"6378176309\",\"3485222434\",\"9163061763\",\"7342127502\",\"3335272940\",\"8219584363\",\"1747359714\",\"8861830064\",\"9762995627\",\"5717044381\",\"7695096009\",\"7151680921\",\"7272954153\",\"3899444240\",\"5175926475\",\"6513275013\",\"1751282511\",\"2408460453\",\"4204000340\",\"2757252842\",\"9784306149\",\"7939778002\",\"8002908818\",\"2527123914\",\"4774906057\",\"4079084055\",\"3452044353\",\"4500177587\",\"3800799958\",\"5997395137\",\"2467407321\",\"9846974241\",\"4718128155\",\"7640096597\",\"8804352974\",\"5346815324\",\"6068497884\",\"5264992214\",\"5033164124\",\"6060091841\",\"9738388188\",\"3417649963\",\"6621259604\",\"7033422792\",\"5221720362\",\"7159773067\",\"9068307497\",\"1180960663\",\"3048025260\",\"6683875714\",\"3295857972\",\"4555507970\",\"8215486465\",\"5665605844\",\"9800821226\",\"9833458575\",\"5093785048\",\"1919047430\",\"9951072285\",\"9119188102\",\"1361338405\",\"5420104655\",\"2815363205\",\"8606367434\",\"1655642484\",\"2827279331\",\"7315198048\",\"7568242587\",\"2635072834\",\"3870370757\",\"7319695659\",\"1931646522\",\"1236363603\",\"5625548410\",\"6761468459\",\"8491976474\",\"3931186398\",\"7847107135\",\"5695990734\",\"7863641493\",\"7497299557\",\"1744636404\",\"5981427132\",\"8386793499\",\"3199458860\",\"1113172567\",\"6845692313\",\"5899173891\",\"5643092782\",\"3240646453\",\"2800069016\",\"7004902560\",\"1985863892\",\"1881699466\",\"8388063569\",\"5075042452\",\"7534564044\",\"2501035310\",\"8759251402\",\"4585412233\",\"7881930526\",\"8729072173\",\"6516498277\",\"1215813908\",\"5921920938\",\"2903763431\",\"3057735982\",\"6519854131\",\"4685588650\",\"5526651611\",\"5003938059\",\"2305551097\",\"3656425275\",\"6244724164\",\"8046583538\",\"6232137221\",\"9829542126\",\"3351106700\",\"4687007131\",\"4701844957\",\"1591700454\",\"4518410219\",\"7863511599\",\"3805642017\",\"3115148556\",\"5432843240\",\"1669430182\",\"6908614794\",\"6755720200\",\"4857349434\",\"8780182642\",\"5525995594\",\"9942891463\",\"7937047670\",\"7838322353\",\"7327635605\",\"1137346656\",\"3812987647\",\"8393853819\",\"7451137864\",\"6663129968\",\"1106456014\",\"2716096987\",\"4319599306\",\"3542101940\",\"1352959012\",\"7036122900\",\"4091428240\",\"3965483986\",\"2654376801\",\"6033028313\",\"8837652030\",\"9646811476\",\"9844056821\",\"7835799312\",\"4627372556\",\"8843246052\",\"7713778154\",\"1670622606\",\"2544821957\",\"8776392357\",\"1119184791\",\"4958846328\",\"5159407655\",\"4786954344\",\"9525788516\",\"7542365341\",\"8707396681\",\"7848975164\",\"5656745158\",\"2775808036\",\"5104021530\",\"4247377924\",\"1178600008\",\"9817116271\",\"8423008156\",\"7587745030\",\"7690891476\",\"3796678904\",\"8126770108\",\"1061497126\",\"7645589134\",\"2838302193\",\"7498515000\",\"8154138523\",\"5548591709\",\"5073192046\",\"7686286348\",\"4915484479\",\"6104556263\",\"2262854413\",\"2069135616\",\"4242533018\",\"6149155248\",\"3427883907\",\"6481678351\",\"9885315814\",\"2594011902\",\"6536907751\",\"1092596091\",\"6484797725\",\"2290916297\",\"4486805078\",\"2600383208\",\"4337583921\",\"5288626264\",\"8713397018\",\"3593797495\",\"8658174960\",\"6134647314\",\"6840115382\",\"3834703974\",\"9569742620\",\"4196155498\",\"6099670645\",\"7507197097\",\"5410772311\",\"6881765283\",\"7001714127\",\"2945631149\",\"3330044431\",\"3685670989\",\"8016586723\",\"5404307971\",\"7523266932\",\"7735805334\",\"4216757974\",\"8352206292\",\"9676545595\",\"2468662977\",\"9393341134\",\"7065253893\",\"3030995041\",\"8141818865\",\"3378171880\",\"9845775616\",\"2024935500\",\"1024013158\",\"9588309595\",\"7472541978\",\"5640122986\",\"8518800133\",\"7720758526\",\"3200607575\",\"2351226722\",\"3238659031\",\"7386489423\",\"3139569060\",\"3803994837\",\"8207174748\",\"1351222021\",\"8662971476\",\"1774777128\",\"6171560899\",\"7725196248\",\"5365048884\",\"9840028485\",\"7740091536\",\"8027972177\",\"8640390697\",\"3249933654\",\"8054377408\",\"3083415284\",\"7622429074\",\"4834232511\",\"8217784296\",\"3114125867\",\"1628445271\",\"9694696718\",\"2849945986\",\"3237793462\",\"9531540758\",\"6723843756\",\"2148094530\",\"8643787495\",\"9287571322\",\"9560430025\",\"8573571335\",\"4039256136\",\"9870300498\",\"8571544480\",\"7805584149\",\"7595722240\",\"8867254112\",\"5027132489\",\"5871437314\",\"3328438853\",\"9655460349\",\"2065649737\",\"2942822451\",\"5280943776\",\"2298259901\",\"8854356304\",\"5784013945\",\"9080128965\",\"2485271223\",\"7413274712\",\"6023508071\",\"2876517639\",\"3583713307\",\"8213594817\",\"4372919561\",\"8965027422\",\"8130195053\",\"2591881637\",\"9236237184\",\"1088304633\",\"1596529802\",\"2485831627\",\"5632773822\",\"3107872821\",\"8427634569\",\"3469803158\",\"5248150745\",\"3633193427\",\"3840194843\",\"5570249193\",\"3397676820\",\"8560928083\",\"6592301142\",\"9307746287\",\"9947889277\",\"6433354761\",\"8313094015\",\"4873691241\",\"5984173458\",\"5115816718\",\"7598799824\",\"2318151329\",\"6557841892\",\"6947004749\",\"8634312196\",\"1799928569\",\"3250005519\",\"5244482702\",\"5665554530\",\"8733936530\",\"6700296582\",\"8351972815\",\"4476306361\",\"9730546629\",\"3768320302\",\"7752672529\",\"7528402713\",\"2800090370\",\"5063708805\",\"4689278818\",\"9915273695\",\"2940372216\",\"1078453176\",\"3613993751\",\"4366431790\",\"4511028690\",\"3384044960\",\"8222037249\",\"5587808406\",\"6421051438\",\"9977492096\",\"5746670115\",\"8871946613\",\"9702179908\",\"2487744132\",\"2545303424\",\"2418326201\",\"9258059350\",\"6897470526\",\"4605716056\",\"5240408296\",\"7586062692\",\"2740315835\",\"1950195921\",\"9901933233\",\"9593910181\",\"6881072860\",\"8996361146\",\"4558664801\",\"3261456614\",\"1490112482\",\"6640200986\",\"8248153723\",\"5558311156\",\"5610837207\",\"4949622917\",\"7983666862\",\"1808739935\",\"2817294799\",\"7537715718\",\"9762221880\",\"9489899104\",\"1259205714\",\"2328434107\",\"8930791679\",\"4794115560\",\"5718405684\",\"9640092689\",\"7580742612\",\"4026917269\",\"9162279391\",\"6784987176\",\"5222516154\",\"2311268381\",\"9304736762\",\"7760208560\",\"7735663030\",\"7638046648\",\"1567202525\",\"2674288701\",\"6904613543\",\"2161460908\",\"4284653704\",\"4216644062\",\"7623650329\",\"1496957522\",\"2215031028\",\"8358518421\",\"1404071596\",\"7546355222\",\"8989584694\",\"5661158812\",\"9230292610\",\"7885995213\",\"8763788974\",\"8447830068\",\"5644765212\",\"2147178021\",\"6182903129\",\"4415857340\",\"6935877903\",\"1503571831\",\"3853166116\",\"2997317644\",\"4534383505\",\"8893615815\",\"8755718549\",\"8220710471\",\"3007515052\",\"4681582191\",\"6976438725\",\"4333324598\",\"8446005763\",\"2819267901\",\"7435508463\",\"8067185378\",\"3982399444\",\"6182458494\",\"3205080439\",\"4372248137\",\"1876795205\",\"1947607451\",\"6924749515\",\"5256311014\",\"4307478992\",\"1481152183\",\"7977523116\",\"6338240526\",\"3824382983\",\"6270795380\",\"1597446517\",\"3739320072\",\"4428304728\",\"2669155458\",\"1829995445\",\"3176223906\",\"1254897163\",\"5148465784\",\"6808160177\",\"1606591661\",\"2148877993\",\"5542535779\",\"1404053476\",\"8062088375\",\"5935227089\",\"6133038339\",\"5007601899\",\"6048406952\",\"8186105078\",\"9729290732\",\"8329982339\",\"3994384158\",\"2767449688\",\"2184518026\",\"2864562820\",\"3804444798\",\"7218786842\",\"2420469244\",\"3697628542\",\"9617075837\",\"1854151908\",\"4121091576\",\"7269047472\",\"6606496379\",\"6569298083\",\"8893611164\",\"1328504176\",\"8404373294\",\"4178861776\",\"5358714951\",\"8086917283\",\"4704979905\",\"9154529184\",\"9871558792\",\"5446046008\",\"5587098679\",\"4493065873\",\"1360958542\",\"5409594675\",\"4908904387\",\"9325103737\",\"9720699376\",\"1839129196\",\"3937424438\",\"3249909086\",\"6902718642\",\"8075032607\",\"6602728377\",\"5633378166\",\"8506981030\",\"2469358242\",\"6760352680\",\"4094740281\",\"8170675637\",\"9114286848\",\"1201627975\",\"6036151426\",\"1158421119\",\"2072960535\",\"8529766319\",\"1489050183\",\"7140502744\",\"6953173171\",\"6949156540\",\"1051923075\",\"3801465816\",\"6848660331\",\"3869241646\",\"5235308523\",\"3755727328\",\"7351077360\",\"9232803518\",\"7291159326\",\"7910323746\",\"1030196386\",\"7417541042\",\"4950713210\",\"4501771438\",\"9327284155\",\"7030053653\",\"1804216069\",\"3801184840\",\"1527761901\",\"9379217721\",\"6631065279\",\"3285780245\",\"3197083869\",\"8661722129\",\"4537133650\",\"6937796198\",\"1266887644\",\"3802153805\",\"9609727061\",\"2123184085\",\"7530200728\",\"6469392278\",\"5114178152\",\"1098570531\",\"6557880147\",\"9688178922\",\"6871533486\",\"2186548040\",\"5948016835\",\"3488662042\",\"8035733598\",\"3442471610\",\"5730628535\",\"8233508874\",\"9082391908\",\"1040441805\",\"9735131442\",\"5763494246\",\"8063035464\",\"6179365429\",\"8670587296\",\"4385453331\",\"2925505186\",\"5268812393\",\"4718771983\",\"6996870296\",\"6065191029\",\"7081432967\",\"8346004149\",\"6937921006\",\"7552860065\",\"1738515952\",\"4901778325\",\"8141443295\",\"5131548684\",\"4576673457\",\"7412034038\",\"7222221088\",\"8474885327\",\"1435815467\",\"6051177811\",\"6227325792\",\"5762137067\",\"4547179316\",\"7883425769\",\"1161320377\",\"4715090983\",\"4711741755\",\"8160095492\",\"4705713217\",\"4868312193\",\"8197784678\",\"3737685096\",\"1198170851\",\"9490698152\",\"6924019193\",\"8756835768\",\"5132970330\",\"8849899924\",\"5817653065\",\"3777699354\",\"4654851468\",\"5745714391\",\"2282057245\",\"9912087463\",\"1580228426\",\"5729235369\",\"3277330401\",\"2699572576\",\"1814656795\",\"1596057385\",\"3064262697\",\"9341886465\",\"6312576873\",\"9482224389\",\"1048801023\",\"2864156896\",\"6588136652\",\"2499792755\",\"8527411023\",\"5036254684\",\"2680629439\",\"6662856855\",\"5054553896\",\"9883171407\",\"5959625032\",\"4264539425\",\"2669463502\",\"9636841804\",\"1839949291\",\"4266615651\",\"8753413980\",\"3351467437\",\"1242008964\",\"8913400006\",\"7179657685\",\"8027945462\",\"7050707914\",\"9547736560\",\"4802965282\",\"4259132146\",\"8111508018\",\"2019888097\",\"2241676396\",\"3560303364\",\"9212086649\",\"3791452062\",\"6093808210\",\"8864850031\",\"3204832902\",\"5570319326\",\"6115346815\",\"8156807776\",\"1667631425\",\"2321652781\",\"1806295356\",\"1444423031\",\"4365758115\",\"3396066359\",\"6498376092\",\"7619603154\",\"2777182895\",\"6564186011\",\"9422344882\",\"5708410287\",\"5986232431\",\"2742063027\",\"7853258354\",\"2938766916\",\"7160106831\",\"5940571929\",\"3605639507\",\"4940249071\",\"1084443978\",\"8480505964\",\"8513362072\",\"1717761876\",\"9970101670\",\"1519782782\",\"2501392715\",\"2229500075\",\"6754011874\",\"5790728514\",\"2182589988\",\"7738761244\",\"2304731565\",\"3605112122\",\"8947488684\",\"9504590132\",\"7548985362\",\"6531017055\",\"6676873258\",\"1111503020\",\"2360742959\",\"8890058811\",\"1563714762\",\"2044305683\",\"6644481571\",\"2172356511\",\"3932990255\",\"6036941107\",\"2636416179\",\"6919005317\",\"3367952952\",\"2380361192\",\"1934748565\",\"6406732941\",\"2660237167\",\"6900099844\",\"5885080003\",\"6687633010\",\"2669522749\",\"9916361292\",\"2315425831\",\"7583295966\",\"8960131587\",\"2543136948\",\"9666798322\",\"6820503013\",\"6143363837\",\"3206742093\",\"3741079018\",\"6878072504\",\"9765318831\",\"5842695634\",\"1605306478\",\"6453949619\",\"1848196820\",\"6141140222\",\"7948102945\",\"2441535687\",\"7364897573\",\"8399956257\",\"8491654430\",\"7910017356\",\"6891659611\",\"5131260895\",\"8706087313\",\"2097781817\",\"8838551480\",\"4363081068\",\"5138412244\",\"4117212022\",\"9769121468\",\"6460025590\",\"4569497081\",\"1652390041\",\"6008066663\",\"4193526288\",\"7066654553\",\"3249918280\",\"5728220862\",\"9443124661\",\"2897007768\",\"1050659067\",\"8864056106\",\"9564624893\",\"3100927824\",\"7283174825\",\"9761298760\",\"5894974847\",\"8604696550\",\"4846054480\",\"6579374753\",\"6675598583\",\"6006128096\",\"9174875302\",\"7743491557\",\"9621471724\",\"4509502522\",\"7841293205\",\"7428005405\",\"8710553462\",\"8217169171\",\"1120888738\",\"3119418753\",\"1051234044\",\"4331285657\",\"5226627818\",\"8844820087\",\"9736240141\",\"3011324233\",\"7061967847\",\"6204882268\",\"1047605577\",\"5068449155\",\"4423627349\",\"8100796382\",\"4385686899\",\"1645337519\",\"6742265687\",\"7366211705\",\"2365006326\",\"9976280245\",\"1339832669\",\"1431753089\",\"7050217790\",\"9207250971\",\"6096605449\",\"2168939271\",\"7182741443\",\"5541069207\",\"7283356015\",\"3088309970\",\"4121196365\",\"8778175043\",\"8409494864\",\"1687822249\",\"5955203999\",\"2771080861\",\"8327820770\",\"6559013673\",\"3681367317\",\"7883407249\",\"7401733669\",\"9107290642\",\"8525520412\",\"1223824434\",\"3053433727\",\"8058212949\",\"1217986161\",\"4328997633\",\"5407782499\",\"8447585718\",\"6538167968\",\"4876217110\",\"8684237507\",\"5377724931\",\"8211720551\",\"3023473057\",\"9422520919\",\"9049515564\",\"1314958716\",\"2030639266\",\"3605477209\",\"6723382158\",\"1016745053\",\"9174916284\",\"4297395201\",\"8514393726\",\"2352729542\",\"8747127597\",\"7681600518\",\"5770532835\",\"8428572486\",\"2844833716\",\"2541778634\",\"9926873986\",\"6410043931\",\"6629808721\",\"1794457838\",\"6064103151\",\"5248071176\",\"4113687442\",\"1613711798\",\"7795360622\",\"8222979522\",\"3532135718\",\"1493979234\",\"7158302033\",\"6897615973\",\"2293953462\",\"6203470761\",\"3625514157\",\"8551912178\",\"8035205991\",\"7259365264\",\"6417602965\",\"2958242148\",\"1906445099\",\"4107410993\",\"3766915245\",\"2230209768\",\"3470728766\",\"3641418034\",\"9989242253\",\"7007140315\",\"9680261978\",\"1047286184\",\"5578328451\",\"1315193254\",\"3995365114\",\"8630184960\",\"6773909696\",\"9232651207\",\"2657780288\",\"2647432110\",\"4336422144\",\"8655191799\",\"3251649871\",\"5262644632\",\"9633093534\",\"9827942549\",\"8915465584\",\"8054772199\",\"1447165914\",\"1525462486\",\"7598489536\",\"9333402846\",\"6567751477\",\"1748872770\",\"7059286958\",\"3603216444\",\"3300998316\",\"6814929287\",\"9984169865\",\"8645597251\",\"6605893249\",\"8560487083\",\"1742605630\",\"2289445413\",\"8777730167\",\"5236545003\",\"4591244785\",\"6499282212\",\"9151446701\",\"8229812969\",\"1517471629\",\"7592899422\",\"8902885136\",\"1244598736\",\"3047161541\",\"4515124280\",\"3451045692\",\"1977829381\",\"5113616736\",\"3067600722\",\"2880563506\",\"6132231740\",\"6257143773\",\"2826097502\",\"2542308726\",\"1996969578\",\"6327876925\",\"3872601320\",\"3037865872\",\"5503315300\",\"4053284890\",\"2813681002\",\"8627323715\",\"6346508066\",\"2405162268\",\"9364103352\",\"4453030062\",\"1947536099\",\"1624302032\",\"8187575584\",\"8895487701\",\"2591851186\",\"3199820791\",\"6753861572\",\"9732821029\",\"8166932809\",\"3473799316\",\"2284382043\",\"9027590510\",\"6691486515\",\"8492016735\",\"3844179588\",\"7017747629\",\"2613277163\",\"7276333667\",\"8760812670\",\"1531800981\",\"7657717068\",\"5594047664\",\"7457544036\",\"9612741669\",\"4785606051\",\"6250904913\",\"4714470295\",\"2011701267\",\"8073435095\",\"1378864517\",\"3954641888\",\"8550907162\",\"4514515621\",\"6955901539\",\"2554419927\",\"5129646012\",\"1129238672\",\"5935225979\",\"9387380418\",\"3832386746\",\"3320730621\",\"7626760720\",\"9051266058\",\"7460559805\",\"7337859180\",\"9835297214\",\"8014370177\",\"9852778536\",\"4430427191\",\"3855555410\",\"2056273558\",\"7671876973\",\"8290926771\",\"6814913395\",\"1429778434\",\"2991969100\",\"5925608879\",\"7030017741\",\"4700799522\",\"4902397738\",\"8133515450\",\"1153223299\",\"5074137138\",\"4357320975\",\"7821811338\",\"7529372532\",\"9163773981\",\"5351132193\",\"1078126675\",\"8845469662\",\"6895745083\",\"6113261132\",\"5726747048\",\"5743097181\",\"8411599332\",\"7829456745\",\"3910602054\",\"5806188403\",\"7219300529\",\"1689589076\",\"8160058880\",\"3132656179\",\"1424675347\",\"2016410286\",\"2809251033\",\"2584692046\",\"2647762028\",\"5087027370\",\"1413232357\",\"7683585131\",\"7505224623\",\"4012541644\",\"6506881202\",\"8446372231\",\"7265842354\",\"6875498620\",\"4127687270\",\"9605342546\",\"9037074021\",\"7151327021\",\"5932065188\",\"8486574742\",\"9314649429\",\"9145170670\",\"7594017872\",\"1876910460\",\"6034497071\",\"6225512933\",\"3950757937\",\"3720515485\",\"3613869101\",\"9404981493\",\"5674745391\",\"5331279867\",\"7285011959\",\"7551761509\",\"1731636962\",\"4597354478\",\"3179190302\",\"9323583122\",\"5329005553\",\"2804438534\",\"3570607148\",\"5904075897\",\"7794187489\",\"5719987926\",\"6015794695\",\"1178348711\",\"6518420590\",\"9735279232\",\"2334128456\",\"4662755661\",\"8954088752\",\"4689925923\",\"1399815726\",\"3913129073\",\"9419791140\",\"2302198630\",\"1247768465\",\"6968350970\",\"1003546611\",\"1218106711\",\"6201510570\",\"3356152522\",\"4519437471\",\"6791203959\",\"6859717785\",\"8331569195\",\"2754805926\",\"1656524872\",\"5578731578\",\"7617553749\",\"5816557466\",\"6585436255\",\"9932444003\",\"6195752325\",\"4226213321\",\"3940445356\",\"3971967127\",\"6444500926\",\"3435706047\",\"2491241835\",\"5166465530\",\"8685038399\",\"4542445708\",\"6438561890\",\"7149811761\",\"7221656928\",\"8235631682\",\"9935307700\",\"2210409049\",\"2004232076\",\"8281432408\",\"4667739897\",\"1413892032\",\"6312531724\",\"3312811998\",\"7520656744\",\"7363109030\",\"3217427070\",\"2696721836\",\"1592632793\",\"2961176761\",\"5181423157\",\"3617325444\",\"8303454241\",\"3923864156\",\"3974913605\",\"6106775804\",\"4000650991\",\"5485148642\",\"4655516792\",\"2879113393\",\"1378104152\",\"9486760817\",\"4329402013\",\"8834765444\",\"8447534661\",\"5816946439\",\"7156262588\",\"4449558244\",\"5294929577\",\"3177929240\",\"5086994351\",\"1121842056\",\"4990193480\",\"4080264659\",\"2563542186\",\"3340940320\",\"2682102921\",\"9594595817\",\"4833342766\",\"6820141548\",\"1902484337\",\"8122384069\",\"7307615373\",\"6703162622\",\"1440270225\",\"5384318976\",\"1572952163\",\"9210231392\",\"1058654100\",\"4819622986\",\"5929204367\",\"6118899713\",\"5626394972\",\"1786023921\",\"9584879278\",\"8157216998\",\"9397654697\",\"3599088167\",\"2651221124\",\"9970293910\",\"7672563564\",\"3335253060\",\"6845802743\",\"5405441233\",\"7953410222\",\"3611757660\",\"6302501675\",\"8122645018\",\"4085376424\",\"5002491660\",\"5321587991\",\"1792779407\",\"2456610935\",\"7455859973\",\"1449505287\",\"7276122859\",\"5057316211\",\"4732620707\",\"7005397943\",\"5669416921\",\"2021892716\",\"2065312455\",\"1139778570\",\"6740911583\",\"5896039030\",\"9377917340\",\"1264676490\",\"8382061243\",\"9103065505\",\"1278944119\",\"3767972548\",\"3079018235\",\"7651888817\",\"5363957705\",\"6362196673\",\"2195904688\",\"4526705625\",\"1958518843\",\"1842076890\",\"7387576608\",\"9566846106\",\"4102041542\",\"3311609122\",\"2951042955\",\"9653932291\",\"4764613832\",\"4755574168\",\"4938106565\",\"4741130938\",\"2617887857\",\"2391250488\",\"4824619122\",\"1263384112\",\"5263712829\",\"1403690073\",\"3072683488\",\"8762493296\",\"3134537845\",\"1553095200\",\"3336527674\",\"1810705917\",\"5975476723\",\"5814165285\",\"7920004051\",\"1342056722\",\"3093774659\",\"7268355749\",\"4013309319\",\"3196958921\",\"2776032332\",\"1985870240\",\"4105734635\",\"6126224779\",\"1571918249\",\"4871183993\",\"7978095612\",\"1279884042\",\"7886158239\",\"4601951290\",\"6447835862\",\"1328649560\",\"4613808391\",\"4454612664\",\"1694942215\",\"9080019804\",\"1847547134\",\"4479234419\",\"3023379234\",\"7205422956\",\"3868811660\",\"7471550680\",\"8216642294\",\"3803355027\",\"5629610459\",\"9567110804\",\"1154538243\",\"2673947325\",\"9278741003\",\"1308526907\",\"4872085821\",\"2905252350\",\"7434856012\",\"6587366044\",\"5586255658\",\"9811311058\",\"3156827214\",\"7845216380\",\"9740640735\",\"8152315569\",\"2373768870\",\"2641033059\",\"1709215513\",\"4359161104\",\"3992722755\",\"4001754506\",\"9477456745\",\"2242408886\",\"4328490815\",\"4226237813\",\"1811284251\",\"7100149191\",\"1149674300\",\"4164499789\",\"7933792440\",\"2900920572\",\"1203427082\",\"8942102453\",\"8367461388\",\"5417124831\",\"5189528969\",\"3595322825\",\"3656865963\",\"3277113648\",\"1281934775\",\"4732324211\",\"8223705362\",\"1389519072\",\"8442809460\",\"4331847866\",\"1259491611\",\"6076551181\",\"1186482465\",\"3206443553\",\"1189516087\",\"9096135733\",\"4440450535\",\"5416738193\",\"6237905746\",\"9020451503\",\"2031934238\",\"9423702981\",\"3489712763\",\"1292646581\",\"2780679609\",\"8328850356\",\"4610709176\",\"4849985881\",\"6726134118\",\"1315194100\",\"3851727632\",\"5915346182\",\"2089643170\",\"1911810093\",\"8398865107\",\"1712766650\",\"5109328754\",\"7526687004\",\"2893984568\",\"5782315790\",\"7859279941\",\"3017062485\",\"2228082017\",\"3578633137\",\"8335825785\",\"3862854837\",\"9735240223\",\"5549513683\",\"9596530901\",\"6778602686\",\"1641400615\",\"3025087621\",\"6363109385\",\"5619318712\",\"5710168294\",\"4835033409\",\"8866143916\",\"3724651470\",\"9325990223\",\"4348082955\",\"1012210794\",\"6135244436\",\"9279909751\",\"8970340990\",\"1819336215\",\"3029281130\",\"3075650257\",\"9007292080\",\"4134217728\",\"6133844467\",\"1332124716\",\"8900826469\",\"1113982296\",\"6670746810\",\"3602775150\",\"7700927556\",\"9187643068\",\"8477469958\",\"3682601398\",\"8592196566\",\"2997093071\",\"3778574807\",\"6339230517\",\"2764057746\",\"6145520493\",\"7147734002\",\"9976445095\",\"8228097998\",\"6246279298\",\"7325441690\",\"7650768661\",\"7420437735\",\"3928216074\",\"6171471555\",\"8500228563\",\"2844014343\",\"3932374393\",\"4598359368\",\"8097902004\",\"8342189311\",\"4940175675\",\"1135290573\",\"3279927933\",\"6821762379\",\"7609581785\",\"7821875317\",\"3290255065\",\"4340810454\",\"6770102525\",\"4757807995\",\"4733304576\",\"6005888406\",\"7075754042\",\"7832427972\",\"9560540812\",\"6016147145\",\"2363107482\",\"9340752329\",\"7169812899\",\"4749302175\",\"6689518881\",\"1653288930\",\"3002397383\",\"7638679939\",\"5350931457\",\"1512333186\",\"9056140426\",\"9811354776\",\"7849988024\",\"4559881917\",\"7616246303\",\"9719817461\",\"2445660151\",\"5525192219\",\"2832240999\",\"8710375221\",\"6591504507\",\"3586015547\",\"2626327942\",\"3521826845\",\"9366122795\",\"4436439007\",\"9786979096\",\"1455103500\",\"2912423192\",\"4981191121\",\"4326656042\",\"9511397734\",\"1938451039\",\"7804901425\",\"5665783096\",\"2411591216\",\"2685129670\",\"5693206451\",\"4539505962\",\"3004935297\",\"6116849462\",\"8977536940\",\"1378723738\",\"7353212978\",\"7276945407\",\"4072022438\",\"2849985286\",\"2079144021\",\"9172155059\",\"9361332642\",\"1152052323\",\"1303224493\",\"4977198622\",\"3340382285\",\"8749558646\",\"1975553123\",\"7589005247\",\"3602243749\",\"2671236825\",\"3324817195\",\"7674566777\",\"8097498221\",\"3732248827\",\"6572366754\",\"1007207701\",\"7015565477\",\"1858506629\",\"8384689749\",\"9071076459\",\"7971745226\",\"5581435034\",\"1448477441\",\"6271691561\",\"1925254179\",\"7138502039\",\"7775655960\",\"1091357456\",\"3611690609\",\"8108968441\",\"7746006896\",\"1110013188\",\"8754850165\",\"8059620844\",\"7024387472\",\"7436833627\",\"9003478301\",\"9960038846\",\"9085091731\",\"8906837393\",\"6938235669\",\"7113374792\",\"4313249276\",\"1703789873\",\"1942179907\",\"1411038705\",\"4850514972\",\"1223611752\",\"9460753612\",\"8983932611\",\"7030029150\",\"5619336399\",\"8007107275\",\"9118393507\",\"6031667349\",\"8887175905\",\"5237025674\",\"2888258810\",\"6411073511\",\"9668702178\",\"3902232278\",\"9373564014\",\"2965951542\",\"6806913128\",\"6195299101\",\"5695116048\",\"6026538705\",\"9803514269\",\"6254689070\",\"3192054345\",\"6449138632\",\"5653943210\",\"7546299014\",\"1539916836\",\"5636993626\",\"6982682917\",\"8132192086\",\"3487505389\",\"8491971056\",\"5967938442\",\"7122229636\",\"1001978187\",\"1008432211\",\"1019113328\",\"1020167636\",\"1020330989\",\"1027189710\",\"1035025841\",\"1042709364\",\"1059702215\",\"1072866639\",\"1084537477\",\"1087205663\",\"1110490028\",\"1111724110\",\"1124267584\",\"1141269663\",\"1160166255\",\"1164940739\",\"1173525994\",\"1186763406\",\"1189211982\",\"1193985259\",\"1195520252\",\"1205216213\",\"1214890264\",\"1215714329\",\"1216359267\",\"1257873838\",\"1260906081\",\"1273935053\",\"1294205397\",\"1303174885\",\"1308295709\",\"1312600623\",\"1312766592\",\"1318098494\",\"1322848164\",\"1325120618\",\"1327075767\",\"1335529830\",\"1337385311\",\"1356317580\",\"1356768751\",\"1372274608\",\"1381750803\",\"1382542089\",\"1389388976\",\"1389672286\",\"1400334070\",\"1404108486\",\"1406732851\",\"1428611256\",\"1439097961\",\"1451141537\",\"1459886066\",\"1469739116\",\"1479208215\",\"1491381111\",\"1496085107\",\"1501288201\",\"1503288583\",\"1531529736\",\"1545733795\",\"1547315621\",\"1554671934\",\"1556110492\",\"1572354946\",\"1575369290\",\"1597197183\",\"1639021089\",\"1641258385\",\"1654005478\",\"1659023429\",\"1659042267\",\"1670365234\",\"1672553537\",\"1693456624\",\"1702083952\",\"1702117725\",\"1727201413\",\"1731109771\",\"1736245880\",\"1742363625\",\"1757832292\",\"1772946620\",\"1774642490\",\"1778088968\",\"1778774517\",\"1780015171\",\"1780132425\",\"1789628801\",\"1790308311\",\"1792420009\",\"1803565696\",\"1818754282\",\"1823386847\",\"1824275843\",\"1828448298\",\"1847173569\",\"1866469672\",\"1885489506\",\"1896037684\",\"1896201093\",\"1908245713\",\"1911583328\",\"1911710742\",\"1913583468\",\"1922087882\",\"1928025058\",\"1949451221\",\"1958217588\",\"1962711667\",\"1964147937\",\"1966124402\",\"1968770658\",\"1975362624\",\"1988963519\",\"1990453748\",\"1993900928\",\"1998223815\",\"2004829824\",\"2007415990\",\"2010596235\",\"2024007389\",\"2029633423\",\"2051159423\",\"2055562411\",\"2058272412\",\"2067737063\",\"2068776395\",\"2090630692\",\"2114315169\",\"2122535786\",\"2122903572\",\"2134502115\",\"2135811730\",\"2141887973\",\"2158704735\",\"2159739643\",\"2166930178\",\"2175053091\",\"2177659996\",\"2180660843\",\"2181668438\",\"2184902631\",\"2195170233\",\"2202248073\",\"2203147158\",\"2203420444\",\"2222465830\",\"2243648531\",\"2259719077\",\"2267320291\",\"2269669873\",\"2276632311\",\"2301901243\",\"2303519405\",\"2304329422\",\"2318653347\",\"2321576079\",\"2328221205\",\"2333601327\",\"2347287674\",\"2359475267\",\"2369702392\",\"2372363878\",\"2376970002\",\"2382919335\",\"2403026614\",\"2411791668\",\"2428356422\",\"2435076373\",\"2450037859\",\"2457225687\",\"2459596184\",\"2481840430\",\"2494227455\",\"2509310711\",\"2546145730\",\"2546419932\",\"2546997095\",\"2554370645\",\"2554528968\",\"2554845832\",\"2561044054\",\"2563100730\",\"2563470434\",\"2573171514\",\"2591460564\",\"2592109257\",\"2601366798\",\"2603457456\",\"2609720932\",\"2645362757\",\"2651592493\",\"2664190009\",\"2669963504\",\"2680367243\",\"2693021040\",\"2722031875\",\"2726777258\",\"2729128783\",\"2738308088\",\"2784365787\",\"2789477856\",\"2794126343\",\"2800701915\",\"2800889459\",\"2820286436\",\"2820720133\",\"2831193585\",\"2839146996\",\"2840949175\",\"2845997329\",\"2847651332\",\"2860578616\",\"2878187113\",\"2879740664\",\"2882899447\",\"2887838678\",\"2890713225\",\"2898053958\",\"2901569973\",\"2905053077\",\"2912415463\",\"2914580370\",\"2921314358\",\"2926374953\",\"2926503784\",\"2930942211\",\"2945766167\",\"2956182974\",\"2960809325\",\"2970863091\",\"2974891470\",\"2975162313\",\"2975431366\",\"2987214012\",\"2992114349\",\"2993090899\",\"3004971629\",\"3013893349\",\"3028489935\",\"3028634195\",\"3055349906\",\"3117863124\",\"3119660813\",\"3120559487\",\"3121454753\",\"3140420968\",\"3163653728\",\"3164446436\",\"3190912448\",\"3194606788\",\"3214502593\",\"3218274782\",\"3229531095\",\"3235668582\",\"3238674643\",\"3241132141\",\"3250579894\",\"3263416246\",\"3285975948\",\"3286756773\",\"3293564775\",\"3305731505\",\"3307929768\",\"3325246129\",\"3325428510\",\"3327563110\",\"3332502663\",\"3348455039\",\"3349762211\",\"3361047963\",\"3362215269\",\"3370281252\",\"3372906588\",\"3384056544\",\"3384401195\",\"3390583172\",\"3396711993\",\"3401196714\",\"3413094703\",\"3414693763\",\"3418577436\",\"3424164248\",\"3424790937\",\"3435189401\",\"3444204020\",\"3454057246\",\"3456754627\",\"3463544352\",\"3476401940\",\"3482885129\",\"3489831359\",\"3525517047\",\"3530383327\",\"3530810171\",\"3534795134\",\"3534802796\",\"3537220722\",\"3538940238\",\"3541443626\",\"3546255283\",\"3547273883\",\"3551589140\",\"3555750545\",\"3565888306\",\"3567031924\",\"3573077275\",\"3574516380\",\"3580853228\",\"3603394766\",\"3635232898\",\"3637960024\",\"3654269967\",\"3656507690\",\"3668055835\",\"3668313451\",\"3680940129\",\"3689984008\",\"3693010460\",\"3710967864\",\"3715277438\",\"3715951612\",\"3718279204\",\"3765484234\",\"3782300709\",\"3787170103\",\"3788067433\",\"3832024255\",\"3838004574\",\"3843602112\",\"3844296459\",\"3847693332\",\"3849018031\",\"3851012114\",\"3851220253\",\"3859980461\",\"3860769487\",\"3865122896\",\"3873278893\",\"3879871786\",\"3894253605\",\"3912740754\",\"3919312406\",\"3922682136\",\"3939590154\",\"3939999665\",\"3963707681\",\"3965647724\",\"3971926306\",\"3974823781\",\"3984192272\",\"3985353822\",\"3985432997\",\"3987941559\",\"3989782521\",\"3991660838\",\"3995872443\",\"4002821549\",\"4015475256\",\"4019194868\",\"4023329658\",\"4023669015\",\"4031972755\",\"4036830742\",\"4049517000\",\"4070197417\",\"4082103573\",\"4093701989\",\"4096170064\",\"4114891625\",\"4116383143\",\"4118659143\",\"4130100082\",\"4155714037\",\"4169162891\",\"4189972689\",\"4202803190\",\"4203267238\",\"4215789737\",\"4221167475\",\"4221983701\",\"4223720127\",\"4246570603\",\"4253127832\",\"4265720132\",\"4286070689\",\"4293322269\",\"4293913125\",\"4300789253\",\"4308365405\",\"4316663752\",\"4324879979\",\"4332427151\",\"4344973084\",\"4346231461\",\"4346543697\",\"4348869517\",\"4351325833\",\"4356312106\",\"4358828543\",\"4359987819\",\"4405957427\",\"4426459498\",\"4429313396\",\"4432890829\",\"4440534964\",\"4445212300\",\"4446845883\",\"4453849009\",\"4456783747\",\"4480521251\",\"4494156274\",\"4510059360\",\"4512614259\",\"4546854512\",\"4576871044\",\"4582929187\",\"4589334066\",\"4596959443\",\"4600766877\",\"4613234206\",\"4616348536\",\"4644188070\",\"4647156540\",\"4655129542\",\"4668921559\",\"4686035099\",\"4698451133\",\"4701865718\",\"4705377384\",\"4709872885\",\"4721455080\",\"4738033186\",\"4739985064\",\"4742854958\",\"4748156889\",\"4754852664\",\"4785165125\",\"4823617060\",\"4832615071\",\"4840588859\",\"4849669261\",\"4883519413\",\"4893424641\",\"4918276559\",\"4918328683\",\"4923873012\",\"4926446021\",\"4930915768\",\"4934894155\",\"4937209096\",\"4963393229\",\"4975337998\",\"4978365194\",\"4979639389\",\"4995988309\",\"4999749136\",\"5009769752\",\"5011307721\",\"5024780259\",\"5029114858\",\"5040986608\",\"5044983328\",\"5057868990\",\"5064450025\",\"5067438435\",\"5092290187\",\"5152364658\",\"5165900123\",\"5166918125\",\"5175156228\",\"5178916117\",\"5188528474\",\"5190651797\",\"5206821177\",\"5211251741\",\"5213333820\",\"5226459880\",\"5246894328\",\"5260081632\",\"5282627881\",\"5290473735\",\"5291311764\",\"5291456050\",\"5310011664\",\"5334542905\",\"5348575962\",\"5349221317\",\"5356113166\",\"5358843278\",\"5361174182\",\"5363582234\",\"5373710322\",\"5382734642\",\"5390236703\",\"5390916481\",\"5398613531\",\"5402322052\",\"5410355545\",\"5414128931\",\"5449593636\",\"5455481997\",\"5458539108\",\"5480212485\",\"5480812632\",\"5512448749\",\"5512868112\",\"5514725837\",\"5526021912\",\"5529602787\",\"5540757722\",\"5557876583\",\"5566365465\",\"5568853842\",\"5576420817\",\"5577874223\",\"5587217057\",\"5605784685\",\"5616569214\",\"5633188673\",\"5645682170\",\"5657688195\",\"5659165582\",\"5668726699\",\"5668741436\",\"5668985363\",\"5699652927\",\"5710649058\",\"5715976407\",\"5735757792\",\"5752307329\",\"5766348077\",\"5775768919\",\"5791348183\",\"5798749721\",\"5800725777\",\"5823648213\",\"5863894652\",\"5890658001\",\"5915558310\",\"5921376933\",\"5928750409\",\"5929046253\",\"5937916635\",\"5952571464\",\"5954565885\",\"5955873566\",\"5977374952\",\"5983902361\",\"5984271985\",\"5997701968\",\"6013955514\",\"6015836635\",\"6018243921\",\"6038779981\",\"6051934668\",\"6055213651\",\"6062924771\",\"6074324251\",\"6083577052\",\"6091991132\",\"6104068727\",\"6116541137\",\"6140652559\",\"6141620999\",\"6142166971\",\"6152830251\",\"6158590414\",\"6168367570\",\"6205781501\",\"6216247126\",\"6218720837\",\"6219207142\",\"6240876322\",\"6265354518\",\"6266941295\",\"6268862285\",\"6273646617\",\"6291070602\",\"6292285317\",\"6303051991\",\"6303348015\",\"6313231245\",\"6313729966\",\"6317201698\",\"6319015024\",\"6330822619\",\"6331971236\",\"6334911076\",\"6352490253\",\"6353020967\",\"6361976167\",\"6381244261\",\"6390915564\",\"6397860749\",\"6405123317\",\"6412329187\",\"6419911901\",\"6431088982\",\"6444929933\",\"6454827578\",\"6458562938\",\"6483893350\",\"6496496312\",\"6501494738\",\"6516684062\",\"6522084706\",\"6524017485\",\"6549189747\",\"6551973401\",\"6574042397\",\"6577045201\",\"6582408770\",\"6588496447\",\"6590017598\",\"6592334053\",\"6592691219\",\"6593158401\",\"6593585083\",\"6628117309\",\"6630888513\",\"6640754016\",\"6650213351\",\"6658903475\",\"6665134423\",\"6667078727\",\"6677772576\",\"6691071198\",\"6700192964\",\"6712048605\",\"6719767483\",\"6725259531\",\"6737063291\",\"6742554919\",\"6761872625\",\"6765773509\",\"6767809967\",\"6767936802\",\"6768590754\",\"6787283652\",\"6811700180\",\"6816903047\",\"6830551855\",\"6838907936\",\"6848013573\",\"6850614360\",\"6864422826\",\"6871953976\",\"6880909295\",\"6892010385\",\"6923431604\",\"6928564866\",\"6932367570\",\"6938077925\",\"6944697141\",\"6977731474\",\"6981901637\",\"6985501517\",\"6990140877\",\"7009038964\",\"7009965934\",\"7032035559\",\"7033712582\",\"7043986051\",\"7055057667\",\"7059354914\",\"7060900658\",\"7062785586\",\"7087139357\",\"7095536673\",\"7102401732\",\"7113648606\",\"7135884608\",\"7146687293\",\"7147685522\",\"7157697842\",\"7184761084\",\"7204234695\",\"7226539074\",\"7233905359\",\"7238628207\",\"7249305003\",\"7260321633\",\"7262156914\",\"7262282043\",\"7264586802\",\"7277603401\",\"7295332773\",\"7296742515\",\"7297734806\",\"7345483146\",\"7348642114\",\"7350263268\",\"7372422050\",\"7376958320\",\"7378315752\",\"7401184711\",\"7410632813\",\"7421889399\",\"7466050106\",\"7493990096\",\"7498542248\",\"7498920587\",\"7517320697\",\"7540355701\",\"7547312758\",\"7552106719\",\"7552997387\",\"7564012880\",\"7593475291\",\"7595717000\",\"7625288814\",\"7626981398\",\"7628895003\",\"7644290746\",\"7659814119\",\"7664966167\",\"7668827828\",\"7687657759\",\"7688471458\",\"7705431741\",\"7718471566\",\"7723567114\",\"7742247612\",\"7742494052\",\"7748421044\",\"7788742199\",\"7819384782\",\"7820542710\",\"7826639155\",\"7831969873\",\"7864796432\",\"7864910701\",\"7872751431\",\"7873990031\",\"7884892250\",\"7891052866\",\"7908367677\",\"7956131896\",\"7965689513\",\"7989321704\",\"7989780618\",\"8001502447\",\"8016920139\",\"8024594170\",\"8042010769\",\"8046031043\",\"8050675645\",\"8073701587\",\"8084106990\",\"8087242742\",\"8103868360\",\"8113999096\",\"8120706844\",\"8132082620\",\"8134977687\",\"8167633898\",\"8169511346\",\"8223657315\",\"8231032558\",\"8251671425\",\"8253692052\",\"8257796971\",\"8273990937\",\"8277724734\",\"8296471686\",\"8310010694\",\"8311991667\",\"8353160172\",\"8353955233\",\"8359082623\",\"8366012391\",\"8377093987\",\"8381623910\",\"8396980904\",\"8407403125\",\"8414513021\",\"8421561159\",\"8426622833\",\"8440760987\",\"8445330073\",\"8448409603\",\"8451470030\",\"8463876330\",\"8472084588\",\"8485512774\",\"8513600314\",\"8519918280\",\"8521254996\",\"8521256224\",\"8528989010\",\"8532602548\",\"8542573282\",\"8552815569\",\"8584284684\",\"8586878608\",\"8595026997\",\"8596140148\",\"8602919066\",\"8638304663\",\"8640168636\",\"8646287561\",\"8651668431\",\"8673764134\",\"8674470583\",\"8703200712\",\"8704081460\",\"8707466716\",\"8707676360\",\"8715898882\",\"8716428571\",\"8728868295\",\"8734166382\",\"8759882187\",\"8772228740\",\"8773081922\",\"8795307407\",\"8803304022\",\"8811129708\",\"8816137600\",\"8822537455\",\"8835887772\",\"8837367607\",\"8867850391\",\"8870367981\",\"8875139244\",\"8888752880\",\"8897379573\",\"8909124208\",\"8916321939\",\"8923283070\",\"8930133512\",\"8959542648\",\"8962513708\",\"8968372134\",\"8968471931\",\"8973956467\",\"8995127909\",\"9003892186\",\"9010532005\",\"9029297866\",\"9034112568\",\"9037264818\",\"9040944073\",\"9045616204\",\"9083542109\",\"9100792481\",\"9112967762\",\"9116950939\",\"9131370628\",\"9135721405\",\"9135822963\",\"9149427188\",\"9150657351\",\"9151620220\",\"9186764264\",\"9194384134\",\"9200932342\",\"9222153994\",\"9226474938\",\"9226621324\",\"9241165972\",\"9256183013\",\"9259033011\",\"9270676203\",\"9284068632\",\"9290871736\",\"9292952971\",\"9297701491\",\"9314613531\",\"9319190585\",\"9321533406\",\"9322486252\",\"9339787004\",\"9352579651\",\"9352645028\",\"9362736373\",\"9368797440\",\"9372262219\",\"9386113975\",\"9387672850\",\"9387674715\",\"9395180616\",\"9398362109\",\"9415366086\",\"9420590609\",\"9447003536\",\"9450945642\",\"9453001659\",\"9453662924\",\"9453984996\",\"9454312989\",\"9454452545\",\"9468557497\",\"9475126952\",\"9478278656\",\"9479262868\",\"9515603026\",\"9526715559\",\"9527221323\",\"9531824148\",\"9540077489\",\"9543282502\",\"9554479163\",\"9564525723\",\"9572879436\",\"9598993999\",\"9600160441\",\"9603303533\",\"9626290005\",\"9632964455\",\"9640271868\",\"9644601228\",\"9652403347\",\"9661736644\",\"9662422985\",\"9665249754\",\"9671844779\",\"9675738355\",\"9681562907\",\"9692122176\",\"9711289553\",\"9726843811\",\"9729475227\",\"9740262193\",\"9745952656\",\"9751997142\",\"9762702751\",\"9771313310\",\"9778520303\",\"9789697248\",\"9810980246\",\"9820063434\",\"9820372523\",\"9840166478\",\"9841449469\",\"9845615794\",\"9848437402\",\"9852576405\",\"9859217551\",\"9860821940\",\"9862545908\",\"9863185338\",\"9866809661\",\"9871424491\",\"9893953153\",\"9910194984\",\"9913922612\",\"9930623477\",\"9940929924\",\"9943302646\",\"9970999905\",\"9981239412\",\"9997591117\",\"7351810180\",\"2250230706\",\"8871211861\",\"6995831660\",\"9503928702\",\"2724133050\",\"7608360478\",\"4467365448\",\"5191177805\",\"2373957188\",\"1702188248\",\"8703273727\",\"5741564889\",\"5561959046\",\"1423094054\",\"3134278325\",\"3962502361\",\"4717198450\",\"1039344075\",\"3936773930\",\"2204485419\",\"6031134585\",\"7380309120\",\"5370620069\",\"3479250495\",\"6986682620\",\"6401239370\",\"9040385718\",\"2253553088\",\"6500329873\",\"1369503108\",\"1090301906\",\"6561826343\",\"2881445108\",\"2700396114\",\"2020409452\",\"9141546417\",\"2287549734\",\"8341999149\",\"2658782184\",\"4671482518\",\"4448855672\",\"7588612675\",\"5502486573\",\"4230648979\",\"6912850481\",\"4024116306\",\"9438619402\",\"1291322616\",\"9213270709\",\"1455854618\",\"4323462362\",\"2776179448\",\"1114245774\",\"2543151462\",\"8309118101\",\"8001403844\",\"7563312911\",\"8742211895\",\"7256209079\",\"5030358081\",\"5396639819\",\"2169175564\",\"9743886962\",\"2669535307\",\"6554716140\",\"4502082928\",\"4382914823\",\"9889105718\",\"5788891525\",\"4893727151\",\"7687164838\",\"6926376717\",\"3739899757\",\"5764725232\",\"5843381897\",\"8716098319\",\"4122387753\",\"8436643404\",\"1358105773\",\"8395917828\",\"8580630933\",\"7864780164\",\"5618114098\",\"5452450197\",\"9959516434\",\"1228521294\",\"1169314033\",\"9928589670\",\"3526379994\",\"7687371321\",\"7968032251\",\"4422329530\",\"4201975122\",\"4615500844\",\"5297662536\",\"3424924792\",\"7744500881\",\"8131886443\",\"8790335385\",\"2568600958\",\"3430278208\",\"9391314599\",\"4091541801\",\"5320305071\",\"5741092371\",\"8347503157\",\"6231818471\",\"1774484110\",\"1416508762\",\"2703205078\",\"9471807266\",\"2975409554\",\"1254137907\",\"1203300972\",\"9432000750\",\"6833055175\",\"5864943501\",\"3100574492\",\"4521618779\",\"5072662873\",\"5098473308\",\"8055581136\",\"9792414833\",\"4379253236\",\"9875597823\",\"2613915887\",\"1281598562\",\"3872108589\",\"3781524005\",\"8730568673\",\"4009086415\",\"2975597555\",\"4805646202\",\"4569177198\",\"2562159690\",\"8862348169\",\"6802380858\",\"5058490688\",\"6839612396\",\"1069173979\",\"6945956112\",\"3993861435\",\"1046238762\",\"8288812105\",\"7497605401\",\"7390960328\",\"1079519777\",\"6347103724\",\"4952005760\",\"2609646737\",\"2798938564\",\"4541622211\",\"3963709279\",\"6319901751\",\"5503837684\",\"1869222509\",\"9020580531\",\"5407091476\",\"2634464933\",\"3200133119\",\"8933317719\",\"8328543245\",\"8920262959\",\"4510938314\",\"4699751551\",\"6817618499\",\"1041417511\",\"1447253383\",\"7298268529\",\"6364600020\",\"4911414951\",\"4216253974\",\"2082541912\",\"2709636845\",\"4258660302\",\"2295443263\",\"7663168591\",\"3789077505\",\"4413835259\",\"2872689322\",\"8702643096\",\"2391060935\",\"3162271972\",\"3068103002\",\"7537628670\",\"5329462571\",\"9758913988\",\"4858487103\",\"3927572489\",\"7882581966\",\"4594001188\",\"4678037588\",\"3882316983\",\"2244237845\",\"9945163346\",\"2600151896\",\"8720844433\",\"8130294134\",\"6986974936\",\"4604489387\",\"4821224168\",\"1029140975\",\"9815283232\",\"5430821760\",\"4641688133\",\"3571074829\",\"9239211252\",\"8605733793\",\"2585587550\",\"5446567702\",\"8825966823\",\"2982000585\",\"8317468172\",\"8903011297\",\"8486013399\",\"1450572942\",\"8135354869\",\"8571433263\",\"9344140649\",\"2663585626\",\"4601563033\",\"4419129931\",\"6142186125\",\"4176532281\",\"7059211536\",\"3471363726\",\"4057171904\",\"5743288207\",\"3110900347\",\"8856017589\",\"2576541524\",\"7109035547\",\"3086885146\",\"5164441961\",\"2998067487\",\"6487716839\",\"2455695513\",\"5139953083\",\"9286519455\",\"9760925339\",\"6088409125\",\"9575344330\",\"8010325165\",\"9438519163\",\"7225662708\",\"9980842418\",\"7310569328\",\"5236359243\",\"2340903303\",\"3926463720\",\"6829726306\",\"9300628809\",\"8030188604\",\"9160100453\",\"7051996866\",\"6416142584\",\"3583831504\",\"5410368232\",\"7666852933\",\"4212105657\",\"6351160254\",\"2854451107\",\"8726009685\",\"9494685925\",\"6655870493\",\"3963875243\",\"6322374743\"]}}"}
+2024-06-24 10:57:03.486 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/friend/get_full_friend_user_ids", "state": "success", "cost time": "132ms"}
+2024-06-24 10:57:03.491 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_notification.go:87] github.com/openimsdk/openim-sdk-core/v3/internal/friend.(*Friend).IncrSyncFriends-fm completed successfully {"operationID": "1719197817604066041", "duration": 0.2833427}
+2024-06-24 10:57:03.491 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_notification.go:50] NotificationCmd end {"operationID": "1719197817604066041", "cmd": "003", "value": {"Msgs":null,"SyncFlag":1001}}
+2024-06-24 10:57:03.491 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_notification.go:36] NotificationCmd start {"operationID": "1719197817604066041", "cmd": "005", "value": {"Msgs":{"sg_105081877":{"Msgs":[{"sendID":"imAdmin","recvID":"105081877","groupID":"105081877","clientMsgID":"edc317755ca9c374d7a42e270abe5bc3","serverMsgID":"db07a9027981f628e056ba6f18774eff","senderPlatformID":0,"senderNickname":"","senderFaceURL":"","sessionType":3,"msgFrom":200,"contentType":1504,"content":"eyJkZXRhaWwiOiJ7XCJncm91cFwiOntcImdyb3VwSURcIjpcIjEwNTA4MTg3N1wiLFwiZ3JvdXBOYW1lXCI6XCJkXCIsXCJub3RpZmljYXRpb25cIjpcIlwiLFwiaW50cm9kdWN0aW9uXCI6XCJcIixcImZhY2VVUkxcIjpcIlwiLFwib3duZXJVc2VySURcIjpcIjUyNDgzODUxOTFcIixcImNyZWF0ZVRpbWVcIjoxNzEwNDkwODI1NDEzLFwibWVtYmVyQ291bnRcIjo1LFwiZXhcIjpcIlwiLFwic3RhdHVzXCI6MCxcImNyZWF0b3JVc2VySURcIjpcIjUyNDgzODUxOTFcIixcImdyb3VwVHlwZVwiOjIsXCJuZWVkVmVyaWZpY2F0aW9uXCI6MCxcImxvb2tNZW1iZXJJbmZvXCI6MCxcImFwcGx5TWVtYmVyRnJpZW5kXCI6MCxcIm5vdGlmaWNhdGlvblVwZGF0ZVRpbWVcIjowLFwibm90aWZpY2F0aW9uVXNlcklEXCI6XCJcIn0sXCJxdWl0VXNlclwiOntcImdyb3VwSURcIjpcIjEwNTA4MTg3N1wiLFwidXNlcklEXCI6XCI1MjkyMTU2NjY1XCIsXCJyb2xlTGV2ZWxcIjoyMCxcImpvaW5UaW1lXCI6MTcxMDQ5MDg0ODUwMyxcIm5pY2tuYW1lXCI6XCJPbGl2ZXJcIixcImZhY2VVUkxcIjpcImh0dHBzOi8vd2ViLnJlbnRzb2Z0LmNuL2FwaV9lbnRlcnByaXNlL29iamVjdC81MjkyMTU2NjY1L3N0b3JhZ2UvZW11bGF0ZWQvMC9BbmRyb2lkL2RhdGEvaW8ub3BlbmltLmFuZHJvaWQuZGVtby9jYWNoZS8xNzA2MjY1MTU1MjQ3LzE3MDYyNjUxNDg4NTgucG5nXCIsXCJhcHBNYW5nZXJMZXZlbFwiOjAsXCJqb2luU291cmNlXCI6MixcIm9wZXJhdG9yVXNlcklEXCI6XCI1MjQ4Mzg1MTkxXCIsXCJleFwiOlwiXCIsXCJtdXRlRW5kVGltZVwiOjAsXCJpbnZpdGVyVXNlcklEXCI6XCI1MjQ4Mzg1MTkxXCJ9LFwib3BlcmF0aW9uVGltZVwiOjAsXCJncm91cE1lbWJlclZlcnNpb25cIjoyLFwiZ3JvdXBNZW1iZXJWZXJzaW9uSURcIjpcIjY2NzJkMzlkZTI3MTY2ZmU3NzgxMTc1M1wifSJ9","seq":2,"sendTime":1718937610490,"createTime":1718937610489,"status":0,"isRead":false,"options":{"offlinePush":false,"unreadCount":false},"offlinePushInfo":{"title":"","desc":"","ex":"","iOSPushSound":"","iOSBadgeCount":false,"signalInfo":""},"atUserIDList":null,"attachedInfo":"","ex":""}],"isEnd":true},"sg_1177987017":{"Msgs":[{"sendID":"imAdmin","recvID":"1177987017","groupID":"1177987017","clientMsgID":"93ce372f1170782d5961e3831c9e7d30","serverMsgID":"c5ee404e47c5b104d38baae24bea8d98","senderPlatformID":0,"senderNickname":"","senderFaceURL":"","sessionType":3,"msgFrom":200,"contentType":1504,"content":"eyJkZXRhaWwiOiJ7XCJncm91cFwiOntcImdyb3VwSURcIjpcIjExNzc5ODcwMTdcIixcImdyb3VwTmFtZVwiOlwiMTIzMTIzXCIsXCJub3RpZmljYXRpb25cIjpcIlwiLFwiaW50cm9kdWN0aW9uXCI6XCJcIixcImZhY2VVUkxcIjpcIlwiLFwib3duZXJVc2VySURcIjpcIjE2OTU3NjYyMzhcIixcImNyZWF0ZVRpbWVcIjoxNzA1MDQ2NDM1MzMxLFwibWVtYmVyQ291bnRcIjoxLFwiZXhcIjpcIlwiLFwic3RhdHVzXCI6MCxcImNyZWF0b3JVc2VySURcIjpcIjE2OTU3NjYyMzhcIixcImdyb3VwVHlwZVwiOjIsXCJuZWVkVmVyaWZpY2F0aW9uXCI6MCxcImxvb2tNZW1iZXJJbmZvXCI6MCxcImFwcGx5TWVtYmVyRnJpZW5kXCI6MCxcIm5vdGlmaWNhdGlvblVwZGF0ZVRpbWVcIjowLFwibm90aWZpY2F0aW9uVXNlcklEXCI6XCJcIn0sXCJxdWl0VXNlclwiOntcImdyb3VwSURcIjpcIjExNzc5ODcwMTdcIixcInVzZXJJRFwiOlwiNDkxMTQxNDk1MVwiLFwicm9sZUxldmVsXCI6MjAsXCJqb2luVGltZVwiOjE3MDUwNDY5ODU5NzEsXCJuaWNrbmFtZVwiOlwiT3BlbmltQW5kLUphbmVcIixcImZhY2VVUkxcIjpcImh0dHBzOi8vd2ViLnJlbnRzb2Z0LmNuL2FwaV9lbnRlcnByaXNlL29iamVjdC80OTExNDE0OTUxL2ltYWdlXzIwMjQtMDUtMDYtMjAtNTkuMTExLnBuZ1wiLFwiYXBwTWFuZ2VyTGV2ZWxcIjowLFwiam9pblNvdXJjZVwiOjIsXCJvcGVyYXRvclVzZXJJRFwiOlwiMTY5NTc2NjIzOFwiLFwiZXhcIjpcIlwiLFwibXV0ZUVuZFRpbWVcIjowLFwiaW52aXRlclVzZXJJRFwiOlwiMTY5NTc2NjIzOFwifSxcIm9wZXJhdGlvblRpbWVcIjowLFwiZ3JvdXBNZW1iZXJWZXJzaW9uXCI6M30ifQ==","seq":2,"sendTime":1718373366842,"createTime":1718373366841,"status":0,"isRead":false,"options":{"offlinePush":false,"unreadCount":false},"offlinePushInfo":{"title":"","desc":"","ex":"","iOSPushSound":"","iOSBadgeCount":false,"signalInfo":""},"atUserIDList":null,"attachedInfo":"","ex":""}],"isEnd":true},"sg_1254300734":{"Msgs":[{"sendID":"imAdmin","recvID":"1254300734","groupID":"1254300734","clientMsgID":"02756e84af58c58d3ad9cd320fed4a65","serverMsgID":"58c48ac004f5769a44a8038c1b2e4f95","senderPlatformID":0,"senderNickname":"","senderFaceURL":"","sessionType":3,"msgFrom":200,"contentType":1504,"content":"eyJkZXRhaWwiOiJ7XCJncm91cFwiOntcImdyb3VwSURcIjpcIjEyNTQzMDA3MzRcIixcImdyb3VwTmFtZVwiOlwiZmpoXCIsXCJub3RpZmljYXRpb25cIjpcIlwiLFwiaW50cm9kdWN0aW9uXCI6XCJcIixcImZhY2VVUkxcIjpcIlwiLFwib3duZXJVc2VySURcIjpcIjQ2ODE1ODIxOTFcIixcImNyZWF0ZVRpbWVcIjoxNzEzNTgyNDQxNjI1LFwibWVtYmVyQ291bnRcIjo5LFwiZXhcIjpcIlwiLFwic3RhdHVzXCI6MCxcImNyZWF0b3JVc2VySURcIjpcIjQ2ODE1ODIxOTFcIixcImdyb3VwVHlwZVwiOjIsXCJuZWVkVmVyaWZpY2F0aW9uXCI6MCxcImxvb2tNZW1iZXJJbmZvXCI6MCxcImFwcGx5TWVtYmVyRnJpZW5kXCI6MCxcIm5vdGlmaWNhdGlvblVwZGF0ZVRpbWVcIjowLFwibm90aWZpY2F0aW9uVXNlcklEXCI6XCJcIn0sXCJxdWl0VXNlclwiOntcImdyb3VwSURcIjpcIjEyNTQzMDA3MzRcIixcInVzZXJJRFwiOlwiMjcyNTQ1MTI0M1wiLFwicm9sZUxldmVsXCI6MjAsXCJqb2luVGltZVwiOjE3MTM1ODI0NDE2MjcsXCJuaWNrbmFtZVwiOlwiT3BlbklNLUFuZHJldzEyM1wiLFwiZmFjZVVSTFwiOlwiXCIsXCJhcHBNYW5nZXJMZXZlbFwiOjAsXCJqb2luU291cmNlXCI6MixcIm9wZXJhdG9yVXNlcklEXCI6XCI0NjgxNTgyMTkxXCIsXCJleFwiOlwiXCIsXCJtdXRlRW5kVGltZVwiOjAsXCJpbnZpdGVyVXNlcklEXCI6XCI0NjgxNTgyMTkxXCJ9LFwib3BlcmF0aW9uVGltZVwiOjAsXCJncm91cE1lbWJlclZlcnNpb25cIjoyLFwiZ3JvdXBNZW1iZXJWZXJzaW9uSURcIjpcIjY2NzJkMzlkZTI3MTY2ZmU3NzgxMTZiNVwifSJ9","seq":1,"sendTime":1718805424661,"createTime":1718805424659,"status":0,"isRead":false,"options":{"offlinePush":false,"unreadCount":false},"offlinePushInfo":{"title":"","desc":"","ex":"","iOSPushSound":"","iOSBadgeCount":false,"signalInfo":""},"atUserIDList":null,"attachedInfo":"","ex":""}],"isEnd":true},"sg_161019322":{"Msgs":[{"sendID":"imAdmin","recvID":"161019322","groupID":"161019322","clientMsgID":"a3a3d6e0aeaf5ad4b2fdbe7707d6a185","serverMsgID":"96d8ed55c12579dd32a7631eeedb0eaa","senderPlatformID":0,"senderNickname":"","senderFaceURL":"","sessionType":3,"msgFrom":200,"contentType":1504,"content":"eyJkZXRhaWwiOiJ7XCJncm91cFwiOntcImdyb3VwSURcIjpcIjE2MTAxOTMyMlwiLFwiZ3JvdXBOYW1lXCI6XCLmtYvor5XnvqRcIixcIm5vdGlmaWNhdGlvblwiOlwiXCIsXCJpbnRyb2R1Y3Rpb25cIjpcIlwiLFwiZmFjZVVSTFwiOlwiXCIsXCJvd25lclVzZXJJRFwiOlwiMzkyMzg2NDE1NlwiLFwiY3JlYXRlVGltZVwiOjE3MTY0NDkwNTE4MDksXCJtZW1iZXJDb3VudFwiOjIsXCJleFwiOlwiXCIsXCJzdGF0dXNcIjowLFwiY3JlYXRvclVzZXJJRFwiOlwiMzkyMzg2NDE1NlwiLFwiZ3JvdXBUeXBlXCI6MixcIm5lZWRWZXJpZmljYXRpb25cIjowLFwibG9va01lbWJlckluZm9cIjowLFwiYXBwbHlNZW1iZXJGcmllbmRcIjowLFwibm90aWZpY2F0aW9uVXBkYXRlVGltZVwiOjAsXCJub3RpZmljYXRpb25Vc2VySURcIjpcIlwifSxcInF1aXRVc2VyXCI6e1wiZ3JvdXBJRFwiOlwiMTYxMDE5MzIyXCIsXCJ1c2VySURcIjpcIjI3MjU0NTEyNDNcIixcInJvbGVMZXZlbFwiOjIwLFwiam9pblRpbWVcIjoxNzE2NDQ5MDUxODExLFwibmlja25hbWVcIjpcIk9wZW5JTS1BbmRyZXcxMjNcIixcImZhY2VVUkxcIjpcIlwiLFwiYXBwTWFuZ2VyTGV2ZWxcIjowLFwiam9pblNvdXJjZVwiOjIsXCJvcGVyYXRvclVzZXJJRFwiOlwiMzkyMzg2NDE1NlwiLFwiZXhcIjpcIlwiLFwibXV0ZUVuZFRpbWVcIjowLFwiaW52aXRlclVzZXJJRFwiOlwiMzkyMzg2NDE1NlwifSxcIm9wZXJhdGlvblRpbWVcIjowLFwiZ3JvdXBNZW1iZXJWZXJzaW9uXCI6NCxcImdyb3VwTWVtYmVyVmVyc2lvbklEXCI6XCI2NjcyZDM5ZGUyNzE2NmZlNzc4MTE3M2ZcIn0ifQ==","seq":3,"sendTime":1718850240267,"createTime":1718850240266,"status":0,"isRead":false,"options":{"offlinePush":false,"unreadCount":false},"offlinePushInfo":{"title":"","desc":"","ex":"","iOSPushSound":"","iOSBadgeCount":false,"signalInfo":""},"atUserIDList":null,"attachedInfo":"","ex":""}],"isEnd":true},"sg_2300748497":{"Msgs":[{"sendID":"imAdmin","recvID":"2300748497","groupID":"2300748497","clientMsgID":"f2abda0ba3a3460dd9e06350b2fd0bdb","serverMsgID":"d35e1a97576493ec2ab2ff3d077f4cdc","senderPlatformID":0,"senderNickname":"","senderFaceURL":"","sessionType":3,"msgFrom":200,"contentType":1504,"content":"eyJkZXRhaWwiOiJ7XCJncm91cFwiOntcImdyb3VwSURcIjpcIjIzMDA3NDg0OTdcIixcImdyb3VwTmFtZVwiOlwi5rWL6K+VXCIsXCJub3RpZmljYXRpb25cIjpcIlwiLFwiaW50cm9kdWN0aW9uXCI6XCJcIixcImZhY2VVUkxcIjpcIlwiLFwib3duZXJVc2VySURcIjpcIjI3MzgzMDgwODhcIixcImNyZWF0ZVRpbWVcIjoxNjkyOTA2MzAwODE3LFwibWVtYmVyQ291bnRcIjo1LFwiZXhcIjpcIlwiLFwic3RhdHVzXCI6MCxcImNyZWF0b3JVc2VySURcIjpcIjI3MzgzMDgwODhcIixcImdyb3VwVHlwZVwiOjIsXCJuZWVkVmVyaWZpY2F0aW9uXCI6MCxcImxvb2tNZW1iZXJJbmZvXCI6MCxcImFwcGx5TWVtYmVyRnJpZW5kXCI6MCxcIm5vdGlmaWNhdGlvblVwZGF0ZVRpbWVcIjotMjg4MDAwMDAsXCJub3RpZmljYXRpb25Vc2VySURcIjpcIlwifSxcInF1aXRVc2VyXCI6e1wiZ3JvdXBJRFwiOlwiMjMwMDc0ODQ5N1wiLFwidXNlcklEXCI6XCIzNDE4NTc3NDM2XCIsXCJyb2xlTGV2ZWxcIjoyMCxcImpvaW5UaW1lXCI6MTY5MjkwNjMwMDgyMCxcIm5pY2tuYW1lXCI6XCJPcGVuSU0tc2tpZmZlclwiLFwiZmFjZVVSTFwiOlwiaHR0cHM6Ly93ZWIucmVudHNvZnQuY24vYXBpX2VudGVycHJpc2Uvb2JqZWN0LzM0MTg1Nzc0MzYvQkQxNEMyQzE5NTZBQjJFMUJEOEE5RjMzRTc2MjIwQkUgKDEpLmpwZ1wiLFwiYXBwTWFuZ2VyTGV2ZWxcIjowLFwiam9pblNvdXJjZVwiOjIsXCJvcGVyYXRvclVzZXJJRFwiOlwiMjczODMwODA4OFwiLFwiZXhcIjpcIlwiLFwibXV0ZUVuZFRpbWVcIjotMjg4MDAwMDAsXCJpbnZpdGVyVXNlcklEXCI6XCIyNzM4MzA4MDg4XCJ9LFwib3BlcmF0aW9uVGltZVwiOjAsXCJncm91cE1lbWJlclZlcnNpb25cIjoyLFwiZ3JvdXBNZW1iZXJWZXJzaW9uSURcIjpcIjY2NzE5MDAxNTg5YzdjNWZlNzA5ZmU3NVwifSJ9","seq":2,"sendTime":1718718570199,"createTime":1718718570198,"status":0,"isRead":false,"options":{"offlinePush":false,"unreadCount":false},"offlinePushInfo":{"title":"","desc":"","ex":"","iOSPushSound":"","iOSBadgeCount":false,"signalInfo":""},"atUserIDList":null,"attachedInfo":"","ex":""}],"isEnd":true},"sg_2836218947":{"Msgs":[{"sendID":"imAdmin","recvID":"2836218947","groupID":"2836218947","clientMsgID":"06284c5a5f10d1f472f5f8bc938b47a3","serverMsgID":"bba734e36558164cfb5e40206ba26259","senderPlatformID":0,"senderNickname":"","senderFaceURL":"","sessionType":3,"msgFrom":200,"contentType":1504,"content":"eyJkZXRhaWwiOiJ7XCJncm91cFwiOntcImdyb3VwSURcIjpcIjI4MzYyMTg5NDdcIixcImdyb3VwTmFtZVwiOlwi5rWL6K+V576k566h55CGXCIsXCJub3RpZmljYXRpb25cIjpcIlwiLFwiaW50cm9kdWN0aW9uXCI6XCJcIixcImZhY2VVUkxcIjpcIlwiLFwib3duZXJVc2VySURcIjpcIjQ5MTgyNzY1NTlcIixcImNyZWF0ZVRpbWVcIjoxNzE1MDY1MzM1NDA4LFwibWVtYmVyQ291bnRcIjo2LFwiZXhcIjpcIlwiLFwic3RhdHVzXCI6MCxcImNyZWF0b3JVc2VySURcIjpcIjQ5MTgyNzY1NTlcIixcImdyb3VwVHlwZVwiOjIsXCJuZWVkVmVyaWZpY2F0aW9uXCI6MCxcImxvb2tNZW1iZXJJbmZvXCI6MSxcImFwcGx5TWVtYmVyRnJpZW5kXCI6MSxcIm5vdGlmaWNhdGlvblVwZGF0ZVRpbWVcIjowLFwibm90aWZpY2F0aW9uVXNlcklEXCI6XCJcIn0sXCJxdWl0VXNlclwiOntcImdyb3VwSURcIjpcIjI4MzYyMTg5NDdcIixcInVzZXJJRFwiOlwiNjMxOTAxNTAyNFwiLFwicm9sZUxldmVsXCI6MjAsXCJqb2luVGltZVwiOjE3MTUwNjUzMzU0MDksXCJuaWNrbmFtZVwiOlwiT3BlbklNLXdpbmRcIixcImZhY2VVUkxcIjpcImh0dHBzOi8vd2ViLnJlbnRzb2Z0LmNuL2FwaV9lbnRlcnByaXNlL29iamVjdC82MzE5MDE1MDI0L3BleGVscy1waG90by0yMTc0OTc0LndlYnBcIixcImFwcE1hbmdlckxldmVsXCI6MCxcImpvaW5Tb3VyY2VcIjoyLFwib3BlcmF0b3JVc2VySURcIjpcIjQ5MTgyNzY1NTlcIixcImV4XCI6XCJcIixcIm11dGVFbmRUaW1lXCI6MCxcImludml0ZXJVc2VySURcIjpcIjQ5MTgyNzY1NTlcIn0sXCJvcGVyYXRpb25UaW1lXCI6MCxcImdyb3VwTWVtYmVyVmVyc2lvblwiOjMsXCJncm91cE1lbWJlclZlcnNpb25JRFwiOlwiNjY3MmQzOWRlMjcxNjZmZTc3ODExNzBjXCJ9In0=","seq":2,"sendTime":1718936592923,"createTime":1718936592922,"status":0,"isRead":false,"options":{"offlinePush":false,"unreadCount":false},"offlinePushInfo":{"title":"","desc":"","ex":"","iOSPushSound":"","iOSBadgeCount":false,"signalInfo":""},"atUserIDList":null,"attachedInfo":"","ex":""}],"isEnd":true},"sg_3187706596":{"Msgs":[{"sendID":"imAdmin","recvID":"3187706596","groupID":"3187706596","clientMsgID":"54f49dda390bd96e8c6107a9a8bb869b","serverMsgID":"2ffca94228877bc102fe4be01aeba429","senderPlatformID":0,"senderNickname":"","senderFaceURL":"","sessionType":3,"msgFrom":200,"contentType":1509,"content":"eyJkZXRhaWwiOiJ7XCJncm91cFwiOntcImdyb3VwSURcIjpcIjMxODc3MDY1OTZcIixcImdyb3VwTmFtZVwiOlwi6buY6K6k576kLea1i+ivlVwiLFwibm90aWZpY2F0aW9uXCI6XCJyYWctZ3B077ya5Z+65LqO5pys5Zyw55+l6K+G5bqT55qE5byA5rqQ5pm66IO95a6i5pyNIFxcbmh0dHBzOi8vZ2l0aHViLmNvbS9vcGVuLWtmL3JhZy1ncHRcXG5cIixcImludHJvZHVjdGlvblwiOlwiXCIsXCJmYWNlVVJMXCI6XCJcIixcIm93bmVyVXNlcklEXCI6XCI3NDk3NjA1NDAxXCIsXCJjcmVhdGVUaW1lXCI6MTY5MjU1OTMwNzA1MixcIm1lbWJlckNvdW50XCI6MzkwMixcImV4XCI6XCJ4eHhcIixcInN0YXR1c1wiOjAsXCJjcmVhdG9yVXNlcklEXCI6XCI3MDA5OTY1OTM0XCIsXCJncm91cFR5cGVcIjoyLFwibmVlZFZlcmlmaWNhdGlvblwiOjAsXCJsb29rTWVtYmVySW5mb1wiOjAsXCJhcHBseU1lbWJlckZyaWVuZFwiOjAsXCJub3RpZmljYXRpb25VcGRhdGVUaW1lXCI6MTcxNjk2ODQyODYzNSxcIm5vdGlmaWNhdGlvblVzZXJJRFwiOlwiMzQxODU3NzQzNlwifSxcIm9wVXNlclwiOntcImdyb3VwSURcIjpcIjMxODc3MDY1OTZcIixcInVzZXJJRFwiOlwiaW1BZG1pblwiLFwicm9sZUxldmVsXCI6NjAsXCJqb2luVGltZVwiOjAsXCJuaWNrbmFtZVwiOlwiYWRtaW5cIixcImZhY2VVUkxcIjpcIlwiLFwiYXBwTWFuZ2VyTGV2ZWxcIjoyLFwiam9pblNvdXJjZVwiOjAsXCJvcGVyYXRvclVzZXJJRFwiOlwiXCIsXCJleFwiOlwiXCIsXCJtdXRlRW5kVGltZVwiOjAsXCJpbnZpdGVyVXNlcklEXCI6XCJcIn0sXCJpbnZpdGVkVXNlckxpc3RcIjpbe1wiZ3JvdXBJRFwiOlwiMzE4NzcwNjU5NlwiLFwidXNlcklEXCI6XCI3MTIyMjI5NjM2XCIsXCJyb2xlTGV2ZWxcIjoyMCxcImpvaW5UaW1lXCI6MTcxODk1MzQzMjk2MCxcIm5pY2tuYW1lXCI6XCIxMTExMVwiLFwiZmFjZVVSTFwiOlwiXCIsXCJhcHBNYW5nZXJMZXZlbFwiOjAsXCJqb2luU291cmNlXCI6MixcIm9wZXJhdG9yVXNlcklEXCI6XCJcIixcImV4XCI6XCJcIixcIm11dGVFbmRUaW1lXCI6MCxcImludml0ZXJVc2VySURcIjpcIlwifV0sXCJvcGVyYXRpb25UaW1lXCI6MCxcImdyb3VwTWVtYmVyVmVyc2lvblwiOjQsXCJncm91cE1lbWJlclZlcnNpb25JRFwiOlwiNjY3MmQzOWRlMjcxNjZmZTc3ODExNzE3XCJ9In0=","seq":3,"sendTime":1718953433112,"createTime":1718953433111,"status":0,"isRead":false,"options":{"offlinePush":false,"unreadCount":false},"offlinePushInfo":{"title":"","desc":"","ex":"","iOSPushSound":"","iOSBadgeCount":false,"signalInfo":""},"atUserIDList":null,"attachedInfo":"","ex":""}],"isEnd":true},"sg_3896488295":{"Msgs":[{"sendID":"imAdmin","recvID":"3896488295","groupID":"3896488295","clientMsgID":"dfc06971a5ff46e072117247b92b68e6","serverMsgID":"f57eb140f799156f77187ed2d03754d5","senderPlatformID":0,"senderNickname":"","senderFaceURL":"","sessionType":3,"msgFrom":200,"contentType":1504,"content":"eyJkZXRhaWwiOiJ7XCJncm91cFwiOntcImdyb3VwSURcIjpcIjM4OTY0ODgyOTVcIixcImdyb3VwTmFtZVwiOlwiaW3mtYvor5VcIixcIm5vdGlmaWNhdGlvblwiOlwiXCIsXCJpbnRyb2R1Y3Rpb25cIjpcIlwiLFwiZmFjZVVSTFwiOlwiXCIsXCJvd25lclVzZXJJRFwiOlwiMzg2MjE0NzQyNFwiLFwiY3JlYXRlVGltZVwiOjE3MDQ4MDU1MTE1NzMsXCJtZW1iZXJDb3VudFwiOjksXCJleFwiOlwiXCIsXCJzdGF0dXNcIjowLFwiY3JlYXRvclVzZXJJRFwiOlwiMzg2MjE0NzQyNFwiLFwiZ3JvdXBUeXBlXCI6MixcIm5lZWRWZXJpZmljYXRpb25cIjowLFwibG9va01lbWJlckluZm9cIjowLFwiYXBwbHlNZW1iZXJGcmllbmRcIjowLFwibm90aWZpY2F0aW9uVXBkYXRlVGltZVwiOjAsXCJub3RpZmljYXRpb25Vc2VySURcIjpcIlwifSxcInF1aXRVc2VyXCI6e1wiZ3JvdXBJRFwiOlwiMzg5NjQ4ODI5NVwiLFwidXNlcklEXCI6XCIyNzI1NDUxMjQzXCIsXCJyb2xlTGV2ZWxcIjoyMCxcImpvaW5UaW1lXCI6MTcwNDgwNTUxMTU3NCxcIm5pY2tuYW1lXCI6XCJPcGVuSU0tQW5kcmV3MTIzXCIsXCJmYWNlVVJMXCI6XCJcIixcImFwcE1hbmdlckxldmVsXCI6MCxcImpvaW5Tb3VyY2VcIjoyLFwib3BlcmF0b3JVc2VySURcIjpcIjM4NjIxNDc0MjRcIixcImV4XCI6XCJcIixcIm11dGVFbmRUaW1lXCI6MCxcImludml0ZXJVc2VySURcIjpcIjM4NjIxNDc0MjRcIn0sXCJvcGVyYXRpb25UaW1lXCI6MCxcImdyb3VwTWVtYmVyVmVyc2lvblwiOjIsXCJncm91cE1lbWJlclZlcnNpb25JRFwiOlwiNjY3MmQzOWRlMjcxNjZmZTc3ODExNmFmXCJ9In0=","seq":1,"sendTime":1718801595913,"createTime":1718801595912,"status":0,"isRead":false,"options":{"offlinePush":false,"unreadCount":false},"offlinePushInfo":{"title":"","desc":"","ex":"","iOSPushSound":"","iOSBadgeCount":false,"signalInfo":""},"atUserIDList":null,"attachedInfo":"","ex":""}],"isEnd":true},"sg_3926645279":{"Msgs":[{"sendID":"imAdmin","recvID":"3926645279","groupID":"3926645279","clientMsgID":"b7312f062ea8c5203a747f577d891096","serverMsgID":"c6d35a7f550bda5f52d74f17281dc8a3","senderPlatformID":0,"senderNickname":"","senderFaceURL":"","sessionType":3,"msgFrom":200,"contentType":1507,"content":"eyJkZXRhaWwiOiJ7XCJncm91cFwiOntcImdyb3VwSURcIjpcIjM5MjY2NDUyNzlcIixcImdyb3VwTmFtZVwiOlwieW8xMjNcIixcIm5vdGlmaWNhdGlvblwiOlwibmV3IG5vdGlmaWNhdGlvblwiLFwiaW50cm9kdWN0aW9uXCI6XCJuZXcgbm90aWZpY2F0aW9uXCIsXCJmYWNlVVJMXCI6XCJmYWNlVVJMIHVybFwiLFwib3duZXJVc2VySURcIjpcIjE2OTU3NjYyMzhcIixcImNyZWF0ZVRpbWVcIjoxNzE4OTUyMjcwNTA0LFwibWVtYmVyQ291bnRcIjoyLFwiZXhcIjpcIm5ldyBleFwiLFwic3RhdHVzXCI6MCxcImNyZWF0b3JVc2VySURcIjpcIlwiLFwiZ3JvdXBUeXBlXCI6MixcIm5lZWRWZXJpZmljYXRpb25cIjoxLFwibG9va01lbWJlckluZm9cIjoxLFwiYXBwbHlNZW1iZXJGcmllbmRcIjoxLFwibm90aWZpY2F0aW9uVXBkYXRlVGltZVwiOjE3MTg5NjgxOTEzNTUsXCJub3RpZmljYXRpb25Vc2VySURcIjpcImltQWRtaW5cIn0sXCJvcFVzZXJcIjp7XCJncm91cElEXCI6XCIzOTI2NjQ1Mjc5XCIsXCJ1c2VySURcIjpcImltQWRtaW5cIixcInJvbGVMZXZlbFwiOjYwLFwiam9pblRpbWVcIjowLFwibmlja25hbWVcIjpcImFkbWluXCIsXCJmYWNlVVJMXCI6XCJcIixcImFwcE1hbmdlckxldmVsXCI6MixcImpvaW5Tb3VyY2VcIjowLFwib3BlcmF0b3JVc2VySURcIjpcIlwiLFwiZXhcIjpcIlwiLFwibXV0ZUVuZFRpbWVcIjowLFwiaW52aXRlclVzZXJJRFwiOlwiXCJ9LFwibmV3R3JvdXBPd25lclwiOntcImdyb3VwSURcIjpcIjM5MjY2NDUyNzlcIixcInVzZXJJRFwiOlwiMTY5NTc2NjIzOFwiLFwicm9sZUxldmVsXCI6MTAwLFwiam9pblRpbWVcIjoxNzE4OTY4NDYyMTA0LFwibmlja25hbWVcIjpcIk9wZW5JTS1Hb3Jkb25cIixcImZhY2VVUkxcIjpcImh0dHBzOi8vd2ViLnJlbnRzb2Z0LmNuL2FwaV9lbnRlcnByaXNlL29iamVjdC8xNjk1NzY2MjM4L+a2iOaBrzIwMjMxMDExMTU0MjQzLnBuZ1wiLFwiYXBwTWFuZ2VyTGV2ZWxcIjowLFwiam9pblNvdXJjZVwiOjIsXCJvcGVyYXRvclVzZXJJRFwiOlwiXCIsXCJleFwiOlwiXCIsXCJtdXRlRW5kVGltZVwiOjAsXCJpbnZpdGVyVXNlcklEXCI6XCJcIn0sXCJvbGRHcm91cE93bmVyXCI6XCJcIixcIm9wZXJhdGlvblRpbWVcIjowLFwib2xkR3JvdXBPd25lckluZm9cIjp7XCJncm91cElEXCI6XCIzOTI2NjQ1Mjc5XCIsXCJ1c2VySURcIjpcIjI4ODI4OTk0NDdcIixcInJvbGVMZXZlbFwiOjIwLFwiam9pblRpbWVcIjoxNzE4OTUyMjcwNTA2LFwibmlja25hbWVcIjpcIk9wZW5JTS1ibG9vbWluZ1wiLFwiZmFjZVVSTFwiOlwiaHR0cHM6Ly93ZWIucmVudHNvZnQuY24vYXBpX2VudGVycHJpc2Uvb2JqZWN0LzI4ODI4OTk0NDcvYXZhdGFyLndlYnBcIixcImFwcE1hbmdlckxldmVsXCI6MCxcImpvaW5Tb3VyY2VcIjoyLFwib3BlcmF0b3JVc2VySURcIjpcImltQWRtaW5cIixcImV4XCI6XCJcIixcIm11dGVFbmRUaW1lXCI6MCxcImludml0ZXJVc2VySURcIjpcImltQWRtaW5cIn0sXCJncm91cE1lbWJlclZlcnNpb25cIjoyNCxcImdyb3VwTWVtYmVyVmVyc2lvbklEXCI6XCI2Njc1MjE0ZWFjNGI3NjYyNjQ2OGZlZjVcIn0ifQ==","seq":18,"sendTime":1719040920868,"createTime":1719040920865,"status":0,"isRead":false,"options":{"offlinePush":false,"unreadCount":false},"offlinePushInfo":{"title":"","desc":"","ex":"","iOSPushSound":"","iOSBadgeCount":false,"signalInfo":""},"atUserIDList":null,"attachedInfo":"","ex":""}],"isEnd":true},"sg_3927081813":{"Msgs":[{"sendID":"imAdmin","recvID":"3927081813","groupID":"3927081813","clientMsgID":"bb8f6da7b64c5019d05d11e5498b7ebe","serverMsgID":"8377622d22ff842f509a1b8a1b5cf020","senderPlatformID":0,"senderNickname":"","senderFaceURL":"","sessionType":3,"msgFrom":200,"contentType":1504,"content":"eyJkZXRhaWwiOiJ7XCJncm91cFwiOntcImdyb3VwSURcIjpcIjM5MjcwODE4MTNcIixcImdyb3VwTmFtZVwiOlwi5rC055S16LS5XCIsXCJub3RpZmljYXRpb25cIjpcIlwiLFwiaW50cm9kdWN0aW9uXCI6XCJcIixcImZhY2VVUkxcIjpcIlwiLFwib3duZXJVc2VySURcIjpcIjI1NjMxMDA3MzBcIixcImNyZWF0ZVRpbWVcIjoxNjkzMDAzMjIzNzE3LFwibWVtYmVyQ291bnRcIjo1LFwiZXhcIjpcIlwiLFwic3RhdHVzXCI6MCxcImNyZWF0b3JVc2VySURcIjpcIjI1NjMxMDA3MzBcIixcImdyb3VwVHlwZVwiOjIsXCJuZWVkVmVyaWZpY2F0aW9uXCI6MCxcImxvb2tNZW1iZXJJbmZvXCI6MCxcImFwcGx5TWVtYmVyRnJpZW5kXCI6MCxcIm5vdGlmaWNhdGlvblVwZGF0ZVRpbWVcIjotMjg4MDAwMDAsXCJub3RpZmljYXRpb25Vc2VySURcIjpcIlwifSxcInF1aXRVc2VyXCI6e1wiZ3JvdXBJRFwiOlwiMzkyNzA4MTgxM1wiLFwidXNlcklEXCI6XCI1MjkyMTU2NjY1XCIsXCJyb2xlTGV2ZWxcIjoyMCxcImpvaW5UaW1lXCI6MTY5MzAwMzIyMzcxOCxcIm5pY2tuYW1lXCI6XCJPbGl2ZXJcIixcImZhY2VVUkxcIjpcImh0dHBzOi8vd2ViLnJlbnRzb2Z0LmNuL2FwaV9lbnRlcnByaXNlL29iamVjdC81MjkyMTU2NjY1L3N0b3JhZ2UvZW11bGF0ZWQvMC9BbmRyb2lkL2RhdGEvaW8ub3BlbmltLmFuZHJvaWQuZGVtby9jYWNoZS8xNzA2MjY1MTU1MjQ3LzE3MDYyNjUxNDg4NTgucG5nXCIsXCJhcHBNYW5nZXJMZXZlbFwiOjAsXCJqb2luU291cmNlXCI6MixcIm9wZXJhdG9yVXNlcklEXCI6XCIyNTYzMTAwNzMwXCIsXCJleFwiOlwiXCIsXCJtdXRlRW5kVGltZVwiOi0yODgwMDAwMCxcImludml0ZXJVc2VySURcIjpcIjI1NjMxMDA3MzBcIn0sXCJvcGVyYXRpb25UaW1lXCI6MCxcImdyb3VwTWVtYmVyVmVyc2lvblwiOjEsXCJncm91cE1lbWJlclZlcnNpb25JRFwiOlwiNjY3MjNjMjk1ODljN2M1ZmU3MDlmZTc4XCJ9In0=","seq":1,"sendTime":1718762537772,"createTime":1718762537771,"status":0,"isRead":false,"options":{"offlinePush":false,"unreadCount":false},"offlinePushInfo":{"title":"","desc":"","ex":"","iOSPushSound":"","iOSBadgeCount":false,"signalInfo":""},"atUserIDList":null,"attachedInfo":"","ex":""}],"isEnd":true},"sg_84614448":{"Msgs":[{"sendID":"imAdmin","recvID":"84614448","groupID":"84614448","clientMsgID":"dc01b2472ea8368fc12ed589b3483a16","serverMsgID":"b920d2060e953bd0975219a79b17bb48","senderPlatformID":0,"senderNickname":"","senderFaceURL":"","sessionType":3,"msgFrom":200,"contentType":1504,"content":"eyJkZXRhaWwiOiJ7XCJncm91cFwiOntcImdyb3VwSURcIjpcIjg0NjE0NDQ4XCIsXCJncm91cE5hbWVcIjpcIue+pOiBiuS4pOadoeS4jeWQjOaXtuW3suivu1wiLFwibm90aWZpY2F0aW9uXCI6XCJcIixcImludHJvZHVjdGlvblwiOlwiXCIsXCJmYWNlVVJMXCI6XCJcIixcIm93bmVyVXNlcklEXCI6XCIxNjk1NzY2MjM4XCIsXCJjcmVhdGVUaW1lXCI6MTY5NzAxNTQ1NjQ1NCxcIm1lbWJlckNvdW50XCI6MSxcImV4XCI6XCJcIixcInN0YXR1c1wiOjAsXCJjcmVhdG9yVXNlcklEXCI6XCIxNjk1NzY2MjM4XCIsXCJncm91cFR5cGVcIjoyLFwibmVlZFZlcmlmaWNhdGlvblwiOjAsXCJsb29rTWVtYmVySW5mb1wiOjAsXCJhcHBseU1lbWJlckZyaWVuZFwiOjAsXCJub3RpZmljYXRpb25VcGRhdGVUaW1lXCI6MCxcIm5vdGlmaWNhdGlvblVzZXJJRFwiOlwiXCJ9LFwicXVpdFVzZXJcIjp7XCJncm91cElEXCI6XCI4NDYxNDQ0OFwiLFwidXNlcklEXCI6XCI3MDA5OTY1OTM0XCIsXCJyb2xlTGV2ZWxcIjoyMCxcImpvaW5UaW1lXCI6MTY5NzAxNTQ1NjQ1NixcIm5pY2tuYW1lXCI6XCLwn5iC4oKNy4TCt82I4LydwrfNiMuEKlwiLFwiZmFjZVVSTFwiOlwiaHR0cHM6Ly93ZWIucmVudHNvZnQuY24vYXBpX2VudGVycHJpc2Uvb2JqZWN0LzcwMDk5NjU5MzQvaW1hZ2VfY3JvcHBlcl8xNjk3MDk3MzUwMTcwLmpwZ1wiLFwiYXBwTWFuZ2VyTGV2ZWxcIjowLFwiam9pblNvdXJjZVwiOjIsXCJvcGVyYXRvclVzZXJJRFwiOlwiMTY5NTc2NjIzOFwiLFwiZXhcIjpcIlwiLFwibXV0ZUVuZFRpbWVcIjowLFwiaW52aXRlclVzZXJJRFwiOlwiMTY5NTc2NjIzOFwifSxcIm9wZXJhdGlvblRpbWVcIjowLFwiZ3JvdXBNZW1iZXJWZXJzaW9uXCI6MyxcImdyb3VwTWVtYmVyVmVyc2lvbklEXCI6XCI2NjZjNGNmNDk1OWJlODBmOTk0NTA0YWFcIn0ifQ==","seq":2,"sendTime":1718717329749,"createTime":1718717329747,"status":0,"isRead":false,"options":{"offlinePush":false,"unreadCount":false},"offlinePushInfo":{"title":"","desc":"","ex":"","iOSPushSound":"","iOSBadgeCount":false,"signalInfo":""},"atUserIDList":null,"attachedInfo":"","ex":""}],"isEnd":true},"si_1695766238_5967938442":{"Msgs":[{"sendID":"1695766238","recvID":"5967938442","groupID":"","clientMsgID":"f3bc501a9e75ed5d7ae967b00d81c749","serverMsgID":"77b5d27ea8ea581781d049133aef1754","senderPlatformID":0,"senderNickname":"","senderFaceURL":"","sessionType":1,"msgFrom":200,"contentType":1201,"content":"eyJkZXRhaWwiOiJ7XCJmcm9tVG9Vc2VySURcIjp7XCJmcm9tVXNlcklEXCI6XCI1OTY3OTM4NDQyXCIsXCJ0b1VzZXJJRFwiOlwiMTY5NTc2NjIzOFwifSxcImhhbmRsZU1zZ1wiOlwiXCIsXCJmcmllbmRWZXJzaW9uXCI6MCxcImZyaWVuZFZlcnNpb25JRFwiOlwiXCJ9In0=","seq":1,"sendTime":1718949580644,"createTime":1718949580641,"status":0,"isRead":false,"options":{"offlinePush":true,"unreadCount":false},"offlinePushInfo":{"title":"","desc":"","ex":"","iOSPushSound":"","iOSBadgeCount":false,"signalInfo":""},"atUserIDList":null,"attachedInfo":"","ex":""}],"isEnd":true},"si_1695766238_7122229636":{"Msgs":[{"sendID":"1695766238","recvID":"7122229636","groupID":"","clientMsgID":"72d26994e64cd4cd2b5c31e19ac8d610","serverMsgID":"2ea8653d8a929527d4f8c27cc76f9a47","senderPlatformID":0,"senderNickname":"","senderFaceURL":"","sessionType":1,"msgFrom":200,"contentType":1201,"content":"eyJkZXRhaWwiOiJ7XCJmcm9tVG9Vc2VySURcIjp7XCJmcm9tVXNlcklEXCI6XCI3MTIyMjI5NjM2XCIsXCJ0b1VzZXJJRFwiOlwiMTY5NTc2NjIzOFwifSxcImhhbmRsZU1zZ1wiOlwiXCIsXCJmcmllbmRWZXJzaW9uXCI6MCxcImZyaWVuZFZlcnNpb25JRFwiOlwiXCJ9In0=","seq":1,"sendTime":1718953432952,"createTime":1718953432951,"status":0,"isRead":true,"options":{"offlinePush":true,"unreadCount":false},"offlinePushInfo":{"title":"","desc":"","ex":"","iOSPushSound":"","iOSBadgeCount":false,"signalInfo":""},"atUserIDList":null,"attachedInfo":"","ex":""}],"isEnd":true}},"SyncFlag":0}}
+2024-06-24 10:57:03.500 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:186] message come here conversation ch {"operationID": "1719197817604066041", "conversation length": 13}
+2024-06-24 10:57:03.500 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:190] parse message in one conversation {"operationID": "1719197817604066041", "conversationID": "sg_3927081813", "message length": 1}
+2024-06-24 10:57:03.501 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:195] parse message {"operationID": "1719197817604066041", "conversationID": "sg_3927081813", "msg": "sendID:\"imAdmin\" recvID:\"3927081813\" groupID:\"3927081813\" clientMsgID:\"bb8f6da7b64c5019d05d11e5498b7ebe\" serverMsgID:\"8377622d22ff842f509a1b8a1b5cf020\" sessionType:3 msgFrom:200 contentType:1504 content:\"{\\\"detail\\\":\\\"{\\\\\\\"group\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"3927081813\\\\\\\",\\\\\\\"groupName\\\\\\\":\\\\\\\"æ°´įĩč´š\\\\\\\",\\\\\\\"notification\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"introduction\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"ownerUserID\\\\\\\":\\\\\\\"2563100730\\\\\\\",\\\\\\\"createTime\\\\\\\":1693003223717,\\\\\\\"memberCount\\\\\\\":5,\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"status\\\\\\\":0,\\\\\\\"creatorUserID\\\\\\\":\\\\\\\"2563100730\\\\\\\",\\\\\\\"groupType\\\\\\\":2,\\\\\\\"needVerification\\\\\\\":0,\\\\\\\"lookMemberInfo\\\\\\\":0,\\\\\\\"applyMemberFriend\\\\\\\":0,\\\\\\\"notificationUpdateTime\\\\\\\":-28800000,\\\\\\\"notificationUserID\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"quitUser\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"3927081813\\\\\\\",\\\\\\\"userID\\\\\\\":\\\\\\\"5292156665\\\\\\\",\\\\\\\"roleLevel\\\\\\\":20,\\\\\\\"joinTime\\\\\\\":1693003223718,\\\\\\\"nickname\\\\\\\":\\\\\\\"Oliver\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"https://web.rentsoft.cn/api_enterprise/object/5292156665/storage/emulated/0/Android/data/io.openim.android.demo/cache/1706265155247/1706265148858.png\\\\\\\",\\\\\\\"appMangerLevel\\\\\\\":0,\\\\\\\"joinSource\\\\\\\":2,\\\\\\\"operatorUserID\\\\\\\":\\\\\\\"2563100730\\\\\\\",\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"muteEndTime\\\\\\\":-28800000,\\\\\\\"inviterUserID\\\\\\\":\\\\\\\"2563100730\\\\\\\"},\\\\\\\"operationTime\\\\\\\":0,\\\\\\\"groupMemberVersion\\\\\\\":1,\\\\\\\"groupMemberVersionID\\\\\\\":\\\\\\\"66723c29589c7c5fe709fe78\\\\\\\"}\\\"}\" seq:1 sendTime:1718762537772 createTime:1718762537771 options:{key:\"offlinePush\" value:false} options:{key:\"unreadCount\" value:false} offlinePushInfo:{}"}
+2024-06-24 10:57:03.502 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:237] decode message {"operationID": "1719197817604066041", "msg": {"clientMsgID":"bb8f6da7b64c5019d05d11e5498b7ebe","serverMsgID":"8377622d22ff842f509a1b8a1b5cf020","createTime":1718762537771,"sendTime":1718762537772,"sessionType":3,"sendID":"imAdmin","recvID":"3927081813","msgFrom":200,"contentType":1504,"senderPlatformID":0,"groupID":"3927081813","seq":1,"isRead":false,"status":2,"notificationElem":{"detail":"{\"group\":{\"groupID\":\"3927081813\",\"groupName\":\"æ°´įĩč´š\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"2563100730\",\"createTime\":1693003223717,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"2563100730\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":-28800000,\"notificationUserID\":\"\"},\"quitUser\":{\"groupID\":\"3927081813\",\"userID\":\"5292156665\",\"roleLevel\":20,\"joinTime\":1693003223718,\"nickname\":\"Oliver\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5292156665/storage/emulated/0/Android/data/io.openim.android.demo/cache/1706265155247/1706265148858.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2563100730\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"2563100730\"},\"operationTime\":0,\"groupMemberVersion\":1,\"groupMemberVersionID\":\"66723c29589c7c5fe709fe78\"}"},"attachedInfoElem":{"groupHasReadInfo":{"hasReadCount":0,"groupMemberCount":0},"isPrivateChat":false,"burnDuration":0,"hasReadTime":0,"isEncryption":false,"inEncryptStatus":false}}}
+2024-06-24 10:57:03.515 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_members_info", "body": "{\"groupID\":\"3927081813\",\"userIDs\":[\"imAdmin\"]}"}
+2024-06-24 10:57:03.535 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_members_info", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"members\":null}}"}
+2024-06-24 10:57:03.536 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_members_info", "state": "success", "cost time": "21ms"}
+2024-06-24 10:57:03.536 [31mERROR[0m [31m[PID:21964] [0m [version:3.5.13] [conversation_msg/message_check.go:333] get group member info err {"operationID": "1719197817604066041", "error": "nil"}
+2024-06-24 10:57:03.537 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:190] parse message in one conversation {"operationID": "1719197817604066041", "conversationID": "sg_2300748497", "message length": 1}
+2024-06-24 10:57:03.537 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:195] parse message {"operationID": "1719197817604066041", "conversationID": "sg_2300748497", "msg": "sendID:\"imAdmin\" recvID:\"2300748497\" groupID:\"2300748497\" clientMsgID:\"f2abda0ba3a3460dd9e06350b2fd0bdb\" serverMsgID:\"d35e1a97576493ec2ab2ff3d077f4cdc\" sessionType:3 msgFrom:200 contentType:1504 content:\"{\\\"detail\\\":\\\"{\\\\\\\"group\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"2300748497\\\\\\\",\\\\\\\"groupName\\\\\\\":\\\\\\\"æĩč¯\\\\\\\",\\\\\\\"notification\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"introduction\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"ownerUserID\\\\\\\":\\\\\\\"2738308088\\\\\\\",\\\\\\\"createTime\\\\\\\":1692906300817,\\\\\\\"memberCount\\\\\\\":5,\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"status\\\\\\\":0,\\\\\\\"creatorUserID\\\\\\\":\\\\\\\"2738308088\\\\\\\",\\\\\\\"groupType\\\\\\\":2,\\\\\\\"needVerification\\\\\\\":0,\\\\\\\"lookMemberInfo\\\\\\\":0,\\\\\\\"applyMemberFriend\\\\\\\":0,\\\\\\\"notificationUpdateTime\\\\\\\":-28800000,\\\\\\\"notificationUserID\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"quitUser\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"2300748497\\\\\\\",\\\\\\\"userID\\\\\\\":\\\\\\\"3418577436\\\\\\\",\\\\\\\"roleLevel\\\\\\\":20,\\\\\\\"joinTime\\\\\\\":1692906300820,\\\\\\\"nickname\\\\\\\":\\\\\\\"OpenIM-skiffer\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"https://web.rentsoft.cn/api_enterprise/object/3418577436/BD14C2C1956AB2E1BD8A9F33E76220BE (1).jpg\\\\\\\",\\\\\\\"appMangerLevel\\\\\\\":0,\\\\\\\"joinSource\\\\\\\":2,\\\\\\\"operatorUserID\\\\\\\":\\\\\\\"2738308088\\\\\\\",\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"muteEndTime\\\\\\\":-28800000,\\\\\\\"inviterUserID\\\\\\\":\\\\\\\"2738308088\\\\\\\"},\\\\\\\"operationTime\\\\\\\":0,\\\\\\\"groupMemberVersion\\\\\\\":2,\\\\\\\"groupMemberVersionID\\\\\\\":\\\\\\\"66719001589c7c5fe709fe75\\\\\\\"}\\\"}\" seq:2 sendTime:1718718570199 createTime:1718718570198 options:{key:\"offlinePush\" value:false} options:{key:\"unreadCount\" value:false} offlinePushInfo:{}"}
+2024-06-24 10:57:03.538 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:237] decode message {"operationID": "1719197817604066041", "msg": {"clientMsgID":"f2abda0ba3a3460dd9e06350b2fd0bdb","serverMsgID":"d35e1a97576493ec2ab2ff3d077f4cdc","createTime":1718718570198,"sendTime":1718718570199,"sessionType":3,"sendID":"imAdmin","recvID":"2300748497","msgFrom":200,"contentType":1504,"senderPlatformID":0,"groupID":"2300748497","seq":2,"isRead":false,"status":2,"notificationElem":{"detail":"{\"group\":{\"groupID\":\"2300748497\",\"groupName\":\"æĩč¯\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"2738308088\",\"createTime\":1692906300817,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"2738308088\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":-28800000,\"notificationUserID\":\"\"},\"quitUser\":{\"groupID\":\"2300748497\",\"userID\":\"3418577436\",\"roleLevel\":20,\"joinTime\":1692906300820,\"nickname\":\"OpenIM-skiffer\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/3418577436/BD14C2C1956AB2E1BD8A9F33E76220BE (1).jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"2738308088\",\"ex\":\"\",\"muteEndTime\":-28800000,\"inviterUserID\":\"2738308088\"},\"operationTime\":0,\"groupMemberVersion\":2,\"groupMemberVersionID\":\"66719001589c7c5fe709fe75\"}"},"attachedInfoElem":{"groupHasReadInfo":{"hasReadCount":0,"groupMemberCount":0},"isPrivateChat":false,"burnDuration":0,"hasReadTime":0,"isEncryption":false,"inEncryptStatus":false}}}
+2024-06-24 10:57:03.554 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_members_info", "body": "{\"groupID\":\"2300748497\",\"userIDs\":[\"imAdmin\"]}"}
+2024-06-24 10:57:03.572 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_members_info", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"members\":null}}"}
+2024-06-24 10:57:03.572 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_members_info", "state": "success", "cost time": "18ms"}
+2024-06-24 10:57:03.573 [31mERROR[0m [31m[PID:21964] [0m [version:3.5.13] [conversation_msg/message_check.go:333] get group member info err {"operationID": "1719197817604066041", "error": "nil"}
+2024-06-24 10:57:03.574 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:190] parse message in one conversation {"operationID": "1719197817604066041", "conversationID": "sg_2836218947", "message length": 1}
+2024-06-24 10:57:03.574 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:195] parse message {"operationID": "1719197817604066041", "conversationID": "sg_2836218947", "msg": "sendID:\"imAdmin\" recvID:\"2836218947\" groupID:\"2836218947\" clientMsgID:\"06284c5a5f10d1f472f5f8bc938b47a3\" serverMsgID:\"bba734e36558164cfb5e40206ba26259\" sessionType:3 msgFrom:200 contentType:1504 content:\"{\\\"detail\\\":\\\"{\\\\\\\"group\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"2836218947\\\\\\\",\\\\\\\"groupName\\\\\\\":\\\\\\\"æĩč¯įž¤įŽĄį\\\\\\\",\\\\\\\"notification\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"introduction\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"ownerUserID\\\\\\\":\\\\\\\"4918276559\\\\\\\",\\\\\\\"createTime\\\\\\\":1715065335408,\\\\\\\"memberCount\\\\\\\":6,\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"status\\\\\\\":0,\\\\\\\"creatorUserID\\\\\\\":\\\\\\\"4918276559\\\\\\\",\\\\\\\"groupType\\\\\\\":2,\\\\\\\"needVerification\\\\\\\":0,\\\\\\\"lookMemberInfo\\\\\\\":1,\\\\\\\"applyMemberFriend\\\\\\\":1,\\\\\\\"notificationUpdateTime\\\\\\\":0,\\\\\\\"notificationUserID\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"quitUser\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"2836218947\\\\\\\",\\\\\\\"userID\\\\\\\":\\\\\\\"6319015024\\\\\\\",\\\\\\\"roleLevel\\\\\\\":20,\\\\\\\"joinTime\\\\\\\":1715065335409,\\\\\\\"nickname\\\\\\\":\\\\\\\"OpenIM-wind\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"https://web.rentsoft.cn/api_enterprise/object/6319015024/pexels-photo-2174974.webp\\\\\\\",\\\\\\\"appMangerLevel\\\\\\\":0,\\\\\\\"joinSource\\\\\\\":2,\\\\\\\"operatorUserID\\\\\\\":\\\\\\\"4918276559\\\\\\\",\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"muteEndTime\\\\\\\":0,\\\\\\\"inviterUserID\\\\\\\":\\\\\\\"4918276559\\\\\\\"},\\\\\\\"operationTime\\\\\\\":0,\\\\\\\"groupMemberVersion\\\\\\\":3,\\\\\\\"groupMemberVersionID\\\\\\\":\\\\\\\"6672d39de27166fe7781170c\\\\\\\"}\\\"}\" seq:2 sendTime:1718936592923 createTime:1718936592922 options:{key:\"offlinePush\" value:false} options:{key:\"unreadCount\" value:false} offlinePushInfo:{}"}
+2024-06-24 10:57:03.575 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:237] decode message {"operationID": "1719197817604066041", "msg": {"clientMsgID":"06284c5a5f10d1f472f5f8bc938b47a3","serverMsgID":"bba734e36558164cfb5e40206ba26259","createTime":1718936592922,"sendTime":1718936592923,"sessionType":3,"sendID":"imAdmin","recvID":"2836218947","msgFrom":200,"contentType":1504,"senderPlatformID":0,"groupID":"2836218947","seq":2,"isRead":false,"status":2,"notificationElem":{"detail":"{\"group\":{\"groupID\":\"2836218947\",\"groupName\":\"æĩč¯įž¤įŽĄį\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4918276559\",\"createTime\":1715065335408,\"memberCount\":6,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4918276559\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":1,\"applyMemberFriend\":1,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},\"quitUser\":{\"groupID\":\"2836218947\",\"userID\":\"6319015024\",\"roleLevel\":20,\"joinTime\":1715065335409,\"nickname\":\"OpenIM-wind\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/6319015024/pexels-photo-2174974.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4918276559\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4918276559\"},\"operationTime\":0,\"groupMemberVersion\":3,\"groupMemberVersionID\":\"6672d39de27166fe7781170c\"}"},"attachedInfoElem":{"groupHasReadInfo":{"hasReadCount":0,"groupMemberCount":0},"isPrivateChat":false,"burnDuration":0,"hasReadTime":0,"isEncryption":false,"inEncryptStatus":false}}}
+2024-06-24 10:57:03.592 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_members_info", "body": "{\"groupID\":\"2836218947\",\"userIDs\":[\"imAdmin\"]}"}
+2024-06-24 10:57:03.610 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_members_info", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"members\":null}}"}
+2024-06-24 10:57:03.610 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_members_info", "state": "success", "cost time": "17ms"}
+2024-06-24 10:57:03.610 [31mERROR[0m [31m[PID:21964] [0m [version:3.5.13] [conversation_msg/message_check.go:333] get group member info err {"operationID": "1719197817604066041", "error": "nil"}
+2024-06-24 10:57:03.611 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:190] parse message in one conversation {"operationID": "1719197817604066041", "conversationID": "sg_105081877", "message length": 1}
+2024-06-24 10:57:03.611 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:195] parse message {"operationID": "1719197817604066041", "conversationID": "sg_105081877", "msg": "sendID:\"imAdmin\" recvID:\"105081877\" groupID:\"105081877\" clientMsgID:\"edc317755ca9c374d7a42e270abe5bc3\" serverMsgID:\"db07a9027981f628e056ba6f18774eff\" sessionType:3 msgFrom:200 contentType:1504 content:\"{\\\"detail\\\":\\\"{\\\\\\\"group\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"105081877\\\\\\\",\\\\\\\"groupName\\\\\\\":\\\\\\\"d\\\\\\\",\\\\\\\"notification\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"introduction\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"ownerUserID\\\\\\\":\\\\\\\"5248385191\\\\\\\",\\\\\\\"createTime\\\\\\\":1710490825413,\\\\\\\"memberCount\\\\\\\":5,\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"status\\\\\\\":0,\\\\\\\"creatorUserID\\\\\\\":\\\\\\\"5248385191\\\\\\\",\\\\\\\"groupType\\\\\\\":2,\\\\\\\"needVerification\\\\\\\":0,\\\\\\\"lookMemberInfo\\\\\\\":0,\\\\\\\"applyMemberFriend\\\\\\\":0,\\\\\\\"notificationUpdateTime\\\\\\\":0,\\\\\\\"notificationUserID\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"quitUser\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"105081877\\\\\\\",\\\\\\\"userID\\\\\\\":\\\\\\\"5292156665\\\\\\\",\\\\\\\"roleLevel\\\\\\\":20,\\\\\\\"joinTime\\\\\\\":1710490848503,\\\\\\\"nickname\\\\\\\":\\\\\\\"Oliver\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"https://web.rentsoft.cn/api_enterprise/object/5292156665/storage/emulated/0/Android/data/io.openim.android.demo/cache/1706265155247/1706265148858.png\\\\\\\",\\\\\\\"appMangerLevel\\\\\\\":0,\\\\\\\"joinSource\\\\\\\":2,\\\\\\\"operatorUserID\\\\\\\":\\\\\\\"5248385191\\\\\\\",\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"muteEndTime\\\\\\\":0,\\\\\\\"inviterUserID\\\\\\\":\\\\\\\"5248385191\\\\\\\"},\\\\\\\"operationTime\\\\\\\":0,\\\\\\\"groupMemberVersion\\\\\\\":2,\\\\\\\"groupMemberVersionID\\\\\\\":\\\\\\\"6672d39de27166fe77811753\\\\\\\"}\\\"}\" seq:2 sendTime:1718937610490 createTime:1718937610489 options:{key:\"offlinePush\" value:false} options:{key:\"unreadCount\" value:false} offlinePushInfo:{}"}
+2024-06-24 10:57:03.612 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:237] decode message {"operationID": "1719197817604066041", "msg": {"clientMsgID":"edc317755ca9c374d7a42e270abe5bc3","serverMsgID":"db07a9027981f628e056ba6f18774eff","createTime":1718937610489,"sendTime":1718937610490,"sessionType":3,"sendID":"imAdmin","recvID":"105081877","msgFrom":200,"contentType":1504,"senderPlatformID":0,"groupID":"105081877","seq":2,"isRead":false,"status":2,"notificationElem":{"detail":"{\"group\":{\"groupID\":\"105081877\",\"groupName\":\"d\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"5248385191\",\"createTime\":1710490825413,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"5248385191\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},\"quitUser\":{\"groupID\":\"105081877\",\"userID\":\"5292156665\",\"roleLevel\":20,\"joinTime\":1710490848503,\"nickname\":\"Oliver\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5292156665/storage/emulated/0/Android/data/io.openim.android.demo/cache/1706265155247/1706265148858.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"5248385191\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"5248385191\"},\"operationTime\":0,\"groupMemberVersion\":2,\"groupMemberVersionID\":\"6672d39de27166fe77811753\"}"},"attachedInfoElem":{"groupHasReadInfo":{"hasReadCount":0,"groupMemberCount":0},"isPrivateChat":false,"burnDuration":0,"hasReadTime":0,"isEncryption":false,"inEncryptStatus":false}}}
+2024-06-24 10:57:03.628 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_members_info", "body": "{\"groupID\":\"105081877\",\"userIDs\":[\"imAdmin\"]}"}
+2024-06-24 10:57:03.649 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_members_info", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"members\":null}}"}
+2024-06-24 10:57:03.649 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_members_info", "state": "success", "cost time": "21ms"}
+2024-06-24 10:57:03.649 [31mERROR[0m [31m[PID:21964] [0m [version:3.5.13] [conversation_msg/message_check.go:333] get group member info err {"operationID": "1719197817604066041", "error": "nil"}
+2024-06-24 10:57:03.649 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:190] parse message in one conversation {"operationID": "1719197817604066041", "conversationID": "sg_1177987017", "message length": 1}
+2024-06-24 10:57:03.650 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:195] parse message {"operationID": "1719197817604066041", "conversationID": "sg_1177987017", "msg": "sendID:\"imAdmin\" recvID:\"1177987017\" groupID:\"1177987017\" clientMsgID:\"93ce372f1170782d5961e3831c9e7d30\" serverMsgID:\"c5ee404e47c5b104d38baae24bea8d98\" sessionType:3 msgFrom:200 contentType:1504 content:\"{\\\"detail\\\":\\\"{\\\\\\\"group\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"1177987017\\\\\\\",\\\\\\\"groupName\\\\\\\":\\\\\\\"123123\\\\\\\",\\\\\\\"notification\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"introduction\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"ownerUserID\\\\\\\":\\\\\\\"1695766238\\\\\\\",\\\\\\\"createTime\\\\\\\":1705046435331,\\\\\\\"memberCount\\\\\\\":1,\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"status\\\\\\\":0,\\\\\\\"creatorUserID\\\\\\\":\\\\\\\"1695766238\\\\\\\",\\\\\\\"groupType\\\\\\\":2,\\\\\\\"needVerification\\\\\\\":0,\\\\\\\"lookMemberInfo\\\\\\\":0,\\\\\\\"applyMemberFriend\\\\\\\":0,\\\\\\\"notificationUpdateTime\\\\\\\":0,\\\\\\\"notificationUserID\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"quitUser\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"1177987017\\\\\\\",\\\\\\\"userID\\\\\\\":\\\\\\\"4911414951\\\\\\\",\\\\\\\"roleLevel\\\\\\\":20,\\\\\\\"joinTime\\\\\\\":1705046985971,\\\\\\\"nickname\\\\\\\":\\\\\\\"OpenimAnd-Jane\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"https://web.rentsoft.cn/api_enterprise/object/4911414951/image_2024-05-06-20-59.111.png\\\\\\\",\\\\\\\"appMangerLevel\\\\\\\":0,\\\\\\\"joinSource\\\\\\\":2,\\\\\\\"operatorUserID\\\\\\\":\\\\\\\"1695766238\\\\\\\",\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"muteEndTime\\\\\\\":0,\\\\\\\"inviterUserID\\\\\\\":\\\\\\\"1695766238\\\\\\\"},\\\\\\\"operationTime\\\\\\\":0,\\\\\\\"groupMemberVersion\\\\\\\":3}\\\"}\" seq:2 sendTime:1718373366842 createTime:1718373366841 options:{key:\"offlinePush\" value:false} options:{key:\"unreadCount\" value:false} offlinePushInfo:{}"}
+2024-06-24 10:57:03.651 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:237] decode message {"operationID": "1719197817604066041", "msg": {"clientMsgID":"93ce372f1170782d5961e3831c9e7d30","serverMsgID":"c5ee404e47c5b104d38baae24bea8d98","createTime":1718373366841,"sendTime":1718373366842,"sessionType":3,"sendID":"imAdmin","recvID":"1177987017","msgFrom":200,"contentType":1504,"senderPlatformID":0,"groupID":"1177987017","seq":2,"isRead":false,"status":2,"notificationElem":{"detail":"{\"group\":{\"groupID\":\"1177987017\",\"groupName\":\"123123\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1695766238\",\"createTime\":1705046435331,\"memberCount\":1,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"1695766238\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},\"quitUser\":{\"groupID\":\"1177987017\",\"userID\":\"4911414951\",\"roleLevel\":20,\"joinTime\":1705046985971,\"nickname\":\"OpenimAnd-Jane\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4911414951/image_2024-05-06-20-59.111.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1695766238\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1695766238\"},\"operationTime\":0,\"groupMemberVersion\":3}"},"attachedInfoElem":{"groupHasReadInfo":{"hasReadCount":0,"groupMemberCount":0},"isPrivateChat":false,"burnDuration":0,"hasReadTime":0,"isEncryption":false,"inEncryptStatus":false}}}
+2024-06-24 10:57:03.668 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_members_info", "body": "{\"groupID\":\"1177987017\",\"userIDs\":[\"imAdmin\"]}"}
+2024-06-24 10:57:03.687 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_members_info", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"members\":null}}"}
+2024-06-24 10:57:03.687 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_members_info", "state": "success", "cost time": "18ms"}
+2024-06-24 10:57:03.687 [31mERROR[0m [31m[PID:21964] [0m [version:3.5.13] [conversation_msg/message_check.go:333] get group member info err {"operationID": "1719197817604066041", "error": "nil"}
+2024-06-24 10:57:03.688 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:190] parse message in one conversation {"operationID": "1719197817604066041", "conversationID": "si_1695766238_5967938442", "message length": 1}
+2024-06-24 10:57:03.688 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:195] parse message {"operationID": "1719197817604066041", "conversationID": "si_1695766238_5967938442", "msg": "sendID:\"1695766238\" recvID:\"5967938442\" clientMsgID:\"f3bc501a9e75ed5d7ae967b00d81c749\" serverMsgID:\"77b5d27ea8ea581781d049133aef1754\" sessionType:1 msgFrom:200 contentType:1201 content:\"{\\\"detail\\\":\\\"{\\\\\\\"fromToUserID\\\\\\\":{\\\\\\\"fromUserID\\\\\\\":\\\\\\\"5967938442\\\\\\\",\\\\\\\"toUserID\\\\\\\":\\\\\\\"1695766238\\\\\\\"},\\\\\\\"handleMsg\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"friendVersion\\\\\\\":0,\\\\\\\"friendVersionID\\\\\\\":\\\\\\\"\\\\\\\"}\\\"}\" seq:1 sendTime:1718949580644 createTime:1718949580641 options:{key:\"offlinePush\" value:true} options:{key:\"unreadCount\" value:false} offlinePushInfo:{}"}
+2024-06-24 10:57:03.689 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:237] decode message {"operationID": "1719197817604066041", "msg": {"clientMsgID":"f3bc501a9e75ed5d7ae967b00d81c749","serverMsgID":"77b5d27ea8ea581781d049133aef1754","createTime":1718949580641,"sendTime":1718949580644,"sessionType":1,"sendID":"1695766238","recvID":"5967938442","msgFrom":200,"contentType":1201,"senderPlatformID":0,"seq":1,"isRead":false,"status":2,"notificationElem":{"detail":"{\"fromToUserID\":{\"fromUserID\":\"5967938442\",\"toUserID\":\"1695766238\"},\"handleMsg\":\"\",\"friendVersion\":0,\"friendVersionID\":\"\"}"},"attachedInfoElem":{"groupHasReadInfo":{"hasReadCount":0,"groupMemberCount":0},"isPrivateChat":false,"burnDuration":0,"hasReadTime":0,"isEncryption":false,"inEncryptStatus":false}}}
+2024-06-24 10:57:03.702 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:252] sync message {"operationID": "1719197817604066041", "msg": {"clientMsgID":"f3bc501a9e75ed5d7ae967b00d81c749","serverMsgID":"77b5d27ea8ea581781d049133aef1754","createTime":1718949580641,"sendTime":1718949580644,"sessionType":1,"sendID":"1695766238","recvID":"5967938442","msgFrom":200,"contentType":1201,"senderPlatformID":0,"seq":1,"isRead":false,"status":2,"notificationElem":{"detail":"{\"fromToUserID\":{\"fromUserID\":\"5967938442\",\"toUserID\":\"1695766238\"},\"handleMsg\":\"\",\"friendVersion\":0,\"friendVersionID\":\"\"}"},"attachedInfoElem":{"groupHasReadInfo":{"hasReadCount":0,"groupMemberCount":0},"isPrivateChat":false,"burnDuration":0,"hasReadTime":0,"isEncryption":false,"inEncryptStatus":false}}}
+2024-06-24 10:57:03.702 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:267] updateConversation msg {"operationID": "1719197817604066041", "message": "sendID:\"1695766238\" recvID:\"5967938442\" clientMsgID:\"f3bc501a9e75ed5d7ae967b00d81c749\" serverMsgID:\"77b5d27ea8ea581781d049133aef1754\" sessionType:1 msgFrom:200 contentType:1201 content:\"{\\\"detail\\\":\\\"{\\\\\\\"fromToUserID\\\\\\\":{\\\\\\\"fromUserID\\\\\\\":\\\\\\\"5967938442\\\\\\\",\\\\\\\"toUserID\\\\\\\":\\\\\\\"1695766238\\\\\\\"},\\\\\\\"handleMsg\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"friendVersion\\\\\\\":0,\\\\\\\"friendVersionID\\\\\\\":\\\\\\\"\\\\\\\"}\\\"}\" seq:1 sendTime:1718949580644 createTime:1718949580641 options:{key:\"offlinePush\" value:true} options:{key:\"unreadCount\" value:false} offlinePushInfo:{}", "conversation": {"conversationID":"si_1695766238_5967938442","conversationType":1,"userID":"5967938442","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"{\"clientMsgID\":\"f3bc501a9e75ed5d7ae967b00d81c749\",\"serverMsgID\":\"77b5d27ea8ea581781d049133aef1754\",\"createTime\":1718949580641,\"sendTime\":1718949580644,\"sessionType\":1,\"sendID\":\"1695766238\",\"recvID\":\"5967938442\",\"msgFrom\":200,\"contentType\":1201,\"senderPlatformID\":0,\"seq\":1,\"isRead\":false,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"fromToUserID\\\":{\\\"fromUserID\\\":\\\"5967938442\\\",\\\"toUserID\\\":\\\"1695766238\\\"},\\\"handleMsg\\\":\\\"\\\",\\\"friendVersion\\\":0,\\\"friendVersionID\\\":\\\"\\\"}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}}","latestMsgSendTime":1718949580644,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:03.704 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:190] parse message in one conversation {"operationID": "1719197817604066041", "conversationID": "sg_161019322", "message length": 1}
+2024-06-24 10:57:03.704 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:195] parse message {"operationID": "1719197817604066041", "conversationID": "sg_161019322", "msg": "sendID:\"imAdmin\" recvID:\"161019322\" groupID:\"161019322\" clientMsgID:\"a3a3d6e0aeaf5ad4b2fdbe7707d6a185\" serverMsgID:\"96d8ed55c12579dd32a7631eeedb0eaa\" sessionType:3 msgFrom:200 contentType:1504 content:\"{\\\"detail\\\":\\\"{\\\\\\\"group\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"161019322\\\\\\\",\\\\\\\"groupName\\\\\\\":\\\\\\\"æĩč¯įž¤\\\\\\\",\\\\\\\"notification\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"introduction\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"ownerUserID\\\\\\\":\\\\\\\"3923864156\\\\\\\",\\\\\\\"createTime\\\\\\\":1716449051809,\\\\\\\"memberCount\\\\\\\":2,\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"status\\\\\\\":0,\\\\\\\"creatorUserID\\\\\\\":\\\\\\\"3923864156\\\\\\\",\\\\\\\"groupType\\\\\\\":2,\\\\\\\"needVerification\\\\\\\":0,\\\\\\\"lookMemberInfo\\\\\\\":0,\\\\\\\"applyMemberFriend\\\\\\\":0,\\\\\\\"notificationUpdateTime\\\\\\\":0,\\\\\\\"notificationUserID\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"quitUser\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"161019322\\\\\\\",\\\\\\\"userID\\\\\\\":\\\\\\\"2725451243\\\\\\\",\\\\\\\"roleLevel\\\\\\\":20,\\\\\\\"joinTime\\\\\\\":1716449051811,\\\\\\\"nickname\\\\\\\":\\\\\\\"OpenIM-Andrew123\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"appMangerLevel\\\\\\\":0,\\\\\\\"joinSource\\\\\\\":2,\\\\\\\"operatorUserID\\\\\\\":\\\\\\\"3923864156\\\\\\\",\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"muteEndTime\\\\\\\":0,\\\\\\\"inviterUserID\\\\\\\":\\\\\\\"3923864156\\\\\\\"},\\\\\\\"operationTime\\\\\\\":0,\\\\\\\"groupMemberVersion\\\\\\\":4,\\\\\\\"groupMemberVersionID\\\\\\\":\\\\\\\"6672d39de27166fe7781173f\\\\\\\"}\\\"}\" seq:3 sendTime:1718850240267 createTime:1718850240266 options:{key:\"offlinePush\" value:false} options:{key:\"unreadCount\" value:false} offlinePushInfo:{}"}
+2024-06-24 10:57:03.706 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:237] decode message {"operationID": "1719197817604066041", "msg": {"clientMsgID":"a3a3d6e0aeaf5ad4b2fdbe7707d6a185","serverMsgID":"96d8ed55c12579dd32a7631eeedb0eaa","createTime":1718850240266,"sendTime":1718850240267,"sessionType":3,"sendID":"imAdmin","recvID":"161019322","msgFrom":200,"contentType":1504,"senderPlatformID":0,"groupID":"161019322","seq":3,"isRead":false,"status":2,"notificationElem":{"detail":"{\"group\":{\"groupID\":\"161019322\",\"groupName\":\"æĩč¯įž¤\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3923864156\",\"createTime\":1716449051809,\"memberCount\":2,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3923864156\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},\"quitUser\":{\"groupID\":\"161019322\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1716449051811,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3923864156\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3923864156\"},\"operationTime\":0,\"groupMemberVersion\":4,\"groupMemberVersionID\":\"6672d39de27166fe7781173f\"}"},"attachedInfoElem":{"groupHasReadInfo":{"hasReadCount":0,"groupMemberCount":0},"isPrivateChat":false,"burnDuration":0,"hasReadTime":0,"isEncryption":false,"inEncryptStatus":false}}}
+2024-06-24 10:57:03.723 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_members_info", "body": "{\"groupID\":\"161019322\",\"userIDs\":[\"imAdmin\"]}"}
+2024-06-24 10:57:03.740 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_members_info", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"members\":null}}"}
+2024-06-24 10:57:03.741 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_members_info", "state": "success", "cost time": "17ms"}
+2024-06-24 10:57:03.741 [31mERROR[0m [31m[PID:21964] [0m [version:3.5.13] [conversation_msg/message_check.go:333] get group member info err {"operationID": "1719197817604066041", "error": "nil"}
+2024-06-24 10:57:03.741 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:190] parse message in one conversation {"operationID": "1719197817604066041", "conversationID": "sg_84614448", "message length": 1}
+2024-06-24 10:57:03.741 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:195] parse message {"operationID": "1719197817604066041", "conversationID": "sg_84614448", "msg": "sendID:\"imAdmin\" recvID:\"84614448\" groupID:\"84614448\" clientMsgID:\"dc01b2472ea8368fc12ed589b3483a16\" serverMsgID:\"b920d2060e953bd0975219a79b17bb48\" sessionType:3 msgFrom:200 contentType:1504 content:\"{\\\"detail\\\":\\\"{\\\\\\\"group\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"84614448\\\\\\\",\\\\\\\"groupName\\\\\\\":\\\\\\\"įž¤č两æĄä¸åæļ厞č¯ģ\\\\\\\",\\\\\\\"notification\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"introduction\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"ownerUserID\\\\\\\":\\\\\\\"1695766238\\\\\\\",\\\\\\\"createTime\\\\\\\":1697015456454,\\\\\\\"memberCount\\\\\\\":1,\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"status\\\\\\\":0,\\\\\\\"creatorUserID\\\\\\\":\\\\\\\"1695766238\\\\\\\",\\\\\\\"groupType\\\\\\\":2,\\\\\\\"needVerification\\\\\\\":0,\\\\\\\"lookMemberInfo\\\\\\\":0,\\\\\\\"applyMemberFriend\\\\\\\":0,\\\\\\\"notificationUpdateTime\\\\\\\":0,\\\\\\\"notificationUserID\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"quitUser\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"84614448\\\\\\\",\\\\\\\"userID\\\\\\\":\\\\\\\"7009965934\\\\\\\",\\\\\\\"roleLevel\\\\\\\":20,\\\\\\\"joinTime\\\\\\\":1697015456456,\\\\\\\"nickname\\\\\\\":\\\\\\\"đâË¡Íāŧ¡ÍË*\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"https://web.rentsoft.cn/api_enterprise/object/7009965934/image_cropper_1697097350170.jpg\\\\\\\",\\\\\\\"appMangerLevel\\\\\\\":0,\\\\\\\"joinSource\\\\\\\":2,\\\\\\\"operatorUserID\\\\\\\":\\\\\\\"1695766238\\\\\\\",\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"muteEndTime\\\\\\\":0,\\\\\\\"inviterUserID\\\\\\\":\\\\\\\"1695766238\\\\\\\"},\\\\\\\"operationTime\\\\\\\":0,\\\\\\\"groupMemberVersion\\\\\\\":3,\\\\\\\"groupMemberVersionID\\\\\\\":\\\\\\\"666c4cf4959be80f994504aa\\\\\\\"}\\\"}\" seq:2 sendTime:1718717329749 createTime:1718717329747 options:{key:\"offlinePush\" value:false} options:{key:\"unreadCount\" value:false} offlinePushInfo:{}"}
+2024-06-24 10:57:03.743 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:237] decode message {"operationID": "1719197817604066041", "msg": {"clientMsgID":"dc01b2472ea8368fc12ed589b3483a16","serverMsgID":"b920d2060e953bd0975219a79b17bb48","createTime":1718717329747,"sendTime":1718717329749,"sessionType":3,"sendID":"imAdmin","recvID":"84614448","msgFrom":200,"contentType":1504,"senderPlatformID":0,"groupID":"84614448","seq":2,"isRead":false,"status":2,"notificationElem":{"detail":"{\"group\":{\"groupID\":\"84614448\",\"groupName\":\"įž¤č两æĄä¸åæļ厞č¯ģ\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1695766238\",\"createTime\":1697015456454,\"memberCount\":1,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"1695766238\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},\"quitUser\":{\"groupID\":\"84614448\",\"userID\":\"7009965934\",\"roleLevel\":20,\"joinTime\":1697015456456,\"nickname\":\"đâË¡Íāŧ¡ÍË*\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7009965934/image_cropper_1697097350170.jpg\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"1695766238\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"1695766238\"},\"operationTime\":0,\"groupMemberVersion\":3,\"groupMemberVersionID\":\"666c4cf4959be80f994504aa\"}"},"attachedInfoElem":{"groupHasReadInfo":{"hasReadCount":0,"groupMemberCount":0},"isPrivateChat":false,"burnDuration":0,"hasReadTime":0,"isEncryption":false,"inEncryptStatus":false}}}
+2024-06-24 10:57:03.758 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_members_info", "body": "{\"groupID\":\"84614448\",\"userIDs\":[\"imAdmin\"]}"}
+2024-06-24 10:57:03.776 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_members_info", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"members\":null}}"}
+2024-06-24 10:57:03.776 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_members_info", "state": "success", "cost time": "17ms"}
+2024-06-24 10:57:03.776 [31mERROR[0m [31m[PID:21964] [0m [version:3.5.13] [conversation_msg/message_check.go:333] get group member info err {"operationID": "1719197817604066041", "error": "nil"}
+2024-06-24 10:57:03.777 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:190] parse message in one conversation {"operationID": "1719197817604066041", "conversationID": "sg_3187706596", "message length": 1}
+2024-06-24 10:57:03.777 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:195] parse message {"operationID": "1719197817604066041", "conversationID": "sg_3187706596", "msg": "sendID:\"imAdmin\" recvID:\"3187706596\" groupID:\"3187706596\" clientMsgID:\"54f49dda390bd96e8c6107a9a8bb869b\" serverMsgID:\"2ffca94228877bc102fe4be01aeba429\" sessionType:3 msgFrom:200 contentType:1509 content:\"{\\\"detail\\\":\\\"{\\\\\\\"group\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"3187706596\\\\\\\",\\\\\\\"groupName\\\\\\\":\\\\\\\"éģčŽ¤įž¤-æĩč¯\\\\\\\",\\\\\\\"notification\\\\\\\":\\\\\\\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\\\\\\\nhttps://github.com/open-kf/rag-gpt\\\\\\\\n\\\\\\\",\\\\\\\"introduction\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"ownerUserID\\\\\\\":\\\\\\\"7497605401\\\\\\\",\\\\\\\"createTime\\\\\\\":1692559307052,\\\\\\\"memberCount\\\\\\\":3902,\\\\\\\"ex\\\\\\\":\\\\\\\"xxx\\\\\\\",\\\\\\\"status\\\\\\\":0,\\\\\\\"creatorUserID\\\\\\\":\\\\\\\"7009965934\\\\\\\",\\\\\\\"groupType\\\\\\\":2,\\\\\\\"needVerification\\\\\\\":0,\\\\\\\"lookMemberInfo\\\\\\\":0,\\\\\\\"applyMemberFriend\\\\\\\":0,\\\\\\\"notificationUpdateTime\\\\\\\":1716968428635,\\\\\\\"notificationUserID\\\\\\\":\\\\\\\"3418577436\\\\\\\"},\\\\\\\"opUser\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"3187706596\\\\\\\",\\\\\\\"userID\\\\\\\":\\\\\\\"imAdmin\\\\\\\",\\\\\\\"roleLevel\\\\\\\":60,\\\\\\\"joinTime\\\\\\\":0,\\\\\\\"nickname\\\\\\\":\\\\\\\"admin\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"appMangerLevel\\\\\\\":2,\\\\\\\"joinSource\\\\\\\":0,\\\\\\\"operatorUserID\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"muteEndTime\\\\\\\":0,\\\\\\\"inviterUserID\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"invitedUserList\\\\\\\":[{\\\\\\\"groupID\\\\\\\":\\\\\\\"3187706596\\\\\\\",\\\\\\\"userID\\\\\\\":\\\\\\\"7122229636\\\\\\\",\\\\\\\"roleLevel\\\\\\\":20,\\\\\\\"joinTime\\\\\\\":1718953432960,\\\\\\\"nickname\\\\\\\":\\\\\\\"11111\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"appMangerLevel\\\\\\\":0,\\\\\\\"joinSource\\\\\\\":2,\\\\\\\"operatorUserID\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"muteEndTime\\\\\\\":0,\\\\\\\"inviterUserID\\\\\\\":\\\\\\\"\\\\\\\"}],\\\\\\\"operationTime\\\\\\\":0,\\\\\\\"groupMemberVersion\\\\\\\":4,\\\\\\\"groupMemberVersionID\\\\\\\":\\\\\\\"6672d39de27166fe77811717\\\\\\\"}\\\"}\" seq:3 sendTime:1718953433112 createTime:1718953433111 options:{key:\"offlinePush\" value:false} options:{key:\"unreadCount\" value:false} offlinePushInfo:{}"}
+2024-06-24 10:57:03.779 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:237] decode message {"operationID": "1719197817604066041", "msg": {"clientMsgID":"54f49dda390bd96e8c6107a9a8bb869b","serverMsgID":"2ffca94228877bc102fe4be01aeba429","createTime":1718953433111,"sendTime":1718953433112,"sessionType":3,"sendID":"imAdmin","recvID":"3187706596","msgFrom":200,"contentType":1509,"senderPlatformID":0,"groupID":"3187706596","seq":3,"isRead":false,"status":2,"notificationElem":{"detail":"{\"group\":{\"groupID\":\"3187706596\",\"groupName\":\"éģčŽ¤įž¤-æĩč¯\",\"notification\":\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\nhttps://github.com/open-kf/rag-gpt\\n\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7497605401\",\"createTime\":1692559307052,\"memberCount\":3902,\"ex\":\"xxx\",\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1716968428635,\"notificationUserID\":\"3418577436\"},\"opUser\":{\"groupID\":\"3187706596\",\"userID\":\"imAdmin\",\"roleLevel\":60,\"joinTime\":0,\"nickname\":\"admin\",\"faceURL\":\"\",\"appMangerLevel\":2,\"joinSource\":0,\"operatorUserID\":\"\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"\"},\"invitedUserList\":[{\"groupID\":\"3187706596\",\"userID\":\"7122229636\",\"roleLevel\":20,\"joinTime\":1718953432960,\"nickname\":\"11111\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"\"}],\"operationTime\":0,\"groupMemberVersion\":4,\"groupMemberVersionID\":\"6672d39de27166fe77811717\"}"},"attachedInfoElem":{"groupHasReadInfo":{"hasReadCount":0,"groupMemberCount":0},"isPrivateChat":false,"burnDuration":0,"hasReadTime":0,"isEncryption":false,"inEncryptStatus":false}}}
+2024-06-24 10:57:03.794 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_members_info", "body": "{\"groupID\":\"3187706596\",\"userIDs\":[\"imAdmin\"]}"}
+2024-06-24 10:57:03.812 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_members_info", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"members\":null}}"}
+2024-06-24 10:57:03.812 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_members_info", "state": "success", "cost time": "17ms"}
+2024-06-24 10:57:03.813 [31mERROR[0m [31m[PID:21964] [0m [version:3.5.13] [conversation_msg/message_check.go:333] get group member info err {"operationID": "1719197817604066041", "error": "nil"}
+2024-06-24 10:57:03.813 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:190] parse message in one conversation {"operationID": "1719197817604066041", "conversationID": "sg_1254300734", "message length": 1}
+2024-06-24 10:57:03.813 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:195] parse message {"operationID": "1719197817604066041", "conversationID": "sg_1254300734", "msg": "sendID:\"imAdmin\" recvID:\"1254300734\" groupID:\"1254300734\" clientMsgID:\"02756e84af58c58d3ad9cd320fed4a65\" serverMsgID:\"58c48ac004f5769a44a8038c1b2e4f95\" sessionType:3 msgFrom:200 contentType:1504 content:\"{\\\"detail\\\":\\\"{\\\\\\\"group\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"1254300734\\\\\\\",\\\\\\\"groupName\\\\\\\":\\\\\\\"fjh\\\\\\\",\\\\\\\"notification\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"introduction\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"ownerUserID\\\\\\\":\\\\\\\"4681582191\\\\\\\",\\\\\\\"createTime\\\\\\\":1713582441625,\\\\\\\"memberCount\\\\\\\":9,\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"status\\\\\\\":0,\\\\\\\"creatorUserID\\\\\\\":\\\\\\\"4681582191\\\\\\\",\\\\\\\"groupType\\\\\\\":2,\\\\\\\"needVerification\\\\\\\":0,\\\\\\\"lookMemberInfo\\\\\\\":0,\\\\\\\"applyMemberFriend\\\\\\\":0,\\\\\\\"notificationUpdateTime\\\\\\\":0,\\\\\\\"notificationUserID\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"quitUser\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"1254300734\\\\\\\",\\\\\\\"userID\\\\\\\":\\\\\\\"2725451243\\\\\\\",\\\\\\\"roleLevel\\\\\\\":20,\\\\\\\"joinTime\\\\\\\":1713582441627,\\\\\\\"nickname\\\\\\\":\\\\\\\"OpenIM-Andrew123\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"appMangerLevel\\\\\\\":0,\\\\\\\"joinSource\\\\\\\":2,\\\\\\\"operatorUserID\\\\\\\":\\\\\\\"4681582191\\\\\\\",\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"muteEndTime\\\\\\\":0,\\\\\\\"inviterUserID\\\\\\\":\\\\\\\"4681582191\\\\\\\"},\\\\\\\"operationTime\\\\\\\":0,\\\\\\\"groupMemberVersion\\\\\\\":2,\\\\\\\"groupMemberVersionID\\\\\\\":\\\\\\\"6672d39de27166fe778116b5\\\\\\\"}\\\"}\" seq:1 sendTime:1718805424661 createTime:1718805424659 options:{key:\"offlinePush\" value:false} options:{key:\"unreadCount\" value:false} offlinePushInfo:{}"}
+2024-06-24 10:57:03.814 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:237] decode message {"operationID": "1719197817604066041", "msg": {"clientMsgID":"02756e84af58c58d3ad9cd320fed4a65","serverMsgID":"58c48ac004f5769a44a8038c1b2e4f95","createTime":1718805424659,"sendTime":1718805424661,"sessionType":3,"sendID":"imAdmin","recvID":"1254300734","msgFrom":200,"contentType":1504,"senderPlatformID":0,"groupID":"1254300734","seq":1,"isRead":false,"status":2,"notificationElem":{"detail":"{\"group\":{\"groupID\":\"1254300734\",\"groupName\":\"fjh\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4681582191\",\"createTime\":1713582441625,\"memberCount\":9,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4681582191\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},\"quitUser\":{\"groupID\":\"1254300734\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1713582441627,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"4681582191\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"4681582191\"},\"operationTime\":0,\"groupMemberVersion\":2,\"groupMemberVersionID\":\"6672d39de27166fe778116b5\"}"},"attachedInfoElem":{"groupHasReadInfo":{"hasReadCount":0,"groupMemberCount":0},"isPrivateChat":false,"burnDuration":0,"hasReadTime":0,"isEncryption":false,"inEncryptStatus":false}}}
+2024-06-24 10:57:03.827 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_members_info", "body": "{\"groupID\":\"1254300734\",\"userIDs\":[\"imAdmin\"]}"}
+2024-06-24 10:57:03.846 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_members_info", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"members\":null}}"}
+2024-06-24 10:57:03.848 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_members_info", "state": "success", "cost time": "20ms"}
+2024-06-24 10:57:03.848 [31mERROR[0m [31m[PID:21964] [0m [version:3.5.13] [conversation_msg/message_check.go:333] get group member info err {"operationID": "1719197817604066041", "error": "nil"}
+2024-06-24 10:57:03.849 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:190] parse message in one conversation {"operationID": "1719197817604066041", "conversationID": "sg_3896488295", "message length": 1}
+2024-06-24 10:57:03.849 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:195] parse message {"operationID": "1719197817604066041", "conversationID": "sg_3896488295", "msg": "sendID:\"imAdmin\" recvID:\"3896488295\" groupID:\"3896488295\" clientMsgID:\"dfc06971a5ff46e072117247b92b68e6\" serverMsgID:\"f57eb140f799156f77187ed2d03754d5\" sessionType:3 msgFrom:200 contentType:1504 content:\"{\\\"detail\\\":\\\"{\\\\\\\"group\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"3896488295\\\\\\\",\\\\\\\"groupName\\\\\\\":\\\\\\\"imæĩč¯\\\\\\\",\\\\\\\"notification\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"introduction\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"ownerUserID\\\\\\\":\\\\\\\"3862147424\\\\\\\",\\\\\\\"createTime\\\\\\\":1704805511573,\\\\\\\"memberCount\\\\\\\":9,\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"status\\\\\\\":0,\\\\\\\"creatorUserID\\\\\\\":\\\\\\\"3862147424\\\\\\\",\\\\\\\"groupType\\\\\\\":2,\\\\\\\"needVerification\\\\\\\":0,\\\\\\\"lookMemberInfo\\\\\\\":0,\\\\\\\"applyMemberFriend\\\\\\\":0,\\\\\\\"notificationUpdateTime\\\\\\\":0,\\\\\\\"notificationUserID\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"quitUser\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"3896488295\\\\\\\",\\\\\\\"userID\\\\\\\":\\\\\\\"2725451243\\\\\\\",\\\\\\\"roleLevel\\\\\\\":20,\\\\\\\"joinTime\\\\\\\":1704805511574,\\\\\\\"nickname\\\\\\\":\\\\\\\"OpenIM-Andrew123\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"appMangerLevel\\\\\\\":0,\\\\\\\"joinSource\\\\\\\":2,\\\\\\\"operatorUserID\\\\\\\":\\\\\\\"3862147424\\\\\\\",\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"muteEndTime\\\\\\\":0,\\\\\\\"inviterUserID\\\\\\\":\\\\\\\"3862147424\\\\\\\"},\\\\\\\"operationTime\\\\\\\":0,\\\\\\\"groupMemberVersion\\\\\\\":2,\\\\\\\"groupMemberVersionID\\\\\\\":\\\\\\\"6672d39de27166fe778116af\\\\\\\"}\\\"}\" seq:1 sendTime:1718801595913 createTime:1718801595912 options:{key:\"offlinePush\" value:false} options:{key:\"unreadCount\" value:false} offlinePushInfo:{}"}
+2024-06-24 10:57:03.852 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:237] decode message {"operationID": "1719197817604066041", "msg": {"clientMsgID":"dfc06971a5ff46e072117247b92b68e6","serverMsgID":"f57eb140f799156f77187ed2d03754d5","createTime":1718801595912,"sendTime":1718801595913,"sessionType":3,"sendID":"imAdmin","recvID":"3896488295","msgFrom":200,"contentType":1504,"senderPlatformID":0,"groupID":"3896488295","seq":1,"isRead":false,"status":2,"notificationElem":{"detail":"{\"group\":{\"groupID\":\"3896488295\",\"groupName\":\"imæĩč¯\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3862147424\",\"createTime\":1704805511573,\"memberCount\":9,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3862147424\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},\"quitUser\":{\"groupID\":\"3896488295\",\"userID\":\"2725451243\",\"roleLevel\":20,\"joinTime\":1704805511574,\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"3862147424\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"3862147424\"},\"operationTime\":0,\"groupMemberVersion\":2,\"groupMemberVersionID\":\"6672d39de27166fe778116af\"}"},"attachedInfoElem":{"groupHasReadInfo":{"hasReadCount":0,"groupMemberCount":0},"isPrivateChat":false,"burnDuration":0,"hasReadTime":0,"isEncryption":false,"inEncryptStatus":false}}}
+2024-06-24 10:57:03.870 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_members_info", "body": "{\"groupID\":\"3896488295\",\"userIDs\":[\"imAdmin\"]}"}
+2024-06-24 10:57:03.892 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_members_info", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"members\":null}}"}
+2024-06-24 10:57:03.893 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_members_info", "state": "success", "cost time": "22ms"}
+2024-06-24 10:57:03.893 [31mERROR[0m [31m[PID:21964] [0m [version:3.5.13] [conversation_msg/message_check.go:333] get group member info err {"operationID": "1719197817604066041", "error": "nil"}
+2024-06-24 10:57:03.893 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:190] parse message in one conversation {"operationID": "1719197817604066041", "conversationID": "sg_3926645279", "message length": 1}
+2024-06-24 10:57:03.894 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:195] parse message {"operationID": "1719197817604066041", "conversationID": "sg_3926645279", "msg": "sendID:\"imAdmin\" recvID:\"3926645279\" groupID:\"3926645279\" clientMsgID:\"b7312f062ea8c5203a747f577d891096\" serverMsgID:\"c6d35a7f550bda5f52d74f17281dc8a3\" sessionType:3 msgFrom:200 contentType:1507 content:\"{\\\"detail\\\":\\\"{\\\\\\\"group\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"3926645279\\\\\\\",\\\\\\\"groupName\\\\\\\":\\\\\\\"yo123\\\\\\\",\\\\\\\"notification\\\\\\\":\\\\\\\"new notification\\\\\\\",\\\\\\\"introduction\\\\\\\":\\\\\\\"new notification\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"faceURL url\\\\\\\",\\\\\\\"ownerUserID\\\\\\\":\\\\\\\"1695766238\\\\\\\",\\\\\\\"createTime\\\\\\\":1718952270504,\\\\\\\"memberCount\\\\\\\":2,\\\\\\\"ex\\\\\\\":\\\\\\\"new ex\\\\\\\",\\\\\\\"status\\\\\\\":0,\\\\\\\"creatorUserID\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"groupType\\\\\\\":2,\\\\\\\"needVerification\\\\\\\":1,\\\\\\\"lookMemberInfo\\\\\\\":1,\\\\\\\"applyMemberFriend\\\\\\\":1,\\\\\\\"notificationUpdateTime\\\\\\\":1718968191355,\\\\\\\"notificationUserID\\\\\\\":\\\\\\\"imAdmin\\\\\\\"},\\\\\\\"opUser\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"3926645279\\\\\\\",\\\\\\\"userID\\\\\\\":\\\\\\\"imAdmin\\\\\\\",\\\\\\\"roleLevel\\\\\\\":60,\\\\\\\"joinTime\\\\\\\":0,\\\\\\\"nickname\\\\\\\":\\\\\\\"admin\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"appMangerLevel\\\\\\\":2,\\\\\\\"joinSource\\\\\\\":0,\\\\\\\"operatorUserID\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"muteEndTime\\\\\\\":0,\\\\\\\"inviterUserID\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"newGroupOwner\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"3926645279\\\\\\\",\\\\\\\"userID\\\\\\\":\\\\\\\"1695766238\\\\\\\",\\\\\\\"roleLevel\\\\\\\":100,\\\\\\\"joinTime\\\\\\\":1718968462104,\\\\\\\"nickname\\\\\\\":\\\\\\\"OpenIM-Gordon\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\\\\\\\",\\\\\\\"appMangerLevel\\\\\\\":0,\\\\\\\"joinSource\\\\\\\":2,\\\\\\\"operatorUserID\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"muteEndTime\\\\\\\":0,\\\\\\\"inviterUserID\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"oldGroupOwner\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"operationTime\\\\\\\":0,\\\\\\\"oldGroupOwnerInfo\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"3926645279\\\\\\\",\\\\\\\"userID\\\\\\\":\\\\\\\"2882899447\\\\\\\",\\\\\\\"roleLevel\\\\\\\":20,\\\\\\\"joinTime\\\\\\\":1718952270506,\\\\\\\"nickname\\\\\\\":\\\\\\\"OpenIM-blooming\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\\\\\\\",\\\\\\\"appMangerLevel\\\\\\\":0,\\\\\\\"joinSource\\\\\\\":2,\\\\\\\"operatorUserID\\\\\\\":\\\\\\\"imAdmin\\\\\\\",\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"muteEndTime\\\\\\\":0,\\\\\\\"inviterUserID\\\\\\\":\\\\\\\"imAdmin\\\\\\\"},\\\\\\\"groupMemberVersion\\\\\\\":24,\\\\\\\"groupMemberVersionID\\\\\\\":\\\\\\\"6675214eac4b76626468fef5\\\\\\\"}\\\"}\" seq:18 sendTime:1719040920868 createTime:1719040920865 options:{key:\"offlinePush\" value:false} options:{key:\"unreadCount\" value:false} offlinePushInfo:{}"}
+2024-06-24 10:57:03.897 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:237] decode message {"operationID": "1719197817604066041", "msg": {"clientMsgID":"b7312f062ea8c5203a747f577d891096","serverMsgID":"c6d35a7f550bda5f52d74f17281dc8a3","createTime":1719040920865,"sendTime":1719040920868,"sessionType":3,"sendID":"imAdmin","recvID":"3926645279","msgFrom":200,"contentType":1507,"senderPlatformID":0,"groupID":"3926645279","seq":18,"isRead":false,"status":2,"notificationElem":{"detail":"{\"group\":{\"groupID\":\"3926645279\",\"groupName\":\"yo123\",\"notification\":\"new notification\",\"introduction\":\"new notification\",\"faceURL\":\"faceURL url\",\"ownerUserID\":\"1695766238\",\"createTime\":1718952270504,\"memberCount\":2,\"ex\":\"new ex\",\"status\":0,\"creatorUserID\":\"\",\"groupType\":2,\"needVerification\":1,\"lookMemberInfo\":1,\"applyMemberFriend\":1,\"notificationUpdateTime\":1718968191355,\"notificationUserID\":\"imAdmin\"},\"opUser\":{\"groupID\":\"3926645279\",\"userID\":\"imAdmin\",\"roleLevel\":60,\"joinTime\":0,\"nickname\":\"admin\",\"faceURL\":\"\",\"appMangerLevel\":2,\"joinSource\":0,\"operatorUserID\":\"\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"\"},\"newGroupOwner\":{\"groupID\":\"3926645279\",\"userID\":\"1695766238\",\"roleLevel\":100,\"joinTime\":1718968462104,\"nickname\":\"OpenIM-Gordon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"\"},\"oldGroupOwner\":\"\",\"operationTime\":0,\"oldGroupOwnerInfo\":{\"groupID\":\"3926645279\",\"userID\":\"2882899447\",\"roleLevel\":20,\"joinTime\":1718952270506,\"nickname\":\"OpenIM-blooming\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\",\"appMangerLevel\":0,\"joinSource\":2,\"operatorUserID\":\"imAdmin\",\"ex\":\"\",\"muteEndTime\":0,\"inviterUserID\":\"imAdmin\"},\"groupMemberVersion\":24,\"groupMemberVersionID\":\"6675214eac4b76626468fef5\"}"},"attachedInfoElem":{"groupHasReadInfo":{"hasReadCount":0,"groupMemberCount":0},"isPrivateChat":false,"burnDuration":0,"hasReadTime":0,"isEncryption":false,"inEncryptStatus":false}}}
+2024-06-24 10:57:03.917 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_members_info", "body": "{\"groupID\":\"3926645279\",\"userIDs\":[\"imAdmin\"]}"}
+2024-06-24 10:57:03.939 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_group_members_info", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"members\":null}}"}
+2024-06-24 10:57:03.940 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_group_members_info", "state": "success", "cost time": "22ms"}
+2024-06-24 10:57:03.940 [31mERROR[0m [31m[PID:21964] [0m [version:3.5.13] [conversation_msg/message_check.go:333] get group member info err {"operationID": "1719197817604066041", "error": "nil"}
+2024-06-24 10:57:03.940 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:190] parse message in one conversation {"operationID": "1719197817604066041", "conversationID": "si_1695766238_7122229636", "message length": 1}
+2024-06-24 10:57:03.940 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:195] parse message {"operationID": "1719197817604066041", "conversationID": "si_1695766238_7122229636", "msg": "sendID:\"1695766238\" recvID:\"7122229636\" clientMsgID:\"72d26994e64cd4cd2b5c31e19ac8d610\" serverMsgID:\"2ea8653d8a929527d4f8c27cc76f9a47\" sessionType:1 msgFrom:200 contentType:1201 content:\"{\\\"detail\\\":\\\"{\\\\\\\"fromToUserID\\\\\\\":{\\\\\\\"fromUserID\\\\\\\":\\\\\\\"7122229636\\\\\\\",\\\\\\\"toUserID\\\\\\\":\\\\\\\"1695766238\\\\\\\"},\\\\\\\"handleMsg\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"friendVersion\\\\\\\":0,\\\\\\\"friendVersionID\\\\\\\":\\\\\\\"\\\\\\\"}\\\"}\" seq:1 sendTime:1718953432952 createTime:1718953432951 isRead:true options:{key:\"offlinePush\" value:true} options:{key:\"unreadCount\" value:false} offlinePushInfo:{}"}
+2024-06-24 10:57:03.941 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:237] decode message {"operationID": "1719197817604066041", "msg": {"clientMsgID":"72d26994e64cd4cd2b5c31e19ac8d610","serverMsgID":"2ea8653d8a929527d4f8c27cc76f9a47","createTime":1718953432951,"sendTime":1718953432952,"sessionType":1,"sendID":"1695766238","recvID":"7122229636","msgFrom":200,"contentType":1201,"senderPlatformID":0,"seq":1,"isRead":true,"status":2,"notificationElem":{"detail":"{\"fromToUserID\":{\"fromUserID\":\"7122229636\",\"toUserID\":\"1695766238\"},\"handleMsg\":\"\",\"friendVersion\":0,\"friendVersionID\":\"\"}"},"attachedInfoElem":{"groupHasReadInfo":{"hasReadCount":0,"groupMemberCount":0},"isPrivateChat":false,"burnDuration":0,"hasReadTime":0,"isEncryption":false,"inEncryptStatus":false}}}
+2024-06-24 10:57:03.954 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:252] sync message {"operationID": "1719197817604066041", "msg": {"clientMsgID":"72d26994e64cd4cd2b5c31e19ac8d610","serverMsgID":"2ea8653d8a929527d4f8c27cc76f9a47","createTime":1718953432951,"sendTime":1718953432952,"sessionType":1,"sendID":"1695766238","recvID":"7122229636","msgFrom":200,"contentType":1201,"senderPlatformID":0,"seq":1,"isRead":true,"status":2,"notificationElem":{"detail":"{\"fromToUserID\":{\"fromUserID\":\"7122229636\",\"toUserID\":\"1695766238\"},\"handleMsg\":\"\",\"friendVersion\":0,\"friendVersionID\":\"\"}"},"attachedInfoElem":{"groupHasReadInfo":{"hasReadCount":0,"groupMemberCount":0},"isPrivateChat":false,"burnDuration":0,"hasReadTime":0,"isEncryption":false,"inEncryptStatus":false}}}
+2024-06-24 10:57:03.955 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:267] updateConversation msg {"operationID": "1719197817604066041", "message": "sendID:\"1695766238\" recvID:\"7122229636\" clientMsgID:\"72d26994e64cd4cd2b5c31e19ac8d610\" serverMsgID:\"2ea8653d8a929527d4f8c27cc76f9a47\" sessionType:1 msgFrom:200 contentType:1201 content:\"{\\\"detail\\\":\\\"{\\\\\\\"fromToUserID\\\\\\\":{\\\\\\\"fromUserID\\\\\\\":\\\\\\\"7122229636\\\\\\\",\\\\\\\"toUserID\\\\\\\":\\\\\\\"1695766238\\\\\\\"},\\\\\\\"handleMsg\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"friendVersion\\\\\\\":0,\\\\\\\"friendVersionID\\\\\\\":\\\\\\\"\\\\\\\"}\\\"}\" seq:1 sendTime:1718953432952 createTime:1718953432951 isRead:true options:{key:\"offlinePush\" value:true} options:{key:\"unreadCount\" value:false} offlinePushInfo:{}", "conversation": {"conversationID":"si_1695766238_7122229636","conversationType":1,"userID":"7122229636","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"{\"clientMsgID\":\"72d26994e64cd4cd2b5c31e19ac8d610\",\"serverMsgID\":\"2ea8653d8a929527d4f8c27cc76f9a47\",\"createTime\":1718953432951,\"sendTime\":1718953432952,\"sessionType\":1,\"sendID\":\"1695766238\",\"recvID\":\"7122229636\",\"msgFrom\":200,\"contentType\":1201,\"senderPlatformID\":0,\"seq\":1,\"isRead\":true,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"fromToUserID\\\":{\\\"fromUserID\\\":\\\"7122229636\\\",\\\"toUserID\\\":\\\"1695766238\\\"},\\\"handleMsg\\\":\\\"\\\",\\\"friendVersion\\\":0,\\\"friendVersionID\\\":\\\"\\\"}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}}","latestMsgSendTime":1718953432952,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:03.956 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:328] listToMap: {"operationID": "1719197817604066041", "local conversation": [], "generated c map": {"sg_105081877":{"conversationID":"sg_105081877","conversationType":3,"userID":"","groupID":"105081877","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"{\"clientMsgID\":\"edc317755ca9c374d7a42e270abe5bc3\",\"serverMsgID\":\"db07a9027981f628e056ba6f18774eff\",\"createTime\":1718937610489,\"sendTime\":1718937610490,\"sessionType\":3,\"sendID\":\"imAdmin\",\"recvID\":\"105081877\",\"msgFrom\":200,\"contentType\":1504,\"senderPlatformID\":0,\"groupID\":\"105081877\",\"seq\":2,\"isRead\":false,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"group\\\":{\\\"groupID\\\":\\\"105081877\\\",\\\"groupName\\\":\\\"d\\\",\\\"notification\\\":\\\"\\\",\\\"introduction\\\":\\\"\\\",\\\"faceURL\\\":\\\"\\\",\\\"ownerUserID\\\":\\\"5248385191\\\",\\\"createTime\\\":1710490825413,\\\"memberCount\\\":5,\\\"ex\\\":\\\"\\\",\\\"status\\\":0,\\\"creatorUserID\\\":\\\"5248385191\\\",\\\"groupType\\\":2,\\\"needVerification\\\":0,\\\"lookMemberInfo\\\":0,\\\"applyMemberFriend\\\":0,\\\"notificationUpdateTime\\\":0,\\\"notificationUserID\\\":\\\"\\\"},\\\"quitUser\\\":{\\\"groupID\\\":\\\"105081877\\\",\\\"userID\\\":\\\"5292156665\\\",\\\"roleLevel\\\":20,\\\"joinTime\\\":1710490848503,\\\"nickname\\\":\\\"Oliver\\\",\\\"faceURL\\\":\\\"https://web.rentsoft.cn/api_enterprise/object/5292156665/storage/emulated/0/Android/data/io.openim.android.demo/cache/1706265155247/1706265148858.png\\\",\\\"appMangerLevel\\\":0,\\\"joinSource\\\":2,\\\"operatorUserID\\\":\\\"5248385191\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":0,\\\"inviterUserID\\\":\\\"5248385191\\\"},\\\"operationTime\\\":0,\\\"groupMemberVersion\\\":2,\\\"groupMemberVersionID\\\":\\\"6672d39de27166fe77811753\\\"}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}}","latestMsgSendTime":1718937610490,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},"sg_1177987017":{"conversationID":"sg_1177987017","conversationType":3,"userID":"","groupID":"1177987017","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"{\"clientMsgID\":\"93ce372f1170782d5961e3831c9e7d30\",\"serverMsgID\":\"c5ee404e47c5b104d38baae24bea8d98\",\"createTime\":1718373366841,\"sendTime\":1718373366842,\"sessionType\":3,\"sendID\":\"imAdmin\",\"recvID\":\"1177987017\",\"msgFrom\":200,\"contentType\":1504,\"senderPlatformID\":0,\"groupID\":\"1177987017\",\"seq\":2,\"isRead\":false,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"group\\\":{\\\"groupID\\\":\\\"1177987017\\\",\\\"groupName\\\":\\\"123123\\\",\\\"notification\\\":\\\"\\\",\\\"introduction\\\":\\\"\\\",\\\"faceURL\\\":\\\"\\\",\\\"ownerUserID\\\":\\\"1695766238\\\",\\\"createTime\\\":1705046435331,\\\"memberCount\\\":1,\\\"ex\\\":\\\"\\\",\\\"status\\\":0,\\\"creatorUserID\\\":\\\"1695766238\\\",\\\"groupType\\\":2,\\\"needVerification\\\":0,\\\"lookMemberInfo\\\":0,\\\"applyMemberFriend\\\":0,\\\"notificationUpdateTime\\\":0,\\\"notificationUserID\\\":\\\"\\\"},\\\"quitUser\\\":{\\\"groupID\\\":\\\"1177987017\\\",\\\"userID\\\":\\\"4911414951\\\",\\\"roleLevel\\\":20,\\\"joinTime\\\":1705046985971,\\\"nickname\\\":\\\"OpenimAnd-Jane\\\",\\\"faceURL\\\":\\\"https://web.rentsoft.cn/api_enterprise/object/4911414951/image_2024-05-06-20-59.111.png\\\",\\\"appMangerLevel\\\":0,\\\"joinSource\\\":2,\\\"operatorUserID\\\":\\\"1695766238\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":0,\\\"inviterUserID\\\":\\\"1695766238\\\"},\\\"operationTime\\\":0,\\\"groupMemberVersion\\\":3}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}}","latestMsgSendTime":1718373366842,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},"sg_1254300734":{"conversationID":"sg_1254300734","conversationType":3,"userID":"","groupID":"1254300734","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"{\"clientMsgID\":\"02756e84af58c58d3ad9cd320fed4a65\",\"serverMsgID\":\"58c48ac004f5769a44a8038c1b2e4f95\",\"createTime\":1718805424659,\"sendTime\":1718805424661,\"sessionType\":3,\"sendID\":\"imAdmin\",\"recvID\":\"1254300734\",\"msgFrom\":200,\"contentType\":1504,\"senderPlatformID\":0,\"groupID\":\"1254300734\",\"seq\":1,\"isRead\":false,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"group\\\":{\\\"groupID\\\":\\\"1254300734\\\",\\\"groupName\\\":\\\"fjh\\\",\\\"notification\\\":\\\"\\\",\\\"introduction\\\":\\\"\\\",\\\"faceURL\\\":\\\"\\\",\\\"ownerUserID\\\":\\\"4681582191\\\",\\\"createTime\\\":1713582441625,\\\"memberCount\\\":9,\\\"ex\\\":\\\"\\\",\\\"status\\\":0,\\\"creatorUserID\\\":\\\"4681582191\\\",\\\"groupType\\\":2,\\\"needVerification\\\":0,\\\"lookMemberInfo\\\":0,\\\"applyMemberFriend\\\":0,\\\"notificationUpdateTime\\\":0,\\\"notificationUserID\\\":\\\"\\\"},\\\"quitUser\\\":{\\\"groupID\\\":\\\"1254300734\\\",\\\"userID\\\":\\\"2725451243\\\",\\\"roleLevel\\\":20,\\\"joinTime\\\":1713582441627,\\\"nickname\\\":\\\"OpenIM-Andrew123\\\",\\\"faceURL\\\":\\\"\\\",\\\"appMangerLevel\\\":0,\\\"joinSource\\\":2,\\\"operatorUserID\\\":\\\"4681582191\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":0,\\\"inviterUserID\\\":\\\"4681582191\\\"},\\\"operationTime\\\":0,\\\"groupMemberVersion\\\":2,\\\"groupMemberVersionID\\\":\\\"6672d39de27166fe778116b5\\\"}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}}","latestMsgSendTime":1718805424661,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},"sg_161019322":{"conversationID":"sg_161019322","conversationType":3,"userID":"","groupID":"161019322","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"{\"clientMsgID\":\"a3a3d6e0aeaf5ad4b2fdbe7707d6a185\",\"serverMsgID\":\"96d8ed55c12579dd32a7631eeedb0eaa\",\"createTime\":1718850240266,\"sendTime\":1718850240267,\"sessionType\":3,\"sendID\":\"imAdmin\",\"recvID\":\"161019322\",\"msgFrom\":200,\"contentType\":1504,\"senderPlatformID\":0,\"groupID\":\"161019322\",\"seq\":3,\"isRead\":false,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"group\\\":{\\\"groupID\\\":\\\"161019322\\\",\\\"groupName\\\":\\\"æĩč¯įž¤\\\",\\\"notification\\\":\\\"\\\",\\\"introduction\\\":\\\"\\\",\\\"faceURL\\\":\\\"\\\",\\\"ownerUserID\\\":\\\"3923864156\\\",\\\"createTime\\\":1716449051809,\\\"memberCount\\\":2,\\\"ex\\\":\\\"\\\",\\\"status\\\":0,\\\"creatorUserID\\\":\\\"3923864156\\\",\\\"groupType\\\":2,\\\"needVerification\\\":0,\\\"lookMemberInfo\\\":0,\\\"applyMemberFriend\\\":0,\\\"notificationUpdateTime\\\":0,\\\"notificationUserID\\\":\\\"\\\"},\\\"quitUser\\\":{\\\"groupID\\\":\\\"161019322\\\",\\\"userID\\\":\\\"2725451243\\\",\\\"roleLevel\\\":20,\\\"joinTime\\\":1716449051811,\\\"nickname\\\":\\\"OpenIM-Andrew123\\\",\\\"faceURL\\\":\\\"\\\",\\\"appMangerLevel\\\":0,\\\"joinSource\\\":2,\\\"operatorUserID\\\":\\\"3923864156\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":0,\\\"inviterUserID\\\":\\\"3923864156\\\"},\\\"operationTime\\\":0,\\\"groupMemberVersion\\\":4,\\\"groupMemberVersionID\\\":\\\"6672d39de27166fe7781173f\\\"}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}}","latestMsgSendTime":1718850240267,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},"sg_2300748497":{"conversationID":"sg_2300748497","conversationType":3,"userID":"","groupID":"2300748497","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"{\"clientMsgID\":\"f2abda0ba3a3460dd9e06350b2fd0bdb\",\"serverMsgID\":\"d35e1a97576493ec2ab2ff3d077f4cdc\",\"createTime\":1718718570198,\"sendTime\":1718718570199,\"sessionType\":3,\"sendID\":\"imAdmin\",\"recvID\":\"2300748497\",\"msgFrom\":200,\"contentType\":1504,\"senderPlatformID\":0,\"groupID\":\"2300748497\",\"seq\":2,\"isRead\":false,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"group\\\":{\\\"groupID\\\":\\\"2300748497\\\",\\\"groupName\\\":\\\"æĩč¯\\\",\\\"notification\\\":\\\"\\\",\\\"introduction\\\":\\\"\\\",\\\"faceURL\\\":\\\"\\\",\\\"ownerUserID\\\":\\\"2738308088\\\",\\\"createTime\\\":1692906300817,\\\"memberCount\\\":5,\\\"ex\\\":\\\"\\\",\\\"status\\\":0,\\\"creatorUserID\\\":\\\"2738308088\\\",\\\"groupType\\\":2,\\\"needVerification\\\":0,\\\"lookMemberInfo\\\":0,\\\"applyMemberFriend\\\":0,\\\"notificationUpdateTime\\\":-28800000,\\\"notificationUserID\\\":\\\"\\\"},\\\"quitUser\\\":{\\\"groupID\\\":\\\"2300748497\\\",\\\"userID\\\":\\\"3418577436\\\",\\\"roleLevel\\\":20,\\\"joinTime\\\":1692906300820,\\\"nickname\\\":\\\"OpenIM-skiffer\\\",\\\"faceURL\\\":\\\"https://web.rentsoft.cn/api_enterprise/object/3418577436/BD14C2C1956AB2E1BD8A9F33E76220BE (1).jpg\\\",\\\"appMangerLevel\\\":0,\\\"joinSource\\\":2,\\\"operatorUserID\\\":\\\"2738308088\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":-28800000,\\\"inviterUserID\\\":\\\"2738308088\\\"},\\\"operationTime\\\":0,\\\"groupMemberVersion\\\":2,\\\"groupMemberVersionID\\\":\\\"66719001589c7c5fe709fe75\\\"}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}}","latestMsgSendTime":1718718570199,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},"sg_2836218947":{"conversationID":"sg_2836218947","conversationType":3,"userID":"","groupID":"2836218947","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"{\"clientMsgID\":\"06284c5a5f10d1f472f5f8bc938b47a3\",\"serverMsgID\":\"bba734e36558164cfb5e40206ba26259\",\"createTime\":1718936592922,\"sendTime\":1718936592923,\"sessionType\":3,\"sendID\":\"imAdmin\",\"recvID\":\"2836218947\",\"msgFrom\":200,\"contentType\":1504,\"senderPlatformID\":0,\"groupID\":\"2836218947\",\"seq\":2,\"isRead\":false,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"group\\\":{\\\"groupID\\\":\\\"2836218947\\\",\\\"groupName\\\":\\\"æĩč¯įž¤įŽĄį\\\",\\\"notification\\\":\\\"\\\",\\\"introduction\\\":\\\"\\\",\\\"faceURL\\\":\\\"\\\",\\\"ownerUserID\\\":\\\"4918276559\\\",\\\"createTime\\\":1715065335408,\\\"memberCount\\\":6,\\\"ex\\\":\\\"\\\",\\\"status\\\":0,\\\"creatorUserID\\\":\\\"4918276559\\\",\\\"groupType\\\":2,\\\"needVerification\\\":0,\\\"lookMemberInfo\\\":1,\\\"applyMemberFriend\\\":1,\\\"notificationUpdateTime\\\":0,\\\"notificationUserID\\\":\\\"\\\"},\\\"quitUser\\\":{\\\"groupID\\\":\\\"2836218947\\\",\\\"userID\\\":\\\"6319015024\\\",\\\"roleLevel\\\":20,\\\"joinTime\\\":1715065335409,\\\"nickname\\\":\\\"OpenIM-wind\\\",\\\"faceURL\\\":\\\"https://web.rentsoft.cn/api_enterprise/object/6319015024/pexels-photo-2174974.webp\\\",\\\"appMangerLevel\\\":0,\\\"joinSource\\\":2,\\\"operatorUserID\\\":\\\"4918276559\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":0,\\\"inviterUserID\\\":\\\"4918276559\\\"},\\\"operationTime\\\":0,\\\"groupMemberVersion\\\":3,\\\"groupMemberVersionID\\\":\\\"6672d39de27166fe7781170c\\\"}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}}","latestMsgSendTime":1718936592923,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},"sg_3187706596":{"conversationID":"sg_3187706596","conversationType":3,"userID":"","groupID":"3187706596","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"{\"clientMsgID\":\"54f49dda390bd96e8c6107a9a8bb869b\",\"serverMsgID\":\"2ffca94228877bc102fe4be01aeba429\",\"createTime\":1718953433111,\"sendTime\":1718953433112,\"sessionType\":3,\"sendID\":\"imAdmin\",\"recvID\":\"3187706596\",\"msgFrom\":200,\"contentType\":1509,\"senderPlatformID\":0,\"groupID\":\"3187706596\",\"seq\":3,\"isRead\":false,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"group\\\":{\\\"groupID\\\":\\\"3187706596\\\",\\\"groupName\\\":\\\"éģčŽ¤įž¤-æĩč¯\\\",\\\"notification\\\":\\\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\\\nhttps://github.com/open-kf/rag-gpt\\\\n\\\",\\\"introduction\\\":\\\"\\\",\\\"faceURL\\\":\\\"\\\",\\\"ownerUserID\\\":\\\"7497605401\\\",\\\"createTime\\\":1692559307052,\\\"memberCount\\\":3902,\\\"ex\\\":\\\"xxx\\\",\\\"status\\\":0,\\\"creatorUserID\\\":\\\"7009965934\\\",\\\"groupType\\\":2,\\\"needVerification\\\":0,\\\"lookMemberInfo\\\":0,\\\"applyMemberFriend\\\":0,\\\"notificationUpdateTime\\\":1716968428635,\\\"notificationUserID\\\":\\\"3418577436\\\"},\\\"opUser\\\":{\\\"groupID\\\":\\\"3187706596\\\",\\\"userID\\\":\\\"imAdmin\\\",\\\"roleLevel\\\":60,\\\"joinTime\\\":0,\\\"nickname\\\":\\\"admin\\\",\\\"faceURL\\\":\\\"\\\",\\\"appMangerLevel\\\":2,\\\"joinSource\\\":0,\\\"operatorUserID\\\":\\\"\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":0,\\\"inviterUserID\\\":\\\"\\\"},\\\"invitedUserList\\\":[{\\\"groupID\\\":\\\"3187706596\\\",\\\"userID\\\":\\\"7122229636\\\",\\\"roleLevel\\\":20,\\\"joinTime\\\":1718953432960,\\\"nickname\\\":\\\"11111\\\",\\\"faceURL\\\":\\\"\\\",\\\"appMangerLevel\\\":0,\\\"joinSource\\\":2,\\\"operatorUserID\\\":\\\"\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":0,\\\"inviterUserID\\\":\\\"\\\"}],\\\"operationTime\\\":0,\\\"groupMemberVersion\\\":4,\\\"groupMemberVersionID\\\":\\\"6672d39de27166fe77811717\\\"}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}}","latestMsgSendTime":1718953433112,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},"sg_3896488295":{"conversationID":"sg_3896488295","conversationType":3,"userID":"","groupID":"3896488295","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"{\"clientMsgID\":\"dfc06971a5ff46e072117247b92b68e6\",\"serverMsgID\":\"f57eb140f799156f77187ed2d03754d5\",\"createTime\":1718801595912,\"sendTime\":1718801595913,\"sessionType\":3,\"sendID\":\"imAdmin\",\"recvID\":\"3896488295\",\"msgFrom\":200,\"contentType\":1504,\"senderPlatformID\":0,\"groupID\":\"3896488295\",\"seq\":1,\"isRead\":false,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"group\\\":{\\\"groupID\\\":\\\"3896488295\\\",\\\"groupName\\\":\\\"imæĩč¯\\\",\\\"notification\\\":\\\"\\\",\\\"introduction\\\":\\\"\\\",\\\"faceURL\\\":\\\"\\\",\\\"ownerUserID\\\":\\\"3862147424\\\",\\\"createTime\\\":1704805511573,\\\"memberCount\\\":9,\\\"ex\\\":\\\"\\\",\\\"status\\\":0,\\\"creatorUserID\\\":\\\"3862147424\\\",\\\"groupType\\\":2,\\\"needVerification\\\":0,\\\"lookMemberInfo\\\":0,\\\"applyMemberFriend\\\":0,\\\"notificationUpdateTime\\\":0,\\\"notificationUserID\\\":\\\"\\\"},\\\"quitUser\\\":{\\\"groupID\\\":\\\"3896488295\\\",\\\"userID\\\":\\\"2725451243\\\",\\\"roleLevel\\\":20,\\\"joinTime\\\":1704805511574,\\\"nickname\\\":\\\"OpenIM-Andrew123\\\",\\\"faceURL\\\":\\\"\\\",\\\"appMangerLevel\\\":0,\\\"joinSource\\\":2,\\\"operatorUserID\\\":\\\"3862147424\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":0,\\\"inviterUserID\\\":\\\"3862147424\\\"},\\\"operationTime\\\":0,\\\"groupMemberVersion\\\":2,\\\"groupMemberVersionID\\\":\\\"6672d39de27166fe778116af\\\"}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}}","latestMsgSendTime":1718801595913,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},"sg_3926645279":{"conversationID":"sg_3926645279","conversationType":3,"userID":"","groupID":"3926645279","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"{\"clientMsgID\":\"b7312f062ea8c5203a747f577d891096\",\"serverMsgID\":\"c6d35a7f550bda5f52d74f17281dc8a3\",\"createTime\":1719040920865,\"sendTime\":1719040920868,\"sessionType\":3,\"sendID\":\"imAdmin\",\"recvID\":\"3926645279\",\"msgFrom\":200,\"contentType\":1507,\"senderPlatformID\":0,\"groupID\":\"3926645279\",\"seq\":18,\"isRead\":false,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"group\\\":{\\\"groupID\\\":\\\"3926645279\\\",\\\"groupName\\\":\\\"yo123\\\",\\\"notification\\\":\\\"new notification\\\",\\\"introduction\\\":\\\"new notification\\\",\\\"faceURL\\\":\\\"faceURL url\\\",\\\"ownerUserID\\\":\\\"1695766238\\\",\\\"createTime\\\":1718952270504,\\\"memberCount\\\":2,\\\"ex\\\":\\\"new ex\\\",\\\"status\\\":0,\\\"creatorUserID\\\":\\\"\\\",\\\"groupType\\\":2,\\\"needVerification\\\":1,\\\"lookMemberInfo\\\":1,\\\"applyMemberFriend\\\":1,\\\"notificationUpdateTime\\\":1718968191355,\\\"notificationUserID\\\":\\\"imAdmin\\\"},\\\"opUser\\\":{\\\"groupID\\\":\\\"3926645279\\\",\\\"userID\\\":\\\"imAdmin\\\",\\\"roleLevel\\\":60,\\\"joinTime\\\":0,\\\"nickname\\\":\\\"admin\\\",\\\"faceURL\\\":\\\"\\\",\\\"appMangerLevel\\\":2,\\\"joinSource\\\":0,\\\"operatorUserID\\\":\\\"\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":0,\\\"inviterUserID\\\":\\\"\\\"},\\\"newGroupOwner\\\":{\\\"groupID\\\":\\\"3926645279\\\",\\\"userID\\\":\\\"1695766238\\\",\\\"roleLevel\\\":100,\\\"joinTime\\\":1718968462104,\\\"nickname\\\":\\\"OpenIM-Gordon\\\",\\\"faceURL\\\":\\\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\\\",\\\"appMangerLevel\\\":0,\\\"joinSource\\\":2,\\\"operatorUserID\\\":\\\"\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":0,\\\"inviterUserID\\\":\\\"\\\"},\\\"oldGroupOwner\\\":\\\"\\\",\\\"operationTime\\\":0,\\\"oldGroupOwnerInfo\\\":{\\\"groupID\\\":\\\"3926645279\\\",\\\"userID\\\":\\\"2882899447\\\",\\\"roleLevel\\\":20,\\\"joinTime\\\":1718952270506,\\\"nickname\\\":\\\"OpenIM-blooming\\\",\\\"faceURL\\\":\\\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\\\",\\\"appMangerLevel\\\":0,\\\"joinSource\\\":2,\\\"operatorUserID\\\":\\\"imAdmin\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":0,\\\"inviterUserID\\\":\\\"imAdmin\\\"},\\\"groupMemberVersion\\\":24,\\\"groupMemberVersionID\\\":\\\"6675214eac4b76626468fef5\\\"}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}}","latestMsgSendTime":1719040920868,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},"sg_3927081813":{"conversationID":"sg_3927081813","conversationType":3,"userID":"","groupID":"3927081813","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"{\"clientMsgID\":\"bb8f6da7b64c5019d05d11e5498b7ebe\",\"serverMsgID\":\"8377622d22ff842f509a1b8a1b5cf020\",\"createTime\":1718762537771,\"sendTime\":1718762537772,\"sessionType\":3,\"sendID\":\"imAdmin\",\"recvID\":\"3927081813\",\"msgFrom\":200,\"contentType\":1504,\"senderPlatformID\":0,\"groupID\":\"3927081813\",\"seq\":1,\"isRead\":false,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"group\\\":{\\\"groupID\\\":\\\"3927081813\\\",\\\"groupName\\\":\\\"æ°´įĩč´š\\\",\\\"notification\\\":\\\"\\\",\\\"introduction\\\":\\\"\\\",\\\"faceURL\\\":\\\"\\\",\\\"ownerUserID\\\":\\\"2563100730\\\",\\\"createTime\\\":1693003223717,\\\"memberCount\\\":5,\\\"ex\\\":\\\"\\\",\\\"status\\\":0,\\\"creatorUserID\\\":\\\"2563100730\\\",\\\"groupType\\\":2,\\\"needVerification\\\":0,\\\"lookMemberInfo\\\":0,\\\"applyMemberFriend\\\":0,\\\"notificationUpdateTime\\\":-28800000,\\\"notificationUserID\\\":\\\"\\\"},\\\"quitUser\\\":{\\\"groupID\\\":\\\"3927081813\\\",\\\"userID\\\":\\\"5292156665\\\",\\\"roleLevel\\\":20,\\\"joinTime\\\":1693003223718,\\\"nickname\\\":\\\"Oliver\\\",\\\"faceURL\\\":\\\"https://web.rentsoft.cn/api_enterprise/object/5292156665/storage/emulated/0/Android/data/io.openim.android.demo/cache/1706265155247/1706265148858.png\\\",\\\"appMangerLevel\\\":0,\\\"joinSource\\\":2,\\\"operatorUserID\\\":\\\"2563100730\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":-28800000,\\\"inviterUserID\\\":\\\"2563100730\\\"},\\\"operationTime\\\":0,\\\"groupMemberVersion\\\":1,\\\"groupMemberVersionID\\\":\\\"66723c29589c7c5fe709fe78\\\"}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}}","latestMsgSendTime":1718762537772,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},"sg_84614448":{"conversationID":"sg_84614448","conversationType":3,"userID":"","groupID":"84614448","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"{\"clientMsgID\":\"dc01b2472ea8368fc12ed589b3483a16\",\"serverMsgID\":\"b920d2060e953bd0975219a79b17bb48\",\"createTime\":1718717329747,\"sendTime\":1718717329749,\"sessionType\":3,\"sendID\":\"imAdmin\",\"recvID\":\"84614448\",\"msgFrom\":200,\"contentType\":1504,\"senderPlatformID\":0,\"groupID\":\"84614448\",\"seq\":2,\"isRead\":false,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"group\\\":{\\\"groupID\\\":\\\"84614448\\\",\\\"groupName\\\":\\\"įž¤č两æĄä¸åæļ厞č¯ģ\\\",\\\"notification\\\":\\\"\\\",\\\"introduction\\\":\\\"\\\",\\\"faceURL\\\":\\\"\\\",\\\"ownerUserID\\\":\\\"1695766238\\\",\\\"createTime\\\":1697015456454,\\\"memberCount\\\":1,\\\"ex\\\":\\\"\\\",\\\"status\\\":0,\\\"creatorUserID\\\":\\\"1695766238\\\",\\\"groupType\\\":2,\\\"needVerification\\\":0,\\\"lookMemberInfo\\\":0,\\\"applyMemberFriend\\\":0,\\\"notificationUpdateTime\\\":0,\\\"notificationUserID\\\":\\\"\\\"},\\\"quitUser\\\":{\\\"groupID\\\":\\\"84614448\\\",\\\"userID\\\":\\\"7009965934\\\",\\\"roleLevel\\\":20,\\\"joinTime\\\":1697015456456,\\\"nickname\\\":\\\"đâË¡Íāŧ¡ÍË*\\\",\\\"faceURL\\\":\\\"https://web.rentsoft.cn/api_enterprise/object/7009965934/image_cropper_1697097350170.jpg\\\",\\\"appMangerLevel\\\":0,\\\"joinSource\\\":2,\\\"operatorUserID\\\":\\\"1695766238\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":0,\\\"inviterUserID\\\":\\\"1695766238\\\"},\\\"operationTime\\\":0,\\\"groupMemberVersion\\\":3,\\\"groupMemberVersionID\\\":\\\"666c4cf4959be80f994504aa\\\"}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}}","latestMsgSendTime":1718717329749,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},"si_1695766238_5967938442":{"conversationID":"si_1695766238_5967938442","conversationType":1,"userID":"5967938442","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"{\"clientMsgID\":\"f3bc501a9e75ed5d7ae967b00d81c749\",\"serverMsgID\":\"77b5d27ea8ea581781d049133aef1754\",\"createTime\":1718949580641,\"sendTime\":1718949580644,\"sessionType\":1,\"sendID\":\"1695766238\",\"recvID\":\"5967938442\",\"msgFrom\":200,\"contentType\":1201,\"senderPlatformID\":0,\"seq\":1,\"isRead\":false,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"fromToUserID\\\":{\\\"fromUserID\\\":\\\"5967938442\\\",\\\"toUserID\\\":\\\"1695766238\\\"},\\\"handleMsg\\\":\\\"\\\",\\\"friendVersion\\\":0,\\\"friendVersionID\\\":\\\"\\\"}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}}","latestMsgSendTime":1718949580644,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},"si_1695766238_7122229636":{"conversationID":"si_1695766238_7122229636","conversationType":1,"userID":"7122229636","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"{\"clientMsgID\":\"72d26994e64cd4cd2b5c31e19ac8d610\",\"serverMsgID\":\"2ea8653d8a929527d4f8c27cc76f9a47\",\"createTime\":1718953432951,\"sendTime\":1718953432952,\"sessionType\":1,\"sendID\":\"1695766238\",\"recvID\":\"7122229636\",\"msgFrom\":200,\"contentType\":1201,\"senderPlatformID\":0,\"seq\":1,\"isRead\":true,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"fromToUserID\\\":{\\\"fromUserID\\\":\\\"7122229636\\\",\\\"toUserID\\\":\\\"1695766238\\\"},\\\"handleMsg\\\":\\\"\\\",\\\"friendVersion\\\":0,\\\"friendVersionID\\\":\\\"\\\"}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}}","latestMsgSendTime":1718953432952,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}}
+2024-06-24 10:57:03.967 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_groups_info", "body": "{\"groupIDs\":[\"161019322\",\"84614448\",\"3187706596\",\"3927081813\",\"2300748497\",\"2836218947\",\"3926645279\"]}"}
+2024-06-24 10:57:03.993 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_groups_info", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"groupInfos\":[{\"groupID\":\"161019322\",\"groupName\":\"æĩč¯įž¤\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3923864156\",\"createTime\":1716449051809,\"memberCount\":2,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3923864156\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"84614448\",\"groupName\":\"įž¤č两æĄä¸åæļ厞č¯ģ\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1695766238\",\"createTime\":1697015456454,\"memberCount\":1,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"1695766238\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"3187706596\",\"groupName\":\"éģčŽ¤įž¤-æĩč¯\",\"notification\":\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\nhttps://github.com/open-kf/rag-gpt\\n\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7497605401\",\"createTime\":1692559307052,\"memberCount\":3902,\"ex\":\"xxx\",\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1716968428635,\"notificationUserID\":\"3418577436\"},{\"groupID\":\"3927081813\",\"groupName\":\"æ°´įĩč´š\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"2563100730\",\"createTime\":1693003223717,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"2563100730\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":-28800000,\"notificationUserID\":\"\"},{\"groupID\":\"2300748497\",\"groupName\":\"æĩč¯\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"2738308088\",\"createTime\":1692906300817,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"2738308088\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":-28800000,\"notificationUserID\":\"\"},{\"groupID\":\"2836218947\",\"groupName\":\"æĩč¯įž¤įŽĄį\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4918276559\",\"createTime\":1715065335408,\"memberCount\":6,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4918276559\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":1,\"applyMemberFriend\":1,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"3926645279\",\"groupName\":\"yo123\",\"notification\":\"new notification\",\"introduction\":\"new notification\",\"faceURL\":\"faceURL url\",\"ownerUserID\":\"1695766238\",\"createTime\":1718952270504,\"memberCount\":2,\"ex\":\"new ex\",\"status\":0,\"creatorUserID\":\"\",\"groupType\":2,\"needVerification\":1,\"lookMemberInfo\":1,\"applyMemberFriend\":1,\"notificationUpdateTime\":1718968191355,\"notificationUserID\":\"imAdmin\"}]}}"}
+2024-06-24 10:57:03.997 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_groups_info", "state": "success", "cost time": "29ms"}
+2024-06-24 10:57:03.997 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:330] trigger map is : {"operationID": "1719197817604066041", "newConversations": {"sg_105081877":{"conversationID":"sg_105081877","conversationType":3,"userID":"","groupID":"105081877","showName":"d","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"{\"clientMsgID\":\"edc317755ca9c374d7a42e270abe5bc3\",\"serverMsgID\":\"db07a9027981f628e056ba6f18774eff\",\"createTime\":1718937610489,\"sendTime\":1718937610490,\"sessionType\":3,\"sendID\":\"imAdmin\",\"recvID\":\"105081877\",\"msgFrom\":200,\"contentType\":1504,\"senderPlatformID\":0,\"groupID\":\"105081877\",\"seq\":2,\"isRead\":false,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"group\\\":{\\\"groupID\\\":\\\"105081877\\\",\\\"groupName\\\":\\\"d\\\",\\\"notification\\\":\\\"\\\",\\\"introduction\\\":\\\"\\\",\\\"faceURL\\\":\\\"\\\",\\\"ownerUserID\\\":\\\"5248385191\\\",\\\"createTime\\\":1710490825413,\\\"memberCount\\\":5,\\\"ex\\\":\\\"\\\",\\\"status\\\":0,\\\"creatorUserID\\\":\\\"5248385191\\\",\\\"groupType\\\":2,\\\"needVerification\\\":0,\\\"lookMemberInfo\\\":0,\\\"applyMemberFriend\\\":0,\\\"notificationUpdateTime\\\":0,\\\"notificationUserID\\\":\\\"\\\"},\\\"quitUser\\\":{\\\"groupID\\\":\\\"105081877\\\",\\\"userID\\\":\\\"5292156665\\\",\\\"roleLevel\\\":20,\\\"joinTime\\\":1710490848503,\\\"nickname\\\":\\\"Oliver\\\",\\\"faceURL\\\":\\\"https://web.rentsoft.cn/api_enterprise/object/5292156665/storage/emulated/0/Android/data/io.openim.android.demo/cache/1706265155247/1706265148858.png\\\",\\\"appMangerLevel\\\":0,\\\"joinSource\\\":2,\\\"operatorUserID\\\":\\\"5248385191\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":0,\\\"inviterUserID\\\":\\\"5248385191\\\"},\\\"operationTime\\\":0,\\\"groupMemberVersion\\\":2,\\\"groupMemberVersionID\\\":\\\"6672d39de27166fe77811753\\\"}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}}","latestMsgSendTime":1718937610490,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},"sg_1177987017":{"conversationID":"sg_1177987017","conversationType":3,"userID":"","groupID":"1177987017","showName":"123123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"{\"clientMsgID\":\"93ce372f1170782d5961e3831c9e7d30\",\"serverMsgID\":\"c5ee404e47c5b104d38baae24bea8d98\",\"createTime\":1718373366841,\"sendTime\":1718373366842,\"sessionType\":3,\"sendID\":\"imAdmin\",\"recvID\":\"1177987017\",\"msgFrom\":200,\"contentType\":1504,\"senderPlatformID\":0,\"groupID\":\"1177987017\",\"seq\":2,\"isRead\":false,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"group\\\":{\\\"groupID\\\":\\\"1177987017\\\",\\\"groupName\\\":\\\"123123\\\",\\\"notification\\\":\\\"\\\",\\\"introduction\\\":\\\"\\\",\\\"faceURL\\\":\\\"\\\",\\\"ownerUserID\\\":\\\"1695766238\\\",\\\"createTime\\\":1705046435331,\\\"memberCount\\\":1,\\\"ex\\\":\\\"\\\",\\\"status\\\":0,\\\"creatorUserID\\\":\\\"1695766238\\\",\\\"groupType\\\":2,\\\"needVerification\\\":0,\\\"lookMemberInfo\\\":0,\\\"applyMemberFriend\\\":0,\\\"notificationUpdateTime\\\":0,\\\"notificationUserID\\\":\\\"\\\"},\\\"quitUser\\\":{\\\"groupID\\\":\\\"1177987017\\\",\\\"userID\\\":\\\"4911414951\\\",\\\"roleLevel\\\":20,\\\"joinTime\\\":1705046985971,\\\"nickname\\\":\\\"OpenimAnd-Jane\\\",\\\"faceURL\\\":\\\"https://web.rentsoft.cn/api_enterprise/object/4911414951/image_2024-05-06-20-59.111.png\\\",\\\"appMangerLevel\\\":0,\\\"joinSource\\\":2,\\\"operatorUserID\\\":\\\"1695766238\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":0,\\\"inviterUserID\\\":\\\"1695766238\\\"},\\\"operationTime\\\":0,\\\"groupMemberVersion\\\":3}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}}","latestMsgSendTime":1718373366842,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},"sg_1254300734":{"conversationID":"sg_1254300734","conversationType":3,"userID":"","groupID":"1254300734","showName":"fjh","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"{\"clientMsgID\":\"02756e84af58c58d3ad9cd320fed4a65\",\"serverMsgID\":\"58c48ac004f5769a44a8038c1b2e4f95\",\"createTime\":1718805424659,\"sendTime\":1718805424661,\"sessionType\":3,\"sendID\":\"imAdmin\",\"recvID\":\"1254300734\",\"msgFrom\":200,\"contentType\":1504,\"senderPlatformID\":0,\"groupID\":\"1254300734\",\"seq\":1,\"isRead\":false,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"group\\\":{\\\"groupID\\\":\\\"1254300734\\\",\\\"groupName\\\":\\\"fjh\\\",\\\"notification\\\":\\\"\\\",\\\"introduction\\\":\\\"\\\",\\\"faceURL\\\":\\\"\\\",\\\"ownerUserID\\\":\\\"4681582191\\\",\\\"createTime\\\":1713582441625,\\\"memberCount\\\":9,\\\"ex\\\":\\\"\\\",\\\"status\\\":0,\\\"creatorUserID\\\":\\\"4681582191\\\",\\\"groupType\\\":2,\\\"needVerification\\\":0,\\\"lookMemberInfo\\\":0,\\\"applyMemberFriend\\\":0,\\\"notificationUpdateTime\\\":0,\\\"notificationUserID\\\":\\\"\\\"},\\\"quitUser\\\":{\\\"groupID\\\":\\\"1254300734\\\",\\\"userID\\\":\\\"2725451243\\\",\\\"roleLevel\\\":20,\\\"joinTime\\\":1713582441627,\\\"nickname\\\":\\\"OpenIM-Andrew123\\\",\\\"faceURL\\\":\\\"\\\",\\\"appMangerLevel\\\":0,\\\"joinSource\\\":2,\\\"operatorUserID\\\":\\\"4681582191\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":0,\\\"inviterUserID\\\":\\\"4681582191\\\"},\\\"operationTime\\\":0,\\\"groupMemberVersion\\\":2,\\\"groupMemberVersionID\\\":\\\"6672d39de27166fe778116b5\\\"}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}}","latestMsgSendTime":1718805424661,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},"sg_161019322":{"conversationID":"sg_161019322","conversationType":3,"userID":"","groupID":"161019322","showName":"æĩč¯įž¤","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"{\"clientMsgID\":\"a3a3d6e0aeaf5ad4b2fdbe7707d6a185\",\"serverMsgID\":\"96d8ed55c12579dd32a7631eeedb0eaa\",\"createTime\":1718850240266,\"sendTime\":1718850240267,\"sessionType\":3,\"sendID\":\"imAdmin\",\"recvID\":\"161019322\",\"msgFrom\":200,\"contentType\":1504,\"senderPlatformID\":0,\"groupID\":\"161019322\",\"seq\":3,\"isRead\":false,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"group\\\":{\\\"groupID\\\":\\\"161019322\\\",\\\"groupName\\\":\\\"æĩč¯įž¤\\\",\\\"notification\\\":\\\"\\\",\\\"introduction\\\":\\\"\\\",\\\"faceURL\\\":\\\"\\\",\\\"ownerUserID\\\":\\\"3923864156\\\",\\\"createTime\\\":1716449051809,\\\"memberCount\\\":2,\\\"ex\\\":\\\"\\\",\\\"status\\\":0,\\\"creatorUserID\\\":\\\"3923864156\\\",\\\"groupType\\\":2,\\\"needVerification\\\":0,\\\"lookMemberInfo\\\":0,\\\"applyMemberFriend\\\":0,\\\"notificationUpdateTime\\\":0,\\\"notificationUserID\\\":\\\"\\\"},\\\"quitUser\\\":{\\\"groupID\\\":\\\"161019322\\\",\\\"userID\\\":\\\"2725451243\\\",\\\"roleLevel\\\":20,\\\"joinTime\\\":1716449051811,\\\"nickname\\\":\\\"OpenIM-Andrew123\\\",\\\"faceURL\\\":\\\"\\\",\\\"appMangerLevel\\\":0,\\\"joinSource\\\":2,\\\"operatorUserID\\\":\\\"3923864156\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":0,\\\"inviterUserID\\\":\\\"3923864156\\\"},\\\"operationTime\\\":0,\\\"groupMemberVersion\\\":4,\\\"groupMemberVersionID\\\":\\\"6672d39de27166fe7781173f\\\"}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}}","latestMsgSendTime":1718850240267,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},"sg_2300748497":{"conversationID":"sg_2300748497","conversationType":3,"userID":"","groupID":"2300748497","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"{\"clientMsgID\":\"f2abda0ba3a3460dd9e06350b2fd0bdb\",\"serverMsgID\":\"d35e1a97576493ec2ab2ff3d077f4cdc\",\"createTime\":1718718570198,\"sendTime\":1718718570199,\"sessionType\":3,\"sendID\":\"imAdmin\",\"recvID\":\"2300748497\",\"msgFrom\":200,\"contentType\":1504,\"senderPlatformID\":0,\"groupID\":\"2300748497\",\"seq\":2,\"isRead\":false,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"group\\\":{\\\"groupID\\\":\\\"2300748497\\\",\\\"groupName\\\":\\\"æĩč¯\\\",\\\"notification\\\":\\\"\\\",\\\"introduction\\\":\\\"\\\",\\\"faceURL\\\":\\\"\\\",\\\"ownerUserID\\\":\\\"2738308088\\\",\\\"createTime\\\":1692906300817,\\\"memberCount\\\":5,\\\"ex\\\":\\\"\\\",\\\"status\\\":0,\\\"creatorUserID\\\":\\\"2738308088\\\",\\\"groupType\\\":2,\\\"needVerification\\\":0,\\\"lookMemberInfo\\\":0,\\\"applyMemberFriend\\\":0,\\\"notificationUpdateTime\\\":-28800000,\\\"notificationUserID\\\":\\\"\\\"},\\\"quitUser\\\":{\\\"groupID\\\":\\\"2300748497\\\",\\\"userID\\\":\\\"3418577436\\\",\\\"roleLevel\\\":20,\\\"joinTime\\\":1692906300820,\\\"nickname\\\":\\\"OpenIM-skiffer\\\",\\\"faceURL\\\":\\\"https://web.rentsoft.cn/api_enterprise/object/3418577436/BD14C2C1956AB2E1BD8A9F33E76220BE (1).jpg\\\",\\\"appMangerLevel\\\":0,\\\"joinSource\\\":2,\\\"operatorUserID\\\":\\\"2738308088\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":-28800000,\\\"inviterUserID\\\":\\\"2738308088\\\"},\\\"operationTime\\\":0,\\\"groupMemberVersion\\\":2,\\\"groupMemberVersionID\\\":\\\"66719001589c7c5fe709fe75\\\"}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}}","latestMsgSendTime":1718718570199,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},"sg_2836218947":{"conversationID":"sg_2836218947","conversationType":3,"userID":"","groupID":"2836218947","showName":"æĩč¯įž¤įŽĄį","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"{\"clientMsgID\":\"06284c5a5f10d1f472f5f8bc938b47a3\",\"serverMsgID\":\"bba734e36558164cfb5e40206ba26259\",\"createTime\":1718936592922,\"sendTime\":1718936592923,\"sessionType\":3,\"sendID\":\"imAdmin\",\"recvID\":\"2836218947\",\"msgFrom\":200,\"contentType\":1504,\"senderPlatformID\":0,\"groupID\":\"2836218947\",\"seq\":2,\"isRead\":false,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"group\\\":{\\\"groupID\\\":\\\"2836218947\\\",\\\"groupName\\\":\\\"æĩč¯įž¤įŽĄį\\\",\\\"notification\\\":\\\"\\\",\\\"introduction\\\":\\\"\\\",\\\"faceURL\\\":\\\"\\\",\\\"ownerUserID\\\":\\\"4918276559\\\",\\\"createTime\\\":1715065335408,\\\"memberCount\\\":6,\\\"ex\\\":\\\"\\\",\\\"status\\\":0,\\\"creatorUserID\\\":\\\"4918276559\\\",\\\"groupType\\\":2,\\\"needVerification\\\":0,\\\"lookMemberInfo\\\":1,\\\"applyMemberFriend\\\":1,\\\"notificationUpdateTime\\\":0,\\\"notificationUserID\\\":\\\"\\\"},\\\"quitUser\\\":{\\\"groupID\\\":\\\"2836218947\\\",\\\"userID\\\":\\\"6319015024\\\",\\\"roleLevel\\\":20,\\\"joinTime\\\":1715065335409,\\\"nickname\\\":\\\"OpenIM-wind\\\",\\\"faceURL\\\":\\\"https://web.rentsoft.cn/api_enterprise/object/6319015024/pexels-photo-2174974.webp\\\",\\\"appMangerLevel\\\":0,\\\"joinSource\\\":2,\\\"operatorUserID\\\":\\\"4918276559\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":0,\\\"inviterUserID\\\":\\\"4918276559\\\"},\\\"operationTime\\\":0,\\\"groupMemberVersion\\\":3,\\\"groupMemberVersionID\\\":\\\"6672d39de27166fe7781170c\\\"}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}}","latestMsgSendTime":1718936592923,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},"sg_3187706596":{"conversationID":"sg_3187706596","conversationType":3,"userID":"","groupID":"3187706596","showName":"éģčŽ¤įž¤-æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"{\"clientMsgID\":\"54f49dda390bd96e8c6107a9a8bb869b\",\"serverMsgID\":\"2ffca94228877bc102fe4be01aeba429\",\"createTime\":1718953433111,\"sendTime\":1718953433112,\"sessionType\":3,\"sendID\":\"imAdmin\",\"recvID\":\"3187706596\",\"msgFrom\":200,\"contentType\":1509,\"senderPlatformID\":0,\"groupID\":\"3187706596\",\"seq\":3,\"isRead\":false,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"group\\\":{\\\"groupID\\\":\\\"3187706596\\\",\\\"groupName\\\":\\\"éģčŽ¤įž¤-æĩč¯\\\",\\\"notification\\\":\\\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\\\nhttps://github.com/open-kf/rag-gpt\\\\n\\\",\\\"introduction\\\":\\\"\\\",\\\"faceURL\\\":\\\"\\\",\\\"ownerUserID\\\":\\\"7497605401\\\",\\\"createTime\\\":1692559307052,\\\"memberCount\\\":3902,\\\"ex\\\":\\\"xxx\\\",\\\"status\\\":0,\\\"creatorUserID\\\":\\\"7009965934\\\",\\\"groupType\\\":2,\\\"needVerification\\\":0,\\\"lookMemberInfo\\\":0,\\\"applyMemberFriend\\\":0,\\\"notificationUpdateTime\\\":1716968428635,\\\"notificationUserID\\\":\\\"3418577436\\\"},\\\"opUser\\\":{\\\"groupID\\\":\\\"3187706596\\\",\\\"userID\\\":\\\"imAdmin\\\",\\\"roleLevel\\\":60,\\\"joinTime\\\":0,\\\"nickname\\\":\\\"admin\\\",\\\"faceURL\\\":\\\"\\\",\\\"appMangerLevel\\\":2,\\\"joinSource\\\":0,\\\"operatorUserID\\\":\\\"\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":0,\\\"inviterUserID\\\":\\\"\\\"},\\\"invitedUserList\\\":[{\\\"groupID\\\":\\\"3187706596\\\",\\\"userID\\\":\\\"7122229636\\\",\\\"roleLevel\\\":20,\\\"joinTime\\\":1718953432960,\\\"nickname\\\":\\\"11111\\\",\\\"faceURL\\\":\\\"\\\",\\\"appMangerLevel\\\":0,\\\"joinSource\\\":2,\\\"operatorUserID\\\":\\\"\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":0,\\\"inviterUserID\\\":\\\"\\\"}],\\\"operationTime\\\":0,\\\"groupMemberVersion\\\":4,\\\"groupMemberVersionID\\\":\\\"6672d39de27166fe77811717\\\"}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}}","latestMsgSendTime":1718953433112,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},"sg_3896488295":{"conversationID":"sg_3896488295","conversationType":3,"userID":"","groupID":"3896488295","showName":"imæĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"{\"clientMsgID\":\"dfc06971a5ff46e072117247b92b68e6\",\"serverMsgID\":\"f57eb140f799156f77187ed2d03754d5\",\"createTime\":1718801595912,\"sendTime\":1718801595913,\"sessionType\":3,\"sendID\":\"imAdmin\",\"recvID\":\"3896488295\",\"msgFrom\":200,\"contentType\":1504,\"senderPlatformID\":0,\"groupID\":\"3896488295\",\"seq\":1,\"isRead\":false,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"group\\\":{\\\"groupID\\\":\\\"3896488295\\\",\\\"groupName\\\":\\\"imæĩč¯\\\",\\\"notification\\\":\\\"\\\",\\\"introduction\\\":\\\"\\\",\\\"faceURL\\\":\\\"\\\",\\\"ownerUserID\\\":\\\"3862147424\\\",\\\"createTime\\\":1704805511573,\\\"memberCount\\\":9,\\\"ex\\\":\\\"\\\",\\\"status\\\":0,\\\"creatorUserID\\\":\\\"3862147424\\\",\\\"groupType\\\":2,\\\"needVerification\\\":0,\\\"lookMemberInfo\\\":0,\\\"applyMemberFriend\\\":0,\\\"notificationUpdateTime\\\":0,\\\"notificationUserID\\\":\\\"\\\"},\\\"quitUser\\\":{\\\"groupID\\\":\\\"3896488295\\\",\\\"userID\\\":\\\"2725451243\\\",\\\"roleLevel\\\":20,\\\"joinTime\\\":1704805511574,\\\"nickname\\\":\\\"OpenIM-Andrew123\\\",\\\"faceURL\\\":\\\"\\\",\\\"appMangerLevel\\\":0,\\\"joinSource\\\":2,\\\"operatorUserID\\\":\\\"3862147424\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":0,\\\"inviterUserID\\\":\\\"3862147424\\\"},\\\"operationTime\\\":0,\\\"groupMemberVersion\\\":2,\\\"groupMemberVersionID\\\":\\\"6672d39de27166fe778116af\\\"}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}}","latestMsgSendTime":1718801595913,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},"sg_3926645279":{"conversationID":"sg_3926645279","conversationType":3,"userID":"","groupID":"3926645279","showName":"yo123","faceURL":"faceURL url","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"{\"clientMsgID\":\"b7312f062ea8c5203a747f577d891096\",\"serverMsgID\":\"c6d35a7f550bda5f52d74f17281dc8a3\",\"createTime\":1719040920865,\"sendTime\":1719040920868,\"sessionType\":3,\"sendID\":\"imAdmin\",\"recvID\":\"3926645279\",\"msgFrom\":200,\"contentType\":1507,\"senderPlatformID\":0,\"groupID\":\"3926645279\",\"seq\":18,\"isRead\":false,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"group\\\":{\\\"groupID\\\":\\\"3926645279\\\",\\\"groupName\\\":\\\"yo123\\\",\\\"notification\\\":\\\"new notification\\\",\\\"introduction\\\":\\\"new notification\\\",\\\"faceURL\\\":\\\"faceURL url\\\",\\\"ownerUserID\\\":\\\"1695766238\\\",\\\"createTime\\\":1718952270504,\\\"memberCount\\\":2,\\\"ex\\\":\\\"new ex\\\",\\\"status\\\":0,\\\"creatorUserID\\\":\\\"\\\",\\\"groupType\\\":2,\\\"needVerification\\\":1,\\\"lookMemberInfo\\\":1,\\\"applyMemberFriend\\\":1,\\\"notificationUpdateTime\\\":1718968191355,\\\"notificationUserID\\\":\\\"imAdmin\\\"},\\\"opUser\\\":{\\\"groupID\\\":\\\"3926645279\\\",\\\"userID\\\":\\\"imAdmin\\\",\\\"roleLevel\\\":60,\\\"joinTime\\\":0,\\\"nickname\\\":\\\"admin\\\",\\\"faceURL\\\":\\\"\\\",\\\"appMangerLevel\\\":2,\\\"joinSource\\\":0,\\\"operatorUserID\\\":\\\"\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":0,\\\"inviterUserID\\\":\\\"\\\"},\\\"newGroupOwner\\\":{\\\"groupID\\\":\\\"3926645279\\\",\\\"userID\\\":\\\"1695766238\\\",\\\"roleLevel\\\":100,\\\"joinTime\\\":1718968462104,\\\"nickname\\\":\\\"OpenIM-Gordon\\\",\\\"faceURL\\\":\\\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\\\",\\\"appMangerLevel\\\":0,\\\"joinSource\\\":2,\\\"operatorUserID\\\":\\\"\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":0,\\\"inviterUserID\\\":\\\"\\\"},\\\"oldGroupOwner\\\":\\\"\\\",\\\"operationTime\\\":0,\\\"oldGroupOwnerInfo\\\":{\\\"groupID\\\":\\\"3926645279\\\",\\\"userID\\\":\\\"2882899447\\\",\\\"roleLevel\\\":20,\\\"joinTime\\\":1718952270506,\\\"nickname\\\":\\\"OpenIM-blooming\\\",\\\"faceURL\\\":\\\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\\\",\\\"appMangerLevel\\\":0,\\\"joinSource\\\":2,\\\"operatorUserID\\\":\\\"imAdmin\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":0,\\\"inviterUserID\\\":\\\"imAdmin\\\"},\\\"groupMemberVersion\\\":24,\\\"groupMemberVersionID\\\":\\\"6675214eac4b76626468fef5\\\"}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}}","latestMsgSendTime":1719040920868,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},"sg_3927081813":{"conversationID":"sg_3927081813","conversationType":3,"userID":"","groupID":"3927081813","showName":"æ°´įĩč´š","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"{\"clientMsgID\":\"bb8f6da7b64c5019d05d11e5498b7ebe\",\"serverMsgID\":\"8377622d22ff842f509a1b8a1b5cf020\",\"createTime\":1718762537771,\"sendTime\":1718762537772,\"sessionType\":3,\"sendID\":\"imAdmin\",\"recvID\":\"3927081813\",\"msgFrom\":200,\"contentType\":1504,\"senderPlatformID\":0,\"groupID\":\"3927081813\",\"seq\":1,\"isRead\":false,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"group\\\":{\\\"groupID\\\":\\\"3927081813\\\",\\\"groupName\\\":\\\"æ°´įĩč´š\\\",\\\"notification\\\":\\\"\\\",\\\"introduction\\\":\\\"\\\",\\\"faceURL\\\":\\\"\\\",\\\"ownerUserID\\\":\\\"2563100730\\\",\\\"createTime\\\":1693003223717,\\\"memberCount\\\":5,\\\"ex\\\":\\\"\\\",\\\"status\\\":0,\\\"creatorUserID\\\":\\\"2563100730\\\",\\\"groupType\\\":2,\\\"needVerification\\\":0,\\\"lookMemberInfo\\\":0,\\\"applyMemberFriend\\\":0,\\\"notificationUpdateTime\\\":-28800000,\\\"notificationUserID\\\":\\\"\\\"},\\\"quitUser\\\":{\\\"groupID\\\":\\\"3927081813\\\",\\\"userID\\\":\\\"5292156665\\\",\\\"roleLevel\\\":20,\\\"joinTime\\\":1693003223718,\\\"nickname\\\":\\\"Oliver\\\",\\\"faceURL\\\":\\\"https://web.rentsoft.cn/api_enterprise/object/5292156665/storage/emulated/0/Android/data/io.openim.android.demo/cache/1706265155247/1706265148858.png\\\",\\\"appMangerLevel\\\":0,\\\"joinSource\\\":2,\\\"operatorUserID\\\":\\\"2563100730\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":-28800000,\\\"inviterUserID\\\":\\\"2563100730\\\"},\\\"operationTime\\\":0,\\\"groupMemberVersion\\\":1,\\\"groupMemberVersionID\\\":\\\"66723c29589c7c5fe709fe78\\\"}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}}","latestMsgSendTime":1718762537772,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},"sg_84614448":{"conversationID":"sg_84614448","conversationType":3,"userID":"","groupID":"84614448","showName":"įž¤č两æĄä¸åæļ厞č¯ģ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"{\"clientMsgID\":\"dc01b2472ea8368fc12ed589b3483a16\",\"serverMsgID\":\"b920d2060e953bd0975219a79b17bb48\",\"createTime\":1718717329747,\"sendTime\":1718717329749,\"sessionType\":3,\"sendID\":\"imAdmin\",\"recvID\":\"84614448\",\"msgFrom\":200,\"contentType\":1504,\"senderPlatformID\":0,\"groupID\":\"84614448\",\"seq\":2,\"isRead\":false,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"group\\\":{\\\"groupID\\\":\\\"84614448\\\",\\\"groupName\\\":\\\"įž¤č两æĄä¸åæļ厞č¯ģ\\\",\\\"notification\\\":\\\"\\\",\\\"introduction\\\":\\\"\\\",\\\"faceURL\\\":\\\"\\\",\\\"ownerUserID\\\":\\\"1695766238\\\",\\\"createTime\\\":1697015456454,\\\"memberCount\\\":1,\\\"ex\\\":\\\"\\\",\\\"status\\\":0,\\\"creatorUserID\\\":\\\"1695766238\\\",\\\"groupType\\\":2,\\\"needVerification\\\":0,\\\"lookMemberInfo\\\":0,\\\"applyMemberFriend\\\":0,\\\"notificationUpdateTime\\\":0,\\\"notificationUserID\\\":\\\"\\\"},\\\"quitUser\\\":{\\\"groupID\\\":\\\"84614448\\\",\\\"userID\\\":\\\"7009965934\\\",\\\"roleLevel\\\":20,\\\"joinTime\\\":1697015456456,\\\"nickname\\\":\\\"đâË¡Íāŧ¡ÍË*\\\",\\\"faceURL\\\":\\\"https://web.rentsoft.cn/api_enterprise/object/7009965934/image_cropper_1697097350170.jpg\\\",\\\"appMangerLevel\\\":0,\\\"joinSource\\\":2,\\\"operatorUserID\\\":\\\"1695766238\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":0,\\\"inviterUserID\\\":\\\"1695766238\\\"},\\\"operationTime\\\":0,\\\"groupMemberVersion\\\":3,\\\"groupMemberVersionID\\\":\\\"666c4cf4959be80f994504aa\\\"}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}}","latestMsgSendTime":1718717329749,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},"si_1695766238_5967938442":{"conversationID":"si_1695766238_5967938442","conversationType":1,"userID":"5967938442","groupID":"","showName":"hhh","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"{\"clientMsgID\":\"f3bc501a9e75ed5d7ae967b00d81c749\",\"serverMsgID\":\"77b5d27ea8ea581781d049133aef1754\",\"createTime\":1718949580641,\"sendTime\":1718949580644,\"sessionType\":1,\"sendID\":\"1695766238\",\"recvID\":\"5967938442\",\"msgFrom\":200,\"contentType\":1201,\"senderPlatformID\":0,\"seq\":1,\"isRead\":false,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"fromToUserID\\\":{\\\"fromUserID\\\":\\\"5967938442\\\",\\\"toUserID\\\":\\\"1695766238\\\"},\\\"handleMsg\\\":\\\"\\\",\\\"friendVersion\\\":0,\\\"friendVersionID\\\":\\\"\\\"}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}}","latestMsgSendTime":1718949580644,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},"si_1695766238_7122229636":{"conversationID":"si_1695766238_7122229636","conversationType":1,"userID":"7122229636","groupID":"","showName":"11111","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"{\"clientMsgID\":\"72d26994e64cd4cd2b5c31e19ac8d610\",\"serverMsgID\":\"2ea8653d8a929527d4f8c27cc76f9a47\",\"createTime\":1718953432951,\"sendTime\":1718953432952,\"sessionType\":1,\"sendID\":\"1695766238\",\"recvID\":\"7122229636\",\"msgFrom\":200,\"contentType\":1201,\"senderPlatformID\":0,\"seq\":1,\"isRead\":true,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"fromToUserID\\\":{\\\"fromUserID\\\":\\\"7122229636\\\",\\\"toUserID\\\":\\\"1695766238\\\"},\\\"handleMsg\\\":\\\"\\\",\\\"friendVersion\\\":0,\\\"friendVersionID\\\":\\\"\\\"}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}}","latestMsgSendTime":1718953432952,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}, "changedConversations": {}}
+2024-06-24 10:57:04.014 [31mERROR[0m [31m[PID:21964] [0m [version:3.5.13] [conversation_msg/message_controller.go:52] Unmarshal err {"operationID": "1719197817604066041", "conversationID": "sg_1254300734", "latestMsg": "", "error": "unexpected end of JSON input"}
+2024-06-24 10:57:04.015 [31mERROR[0m [31m[PID:21964] [0m [version:3.5.13] [conversation_msg/message_controller.go:52] Unmarshal err {"operationID": "1719197817604066041", "conversationID": "sg_3926645279", "latestMsg": "", "error": "unexpected end of JSON input"}
+2024-06-24 10:57:04.016 [31mERROR[0m [31m[PID:21964] [0m [version:3.5.13] [conversation_msg/message_controller.go:52] Unmarshal err {"operationID": "1719197817604066041", "conversationID": "sg_2300748497", "latestMsg": "", "error": "unexpected end of JSON input"}
+2024-06-24 10:57:04.017 [31mERROR[0m [31m[PID:21964] [0m [version:3.5.13] [conversation_msg/message_controller.go:52] Unmarshal err {"operationID": "1719197817604066041", "conversationID": "sg_105081877", "latestMsg": "", "error": "unexpected end of JSON input"}
+2024-06-24 10:57:04.017 [31mERROR[0m [31m[PID:21964] [0m [version:3.5.13] [conversation_msg/message_controller.go:52] Unmarshal err {"operationID": "1719197817604066041", "conversationID": "sg_1177987017", "latestMsg": "", "error": "unexpected end of JSON input"}
+2024-06-24 10:57:04.018 [31mERROR[0m [31m[PID:21964] [0m [version:3.5.13] [conversation_msg/message_controller.go:52] Unmarshal err {"operationID": "1719197817604066041", "conversationID": "si_1695766238_5967938442", "latestMsg": "", "error": "unexpected end of JSON input"}
+2024-06-24 10:57:04.018 [31mERROR[0m [31m[PID:21964] [0m [version:3.5.13] [conversation_msg/message_controller.go:52] Unmarshal err {"operationID": "1719197817604066041", "conversationID": "sg_84614448", "latestMsg": "", "error": "unexpected end of JSON input"}
+2024-06-24 10:57:04.019 [31mERROR[0m [31m[PID:21964] [0m [version:3.5.13] [conversation_msg/message_controller.go:52] Unmarshal err {"operationID": "1719197817604066041", "conversationID": "si_1695766238_7122229636", "latestMsg": "", "error": "unexpected end of JSON input"}
+2024-06-24 10:57:04.020 [31mERROR[0m [31m[PID:21964] [0m [version:3.5.13] [conversation_msg/message_controller.go:52] Unmarshal err {"operationID": "1719197817604066041", "conversationID": "sg_3927081813", "latestMsg": "", "error": "unexpected end of JSON input"}
+2024-06-24 10:57:04.020 [31mERROR[0m [31m[PID:21964] [0m [version:3.5.13] [conversation_msg/message_controller.go:52] Unmarshal err {"operationID": "1719197817604066041", "conversationID": "sg_2836218947", "latestMsg": "", "error": "unexpected end of JSON input"}
+2024-06-24 10:57:04.021 [31mERROR[0m [31m[PID:21964] [0m [version:3.5.13] [conversation_msg/message_controller.go:52] Unmarshal err {"operationID": "1719197817604066041", "conversationID": "sg_161019322", "latestMsg": "", "error": "unexpected end of JSON input"}
+2024-06-24 10:57:04.021 [31mERROR[0m [31m[PID:21964] [0m [version:3.5.13] [conversation_msg/message_controller.go:52] Unmarshal err {"operationID": "1719197817604066041", "conversationID": "sg_3187706596", "latestMsg": "", "error": "unexpected end of JSON input"}
+2024-06-24 10:57:04.022 [31mERROR[0m [31m[PID:21964] [0m [version:3.5.13] [conversation_msg/message_controller.go:52] Unmarshal err {"operationID": "1719197817604066041", "conversationID": "sg_3896488295", "latestMsg": "", "error": "unexpected end of JSON input"}
+2024-06-24 10:57:04.129 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:576] OnRecvNewMessages {"operationID": "1719197813759468572", "groupMsgReceiptList": "[{\"clientMsgID\":\"93ce372f1170782d5961e3831c9e7d30\",\"serverMsgID\":\"c5ee404e47c5b104d38baae24bea8d98\",\"createTime\":1718373366841,\"sendTime\":1718373366842,\"sessionType\":3,\"sendID\":\"imAdmin\",\"recvID\":\"1177987017\",\"msgFrom\":200,\"contentType\":1504,\"senderPlatformID\":0,\"groupID\":\"1177987017\",\"seq\":2,\"isRead\":false,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"group\\\":{\\\"groupID\\\":\\\"1177987017\\\",\\\"groupName\\\":\\\"123123\\\",\\\"notification\\\":\\\"\\\",\\\"introduction\\\":\\\"\\\",\\\"faceURL\\\":\\\"\\\",\\\"ownerUserID\\\":\\\"1695766238\\\",\\\"createTime\\\":1705046435331,\\\"memberCount\\\":1,\\\"ex\\\":\\\"\\\",\\\"status\\\":0,\\\"creatorUserID\\\":\\\"1695766238\\\",\\\"groupType\\\":2,\\\"needVerification\\\":0,\\\"lookMemberInfo\\\":0,\\\"applyMemberFriend\\\":0,\\\"notificationUpdateTime\\\":0,\\\"notificationUserID\\\":\\\"\\\"},\\\"quitUser\\\":{\\\"groupID\\\":\\\"1177987017\\\",\\\"userID\\\":\\\"4911414951\\\",\\\"roleLevel\\\":20,\\\"joinTime\\\":1705046985971,\\\"nickname\\\":\\\"OpenimAnd-Jane\\\",\\\"faceURL\\\":\\\"https://web.rentsoft.cn/api_enterprise/object/4911414951/image_2024-05-06-20-59.111.png\\\",\\\"appMangerLevel\\\":0,\\\"joinSource\\\":2,\\\"operatorUserID\\\":\\\"1695766238\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":0,\\\"inviterUserID\\\":\\\"1695766238\\\"},\\\"operationTime\\\":0,\\\"groupMemberVersion\\\":3}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}},{\"clientMsgID\":\"dc01b2472ea8368fc12ed589b3483a16\",\"serverMsgID\":\"b920d2060e953bd0975219a79b17bb48\",\"createTime\":1718717329747,\"sendTime\":1718717329749,\"sessionType\":3,\"sendID\":\"imAdmin\",\"recvID\":\"84614448\",\"msgFrom\":200,\"contentType\":1504,\"senderPlatformID\":0,\"groupID\":\"84614448\",\"seq\":2,\"isRead\":false,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"group\\\":{\\\"groupID\\\":\\\"84614448\\\",\\\"groupName\\\":\\\"įž¤č两æĄä¸åæļ厞č¯ģ\\\",\\\"notification\\\":\\\"\\\",\\\"introduction\\\":\\\"\\\",\\\"faceURL\\\":\\\"\\\",\\\"ownerUserID\\\":\\\"1695766238\\\",\\\"createTime\\\":1697015456454,\\\"memberCount\\\":1,\\\"ex\\\":\\\"\\\",\\\"status\\\":0,\\\"creatorUserID\\\":\\\"1695766238\\\",\\\"groupType\\\":2,\\\"needVerification\\\":0,\\\"lookMemberInfo\\\":0,\\\"applyMemberFriend\\\":0,\\\"notificationUpdateTime\\\":0,\\\"notificationUserID\\\":\\\"\\\"},\\\"quitUser\\\":{\\\"groupID\\\":\\\"84614448\\\",\\\"userID\\\":\\\"7009965934\\\",\\\"roleLevel\\\":20,\\\"joinTime\\\":1697015456456,\\\"nickname\\\":\\\"đâË¡Íāŧ¡ÍË*\\\",\\\"faceURL\\\":\\\"https://web.rentsoft.cn/api_enterprise/object/7009965934/image_cropper_1697097350170.jpg\\\",\\\"appMangerLevel\\\":0,\\\"joinSource\\\":2,\\\"operatorUserID\\\":\\\"1695766238\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":0,\\\"inviterUserID\\\":\\\"1695766238\\\"},\\\"operationTime\\\":0,\\\"groupMemberVersion\\\":3,\\\"groupMemberVersionID\\\":\\\"666c4cf4959be80f994504aa\\\"}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}},{\"clientMsgID\":\"f2abda0ba3a3460dd9e06350b2fd0bdb\",\"serverMsgID\":\"d35e1a97576493ec2ab2ff3d077f4cdc\",\"createTime\":1718718570198,\"sendTime\":1718718570199,\"sessionType\":3,\"sendID\":\"imAdmin\",\"recvID\":\"2300748497\",\"msgFrom\":200,\"contentType\":1504,\"senderPlatformID\":0,\"groupID\":\"2300748497\",\"seq\":2,\"isRead\":false,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"group\\\":{\\\"groupID\\\":\\\"2300748497\\\",\\\"groupName\\\":\\\"æĩč¯\\\",\\\"notification\\\":\\\"\\\",\\\"introduction\\\":\\\"\\\",\\\"faceURL\\\":\\\"\\\",\\\"ownerUserID\\\":\\\"2738308088\\\",\\\"createTime\\\":1692906300817,\\\"memberCount\\\":5,\\\"ex\\\":\\\"\\\",\\\"status\\\":0,\\\"creatorUserID\\\":\\\"2738308088\\\",\\\"groupType\\\":2,\\\"needVerification\\\":0,\\\"lookMemberInfo\\\":0,\\\"applyMemberFriend\\\":0,\\\"notificationUpdateTime\\\":-28800000,\\\"notificationUserID\\\":\\\"\\\"},\\\"quitUser\\\":{\\\"groupID\\\":\\\"2300748497\\\",\\\"userID\\\":\\\"3418577436\\\",\\\"roleLevel\\\":20,\\\"joinTime\\\":1692906300820,\\\"nickname\\\":\\\"OpenIM-skiffer\\\",\\\"faceURL\\\":\\\"https://web.rentsoft.cn/api_enterprise/object/3418577436/BD14C2C1956AB2E1BD8A9F33E76220BE (1).jpg\\\",\\\"appMangerLevel\\\":0,\\\"joinSource\\\":2,\\\"operatorUserID\\\":\\\"2738308088\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":-28800000,\\\"inviterUserID\\\":\\\"2738308088\\\"},\\\"operationTime\\\":0,\\\"groupMemberVersion\\\":2,\\\"groupMemberVersionID\\\":\\\"66719001589c7c5fe709fe75\\\"}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}},{\"clientMsgID\":\"bb8f6da7b64c5019d05d11e5498b7ebe\",\"serverMsgID\":\"8377622d22ff842f509a1b8a1b5cf020\",\"createTime\":1718762537771,\"sendTime\":1718762537772,\"sessionType\":3,\"sendID\":\"imAdmin\",\"recvID\":\"3927081813\",\"msgFrom\":200,\"contentType\":1504,\"senderPlatformID\":0,\"groupID\":\"3927081813\",\"seq\":1,\"isRead\":false,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"group\\\":{\\\"groupID\\\":\\\"3927081813\\\",\\\"groupName\\\":\\\"æ°´įĩč´š\\\",\\\"notification\\\":\\\"\\\",\\\"introduction\\\":\\\"\\\",\\\"faceURL\\\":\\\"\\\",\\\"ownerUserID\\\":\\\"2563100730\\\",\\\"createTime\\\":1693003223717,\\\"memberCount\\\":5,\\\"ex\\\":\\\"\\\",\\\"status\\\":0,\\\"creatorUserID\\\":\\\"2563100730\\\",\\\"groupType\\\":2,\\\"needVerification\\\":0,\\\"lookMemberInfo\\\":0,\\\"applyMemberFriend\\\":0,\\\"notificationUpdateTime\\\":-28800000,\\\"notificationUserID\\\":\\\"\\\"},\\\"quitUser\\\":{\\\"groupID\\\":\\\"3927081813\\\",\\\"userID\\\":\\\"5292156665\\\",\\\"roleLevel\\\":20,\\\"joinTime\\\":1693003223718,\\\"nickname\\\":\\\"Oliver\\\",\\\"faceURL\\\":\\\"https://web.rentsoft.cn/api_enterprise/object/5292156665/storage/emulated/0/Android/data/io.openim.android.demo/cache/1706265155247/1706265148858.png\\\",\\\"appMangerLevel\\\":0,\\\"joinSource\\\":2,\\\"operatorUserID\\\":\\\"2563100730\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":-28800000,\\\"inviterUserID\\\":\\\"2563100730\\\"},\\\"operationTime\\\":0,\\\"groupMemberVersion\\\":1,\\\"groupMemberVersionID\\\":\\\"66723c29589c7c5fe709fe78\\\"}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}},{\"clientMsgID\":\"dfc06971a5ff46e072117247b92b68e6\",\"serverMsgID\":\"f57eb140f799156f77187ed2d03754d5\",\"createTime\":1718801595912,\"sendTime\":1718801595913,\"sessionType\":3,\"sendID\":\"imAdmin\",\"recvID\":\"3896488295\",\"msgFrom\":200,\"contentType\":1504,\"senderPlatformID\":0,\"groupID\":\"3896488295\",\"seq\":1,\"isRead\":false,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"group\\\":{\\\"groupID\\\":\\\"3896488295\\\",\\\"groupName\\\":\\\"imæĩč¯\\\",\\\"notification\\\":\\\"\\\",\\\"introduction\\\":\\\"\\\",\\\"faceURL\\\":\\\"\\\",\\\"ownerUserID\\\":\\\"3862147424\\\",\\\"createTime\\\":1704805511573,\\\"memberCount\\\":9,\\\"ex\\\":\\\"\\\",\\\"status\\\":0,\\\"creatorUserID\\\":\\\"3862147424\\\",\\\"groupType\\\":2,\\\"needVerification\\\":0,\\\"lookMemberInfo\\\":0,\\\"applyMemberFriend\\\":0,\\\"notificationUpdateTime\\\":0,\\\"notificationUserID\\\":\\\"\\\"},\\\"quitUser\\\":{\\\"groupID\\\":\\\"3896488295\\\",\\\"userID\\\":\\\"2725451243\\\",\\\"roleLevel\\\":20,\\\"joinTime\\\":1704805511574,\\\"nickname\\\":\\\"OpenIM-Andrew123\\\",\\\"faceURL\\\":\\\"\\\",\\\"appMangerLevel\\\":0,\\\"joinSource\\\":2,\\\"operatorUserID\\\":\\\"3862147424\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":0,\\\"inviterUserID\\\":\\\"3862147424\\\"},\\\"operationTime\\\":0,\\\"groupMemberVersion\\\":2,\\\"groupMemberVersionID\\\":\\\"6672d39de27166fe778116af\\\"}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}},{\"clientMsgID\":\"02756e84af58c58d3ad9cd320fed4a65\",\"serverMsgID\":\"58c48ac004f5769a44a8038c1b2e4f95\",\"createTime\":1718805424659,\"sendTime\":1718805424661,\"sessionType\":3,\"sendID\":\"imAdmin\",\"recvID\":\"1254300734\",\"msgFrom\":200,\"contentType\":1504,\"senderPlatformID\":0,\"groupID\":\"1254300734\",\"seq\":1,\"isRead\":false,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"group\\\":{\\\"groupID\\\":\\\"1254300734\\\",\\\"groupName\\\":\\\"fjh\\\",\\\"notification\\\":\\\"\\\",\\\"introduction\\\":\\\"\\\",\\\"faceURL\\\":\\\"\\\",\\\"ownerUserID\\\":\\\"4681582191\\\",\\\"createTime\\\":1713582441625,\\\"memberCount\\\":9,\\\"ex\\\":\\\"\\\",\\\"status\\\":0,\\\"creatorUserID\\\":\\\"4681582191\\\",\\\"groupType\\\":2,\\\"needVerification\\\":0,\\\"lookMemberInfo\\\":0,\\\"applyMemberFriend\\\":0,\\\"notificationUpdateTime\\\":0,\\\"notificationUserID\\\":\\\"\\\"},\\\"quitUser\\\":{\\\"groupID\\\":\\\"1254300734\\\",\\\"userID\\\":\\\"2725451243\\\",\\\"roleLevel\\\":20,\\\"joinTime\\\":1713582441627,\\\"nickname\\\":\\\"OpenIM-Andrew123\\\",\\\"faceURL\\\":\\\"\\\",\\\"appMangerLevel\\\":0,\\\"joinSource\\\":2,\\\"operatorUserID\\\":\\\"4681582191\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":0,\\\"inviterUserID\\\":\\\"4681582191\\\"},\\\"operationTime\\\":0,\\\"groupMemberVersion\\\":2,\\\"groupMemberVersionID\\\":\\\"6672d39de27166fe778116b5\\\"}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}},{\"clientMsgID\":\"a3a3d6e0aeaf5ad4b2fdbe7707d6a185\",\"serverMsgID\":\"96d8ed55c12579dd32a7631eeedb0eaa\",\"createTime\":1718850240266,\"sendTime\":1718850240267,\"sessionType\":3,\"sendID\":\"imAdmin\",\"recvID\":\"161019322\",\"msgFrom\":200,\"contentType\":1504,\"senderPlatformID\":0,\"groupID\":\"161019322\",\"seq\":3,\"isRead\":false,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"group\\\":{\\\"groupID\\\":\\\"161019322\\\",\\\"groupName\\\":\\\"æĩč¯įž¤\\\",\\\"notification\\\":\\\"\\\",\\\"introduction\\\":\\\"\\\",\\\"faceURL\\\":\\\"\\\",\\\"ownerUserID\\\":\\\"3923864156\\\",\\\"createTime\\\":1716449051809,\\\"memberCount\\\":2,\\\"ex\\\":\\\"\\\",\\\"status\\\":0,\\\"creatorUserID\\\":\\\"3923864156\\\",\\\"groupType\\\":2,\\\"needVerification\\\":0,\\\"lookMemberInfo\\\":0,\\\"applyMemberFriend\\\":0,\\\"notificationUpdateTime\\\":0,\\\"notificationUserID\\\":\\\"\\\"},\\\"quitUser\\\":{\\\"groupID\\\":\\\"161019322\\\",\\\"userID\\\":\\\"2725451243\\\",\\\"roleLevel\\\":20,\\\"joinTime\\\":1716449051811,\\\"nickname\\\":\\\"OpenIM-Andrew123\\\",\\\"faceURL\\\":\\\"\\\",\\\"appMangerLevel\\\":0,\\\"joinSource\\\":2,\\\"operatorUserID\\\":\\\"3923864156\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":0,\\\"inviterUserID\\\":\\\"3923864156\\\"},\\\"operationTime\\\":0,\\\"groupMemberVersion\\\":4,\\\"groupMemberVersionID\\\":\\\"6672d39de27166fe7781173f\\\"}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}},{\"clientMsgID\":\"06284c5a5f10d1f472f5f8bc938b47a3\",\"serverMsgID\":\"bba734e36558164cfb5e40206ba26259\",\"createTime\":1718936592922,\"sendTime\":1718936592923,\"sessionType\":3,\"sendID\":\"imAdmin\",\"recvID\":\"2836218947\",\"msgFrom\":200,\"contentType\":1504,\"senderPlatformID\":0,\"groupID\":\"2836218947\",\"seq\":2,\"isRead\":false,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"group\\\":{\\\"groupID\\\":\\\"2836218947\\\",\\\"groupName\\\":\\\"æĩč¯įž¤įŽĄį\\\",\\\"notification\\\":\\\"\\\",\\\"introduction\\\":\\\"\\\",\\\"faceURL\\\":\\\"\\\",\\\"ownerUserID\\\":\\\"4918276559\\\",\\\"createTime\\\":1715065335408,\\\"memberCount\\\":6,\\\"ex\\\":\\\"\\\",\\\"status\\\":0,\\\"creatorUserID\\\":\\\"4918276559\\\",\\\"groupType\\\":2,\\\"needVerification\\\":0,\\\"lookMemberInfo\\\":1,\\\"applyMemberFriend\\\":1,\\\"notificationUpdateTime\\\":0,\\\"notificationUserID\\\":\\\"\\\"},\\\"quitUser\\\":{\\\"groupID\\\":\\\"2836218947\\\",\\\"userID\\\":\\\"6319015024\\\",\\\"roleLevel\\\":20,\\\"joinTime\\\":1715065335409,\\\"nickname\\\":\\\"OpenIM-wind\\\",\\\"faceURL\\\":\\\"https://web.rentsoft.cn/api_enterprise/object/6319015024/pexels-photo-2174974.webp\\\",\\\"appMangerLevel\\\":0,\\\"joinSource\\\":2,\\\"operatorUserID\\\":\\\"4918276559\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":0,\\\"inviterUserID\\\":\\\"4918276559\\\"},\\\"operationTime\\\":0,\\\"groupMemberVersion\\\":3,\\\"groupMemberVersionID\\\":\\\"6672d39de27166fe7781170c\\\"}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}},{\"clientMsgID\":\"edc317755ca9c374d7a42e270abe5bc3\",\"serverMsgID\":\"db07a9027981f628e056ba6f18774eff\",\"createTime\":1718937610489,\"sendTime\":1718937610490,\"sessionType\":3,\"sendID\":\"imAdmin\",\"recvID\":\"105081877\",\"msgFrom\":200,\"contentType\":1504,\"senderPlatformID\":0,\"groupID\":\"105081877\",\"seq\":2,\"isRead\":false,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"group\\\":{\\\"groupID\\\":\\\"105081877\\\",\\\"groupName\\\":\\\"d\\\",\\\"notification\\\":\\\"\\\",\\\"introduction\\\":\\\"\\\",\\\"faceURL\\\":\\\"\\\",\\\"ownerUserID\\\":\\\"5248385191\\\",\\\"createTime\\\":1710490825413,\\\"memberCount\\\":5,\\\"ex\\\":\\\"\\\",\\\"status\\\":0,\\\"creatorUserID\\\":\\\"5248385191\\\",\\\"groupType\\\":2,\\\"needVerification\\\":0,\\\"lookMemberInfo\\\":0,\\\"applyMemberFriend\\\":0,\\\"notificationUpdateTime\\\":0,\\\"notificationUserID\\\":\\\"\\\"},\\\"quitUser\\\":{\\\"groupID\\\":\\\"105081877\\\",\\\"userID\\\":\\\"5292156665\\\",\\\"roleLevel\\\":20,\\\"joinTime\\\":1710490848503,\\\"nickname\\\":\\\"Oliver\\\",\\\"faceURL\\\":\\\"https://web.rentsoft.cn/api_enterprise/object/5292156665/storage/emulated/0/Android/data/io.openim.android.demo/cache/1706265155247/1706265148858.png\\\",\\\"appMangerLevel\\\":0,\\\"joinSource\\\":2,\\\"operatorUserID\\\":\\\"5248385191\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":0,\\\"inviterUserID\\\":\\\"5248385191\\\"},\\\"operationTime\\\":0,\\\"groupMemberVersion\\\":2,\\\"groupMemberVersionID\\\":\\\"6672d39de27166fe77811753\\\"}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}},{\"clientMsgID\":\"f3bc501a9e75ed5d7ae967b00d81c749\",\"serverMsgID\":\"77b5d27ea8ea581781d049133aef1754\",\"createTime\":1718949580641,\"sendTime\":1718949580644,\"sessionType\":1,\"sendID\":\"1695766238\",\"recvID\":\"5967938442\",\"msgFrom\":200,\"contentType\":1201,\"senderPlatformID\":0,\"seq\":1,\"isRead\":false,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"fromToUserID\\\":{\\\"fromUserID\\\":\\\"5967938442\\\",\\\"toUserID\\\":\\\"1695766238\\\"},\\\"handleMsg\\\":\\\"\\\",\\\"friendVersion\\\":0,\\\"friendVersionID\\\":\\\"\\\"}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}},{\"clientMsgID\":\"72d26994e64cd4cd2b5c31e19ac8d610\",\"serverMsgID\":\"2ea8653d8a929527d4f8c27cc76f9a47\",\"createTime\":1718953432951,\"sendTime\":1718953432952,\"sessionType\":1,\"sendID\":\"1695766238\",\"recvID\":\"7122229636\",\"msgFrom\":200,\"contentType\":1201,\"senderPlatformID\":0,\"seq\":1,\"isRead\":true,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"fromToUserID\\\":{\\\"fromUserID\\\":\\\"7122229636\\\",\\\"toUserID\\\":\\\"1695766238\\\"},\\\"handleMsg\\\":\\\"\\\",\\\"friendVersion\\\":0,\\\"friendVersionID\\\":\\\"\\\"}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}},{\"clientMsgID\":\"54f49dda390bd96e8c6107a9a8bb869b\",\"serverMsgID\":\"2ffca94228877bc102fe4be01aeba429\",\"createTime\":1718953433111,\"sendTime\":1718953433112,\"sessionType\":3,\"sendID\":\"imAdmin\",\"recvID\":\"3187706596\",\"msgFrom\":200,\"contentType\":1509,\"senderPlatformID\":0,\"groupID\":\"3187706596\",\"seq\":3,\"isRead\":false,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"group\\\":{\\\"groupID\\\":\\\"3187706596\\\",\\\"groupName\\\":\\\"éģčŽ¤įž¤-æĩč¯\\\",\\\"notification\\\":\\\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\\\nhttps://github.com/open-kf/rag-gpt\\\\n\\\",\\\"introduction\\\":\\\"\\\",\\\"faceURL\\\":\\\"\\\",\\\"ownerUserID\\\":\\\"7497605401\\\",\\\"createTime\\\":1692559307052,\\\"memberCount\\\":3902,\\\"ex\\\":\\\"xxx\\\",\\\"status\\\":0,\\\"creatorUserID\\\":\\\"7009965934\\\",\\\"groupType\\\":2,\\\"needVerification\\\":0,\\\"lookMemberInfo\\\":0,\\\"applyMemberFriend\\\":0,\\\"notificationUpdateTime\\\":1716968428635,\\\"notificationUserID\\\":\\\"3418577436\\\"},\\\"opUser\\\":{\\\"groupID\\\":\\\"3187706596\\\",\\\"userID\\\":\\\"imAdmin\\\",\\\"roleLevel\\\":60,\\\"joinTime\\\":0,\\\"nickname\\\":\\\"admin\\\",\\\"faceURL\\\":\\\"\\\",\\\"appMangerLevel\\\":2,\\\"joinSource\\\":0,\\\"operatorUserID\\\":\\\"\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":0,\\\"inviterUserID\\\":\\\"\\\"},\\\"invitedUserList\\\":[{\\\"groupID\\\":\\\"3187706596\\\",\\\"userID\\\":\\\"7122229636\\\",\\\"roleLevel\\\":20,\\\"joinTime\\\":1718953432960,\\\"nickname\\\":\\\"11111\\\",\\\"faceURL\\\":\\\"\\\",\\\"appMangerLevel\\\":0,\\\"joinSource\\\":2,\\\"operatorUserID\\\":\\\"\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":0,\\\"inviterUserID\\\":\\\"\\\"}],\\\"operationTime\\\":0,\\\"groupMemberVersion\\\":4,\\\"groupMemberVersionID\\\":\\\"6672d39de27166fe77811717\\\"}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}},{\"clientMsgID\":\"b7312f062ea8c5203a747f577d891096\",\"serverMsgID\":\"c6d35a7f550bda5f52d74f17281dc8a3\",\"createTime\":1719040920865,\"sendTime\":1719040920868,\"sessionType\":3,\"sendID\":\"imAdmin\",\"recvID\":\"3926645279\",\"msgFrom\":200,\"contentType\":1507,\"senderPlatformID\":0,\"groupID\":\"3926645279\",\"seq\":18,\"isRead\":false,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"group\\\":{\\\"groupID\\\":\\\"3926645279\\\",\\\"groupName\\\":\\\"yo123\\\",\\\"notification\\\":\\\"new notification\\\",\\\"introduction\\\":\\\"new notification\\\",\\\"faceURL\\\":\\\"faceURL url\\\",\\\"ownerUserID\\\":\\\"1695766238\\\",\\\"createTime\\\":1718952270504,\\\"memberCount\\\":2,\\\"ex\\\":\\\"new ex\\\",\\\"status\\\":0,\\\"creatorUserID\\\":\\\"\\\",\\\"groupType\\\":2,\\\"needVerification\\\":1,\\\"lookMemberInfo\\\":1,\\\"applyMemberFriend\\\":1,\\\"notificationUpdateTime\\\":1718968191355,\\\"notificationUserID\\\":\\\"imAdmin\\\"},\\\"opUser\\\":{\\\"groupID\\\":\\\"3926645279\\\",\\\"userID\\\":\\\"imAdmin\\\",\\\"roleLevel\\\":60,\\\"joinTime\\\":0,\\\"nickname\\\":\\\"admin\\\",\\\"faceURL\\\":\\\"\\\",\\\"appMangerLevel\\\":2,\\\"joinSource\\\":0,\\\"operatorUserID\\\":\\\"\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":0,\\\"inviterUserID\\\":\\\"\\\"},\\\"newGroupOwner\\\":{\\\"groupID\\\":\\\"3926645279\\\",\\\"userID\\\":\\\"1695766238\\\",\\\"roleLevel\\\":100,\\\"joinTime\\\":1718968462104,\\\"nickname\\\":\\\"OpenIM-Gordon\\\",\\\"faceURL\\\":\\\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\\\",\\\"appMangerLevel\\\":0,\\\"joinSource\\\":2,\\\"operatorUserID\\\":\\\"\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":0,\\\"inviterUserID\\\":\\\"\\\"},\\\"oldGroupOwner\\\":\\\"\\\",\\\"operationTime\\\":0,\\\"oldGroupOwnerInfo\\\":{\\\"groupID\\\":\\\"3926645279\\\",\\\"userID\\\":\\\"2882899447\\\",\\\"roleLevel\\\":20,\\\"joinTime\\\":1718952270506,\\\"nickname\\\":\\\"OpenIM-blooming\\\",\\\"faceURL\\\":\\\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\\\",\\\"appMangerLevel\\\":0,\\\"joinSource\\\":2,\\\"operatorUserID\\\":\\\"imAdmin\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":0,\\\"inviterUserID\\\":\\\"imAdmin\\\"},\\\"groupMemberVersion\\\":24,\\\"groupMemberVersionID\\\":\\\"6675214eac4b76626468fef5\\\"}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}}]"}
+2024-06-24 10:57:04.137 [31mERROR[0m [31m[PID:21964] [0m [version:3.5.13] [log/zap.go:100] Ignored key without a value. {"ignored": "[{\"conversationID\":\"si_1695766238_5967938442\",\"conversationType\":1,\"userID\":\"5967938442\",\"groupID\":\"\",\"showName\":\"hhh\",\"faceURL\":\"\",\"recvMsgOpt\":0,\"unreadCount\":0,\"groupAtType\":0,\"latestMsg\":\"{\\\"clientMsgID\\\":\\\"f3bc501a9e75ed5d7ae967b00d81c749\\\",\\\"serverMsgID\\\":\\\"77b5d27ea8ea581781d049133aef1754\\\",\\\"createTime\\\":1718949580641,\\\"sendTime\\\":1718949580644,\\\"sessionType\\\":1,\\\"sendID\\\":\\\"1695766238\\\",\\\"recvID\\\":\\\"5967938442\\\",\\\"msgFrom\\\":200,\\\"contentType\\\":1201,\\\"senderPlatformID\\\":0,\\\"seq\\\":1,\\\"isRead\\\":false,\\\"status\\\":2,\\\"notificationElem\\\":{\\\"detail\\\":\\\"{\\\\\\\"fromToUserID\\\\\\\":{\\\\\\\"fromUserID\\\\\\\":\\\\\\\"5967938442\\\\\\\",\\\\\\\"toUserID\\\\\\\":\\\\\\\"1695766238\\\\\\\"},\\\\\\\"handleMsg\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"friendVersion\\\\\\\":0,\\\\\\\"friendVersionID\\\\\\\":\\\\\\\"\\\\\\\"}\\\"},\\\"attachedInfoElem\\\":{\\\"groupHasReadInfo\\\":{\\\"hasReadCount\\\":0,\\\"groupMemberCount\\\":0},\\\"isPrivateChat\\\":false,\\\"burnDuration\\\":0,\\\"hasReadTime\\\":0,\\\"isEncryption\\\":false,\\\"inEncryptStatus\\\":false}}\",\"latestMsgSendTime\":1718949580644,\"draftText\":\"\",\"draftTextTime\":0,\"isPinned\":false,\"isPrivateChat\":false,\"burnDuration\":0,\"isNotInGroup\":false,\"updateUnreadCountTime\":0,\"attachedInfo\":\"\",\"ex\":\"\",\"maxSeq\":0,\"minSeq\":0,\"hasReadSeq\":0,\"msgDestructTime\":604800,\"isMsgDestruct\":false},{\"conversationID\":\"sg_3896488295\",\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3896488295\",\"showName\":\"imæĩč¯\",\"faceURL\":\"\",\"recvMsgOpt\":0,\"unreadCount\":1,\"groupAtType\":0,\"latestMsg\":\"{\\\"clientMsgID\\\":\\\"dfc06971a5ff46e072117247b92b68e6\\\",\\\"serverMsgID\\\":\\\"f57eb140f799156f77187ed2d03754d5\\\",\\\"createTime\\\":1718801595912,\\\"sendTime\\\":1718801595913,\\\"sessionType\\\":3,\\\"sendID\\\":\\\"imAdmin\\\",\\\"recvID\\\":\\\"3896488295\\\",\\\"msgFrom\\\":200,\\\"contentType\\\":1504,\\\"senderPlatformID\\\":0,\\\"groupID\\\":\\\"3896488295\\\",\\\"seq\\\":1,\\\"isRead\\\":false,\\\"status\\\":2,\\\"notificationElem\\\":{\\\"detail\\\":\\\"{\\\\\\\"group\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"3896488295\\\\\\\",\\\\\\\"groupName\\\\\\\":\\\\\\\"imæĩč¯\\\\\\\",\\\\\\\"notification\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"introduction\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"ownerUserID\\\\\\\":\\\\\\\"3862147424\\\\\\\",\\\\\\\"createTime\\\\\\\":1704805511573,\\\\\\\"memberCount\\\\\\\":9,\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"status\\\\\\\":0,\\\\\\\"creatorUserID\\\\\\\":\\\\\\\"3862147424\\\\\\\",\\\\\\\"groupType\\\\\\\":2,\\\\\\\"needVerification\\\\\\\":0,\\\\\\\"lookMemberInfo\\\\\\\":0,\\\\\\\"applyMemberFriend\\\\\\\":0,\\\\\\\"notificationUpdateTime\\\\\\\":0,\\\\\\\"notificationUserID\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"quitUser\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"3896488295\\\\\\\",\\\\\\\"userID\\\\\\\":\\\\\\\"2725451243\\\\\\\",\\\\\\\"roleLevel\\\\\\\":20,\\\\\\\"joinTime\\\\\\\":1704805511574,\\\\\\\"nickname\\\\\\\":\\\\\\\"OpenIM-Andrew123\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"appMangerLevel\\\\\\\":0,\\\\\\\"joinSource\\\\\\\":2,\\\\\\\"operatorUserID\\\\\\\":\\\\\\\"3862147424\\\\\\\",\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"muteEndTime\\\\\\\":0,\\\\\\\"inviterUserID\\\\\\\":\\\\\\\"3862147424\\\\\\\"},\\\\\\\"operationTime\\\\\\\":0,\\\\\\\"groupMemberVersion\\\\\\\":2,\\\\\\\"groupMemberVersionID\\\\\\\":\\\\\\\"6672d39de27166fe778116af\\\\\\\"}\\\"},\\\"attachedInfoElem\\\":{\\\"groupHasReadInfo\\\":{\\\"hasReadCount\\\":0,\\\"groupMemberCount\\\":0},\\\"isPrivateChat\\\":false,\\\"burnDuration\\\":0,\\\"hasReadTime\\\":0,\\\"isEncryption\\\":false,\\\"inEncryptStatus\\\":false}}\",\"latestMsgSendTime\":1718801595913,\"draftText\":\"\",\"draftTextTime\":0,\"isPinned\":false,\"isPrivateChat\":false,\"burnDuration\":0,\"isNotInGroup\":false,\"updateUnreadCountTime\":0,\"attachedInfo\":\"\",\"ex\":\"\",\"maxSeq\":0,\"minSeq\":0,\"hasReadSeq\":0,\"msgDestructTime\":604800,\"isMsgDestruct\":false},{\"conversationID\":\"sg_161019322\",\"conversationType\":3,\"userID\":\"\",\"groupID\":\"161019322\",\"showName\":\"æĩč¯įž¤\",\"faceURL\":\"\",\"recvMsgOpt\":0,\"unreadCount\":0,\"groupAtType\":0,\"latestMsg\":\"{\\\"clientMsgID\\\":\\\"a3a3d6e0aeaf5ad4b2fdbe7707d6a185\\\",\\\"serverMsgID\\\":\\\"96d8ed55c12579dd32a7631eeedb0eaa\\\",\\\"createTime\\\":1718850240266,\\\"sendTime\\\":1718850240267,\\\"sessionType\\\":3,\\\"sendID\\\":\\\"imAdmin\\\",\\\"recvID\\\":\\\"161019322\\\",\\\"msgFrom\\\":200,\\\"contentType\\\":1504,\\\"senderPlatformID\\\":0,\\\"groupID\\\":\\\"161019322\\\",\\\"seq\\\":3,\\\"isRead\\\":false,\\\"status\\\":2,\\\"notificationElem\\\":{\\\"detail\\\":\\\"{\\\\\\\"group\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"161019322\\\\\\\",\\\\\\\"groupName\\\\\\\":\\\\\\\"æĩč¯įž¤\\\\\\\",\\\\\\\"notification\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"introduction\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"ownerUserID\\\\\\\":\\\\\\\"3923864156\\\\\\\",\\\\\\\"createTime\\\\\\\":1716449051809,\\\\\\\"memberCount\\\\\\\":2,\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"status\\\\\\\":0,\\\\\\\"creatorUserID\\\\\\\":\\\\\\\"3923864156\\\\\\\",\\\\\\\"groupType\\\\\\\":2,\\\\\\\"needVerification\\\\\\\":0,\\\\\\\"lookMemberInfo\\\\\\\":0,\\\\\\\"applyMemberFriend\\\\\\\":0,\\\\\\\"notificationUpdateTime\\\\\\\":0,\\\\\\\"notificationUserID\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"quitUser\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"161019322\\\\\\\",\\\\\\\"userID\\\\\\\":\\\\\\\"2725451243\\\\\\\",\\\\\\\"roleLevel\\\\\\\":20,\\\\\\\"joinTime\\\\\\\":1716449051811,\\\\\\\"nickname\\\\\\\":\\\\\\\"OpenIM-Andrew123\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"appMangerLevel\\\\\\\":0,\\\\\\\"joinSource\\\\\\\":2,\\\\\\\"operatorUserID\\\\\\\":\\\\\\\"3923864156\\\\\\\",\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"muteEndTime\\\\\\\":0,\\\\\\\"inviterUserID\\\\\\\":\\\\\\\"3923864156\\\\\\\"},\\\\\\\"operationTime\\\\\\\":0,\\\\\\\"groupMemberVersion\\\\\\\":4,\\\\\\\"groupMemberVersionID\\\\\\\":\\\\\\\"6672d39de27166fe7781173f\\\\\\\"}\\\"},\\\"attachedInfoElem\\\":{\\\"groupHasReadInfo\\\":{\\\"hasReadCount\\\":0,\\\"groupMemberCount\\\":0},\\\"isPrivateChat\\\":false,\\\"burnDuration\\\":0,\\\"hasReadTime\\\":0,\\\"isEncryption\\\":false,\\\"inEncryptStatus\\\":false}}\",\"latestMsgSendTime\":1718850240267,\"draftText\":\"\",\"draftTextTime\":0,\"isPinned\":false,\"isPrivateChat\":false,\"burnDuration\":0,\"isNotInGroup\":false,\"updateUnreadCountTime\":0,\"attachedInfo\":\"\",\"ex\":\"\",\"maxSeq\":0,\"minSeq\":0,\"hasReadSeq\":0,\"msgDestructTime\":604800,\"isMsgDestruct\":false},{\"conversationID\":\"sg_84614448\",\"conversationType\":3,\"userID\":\"\",\"groupID\":\"84614448\",\"showName\":\"įž¤č两æĄä¸åæļ厞č¯ģ\",\"faceURL\":\"\",\"recvMsgOpt\":0,\"unreadCount\":2,\"groupAtType\":0,\"latestMsg\":\"{\\\"clientMsgID\\\":\\\"dc01b2472ea8368fc12ed589b3483a16\\\",\\\"serverMsgID\\\":\\\"b920d2060e953bd0975219a79b17bb48\\\",\\\"createTime\\\":1718717329747,\\\"sendTime\\\":1718717329749,\\\"sessionType\\\":3,\\\"sendID\\\":\\\"imAdmin\\\",\\\"recvID\\\":\\\"84614448\\\",\\\"msgFrom\\\":200,\\\"contentType\\\":1504,\\\"senderPlatformID\\\":0,\\\"groupID\\\":\\\"84614448\\\",\\\"seq\\\":2,\\\"isRead\\\":false,\\\"status\\\":2,\\\"notificationElem\\\":{\\\"detail\\\":\\\"{\\\\\\\"group\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"84614448\\\\\\\",\\\\\\\"groupName\\\\\\\":\\\\\\\"įž¤č两æĄä¸åæļ厞č¯ģ\\\\\\\",\\\\\\\"notification\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"introduction\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"ownerUserID\\\\\\\":\\\\\\\"1695766238\\\\\\\",\\\\\\\"createTime\\\\\\\":1697015456454,\\\\\\\"memberCount\\\\\\\":1,\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"status\\\\\\\":0,\\\\\\\"creatorUserID\\\\\\\":\\\\\\\"1695766238\\\\\\\",\\\\\\\"groupType\\\\\\\":2,\\\\\\\"needVerification\\\\\\\":0,\\\\\\\"lookMemberInfo\\\\\\\":0,\\\\\\\"applyMemberFriend\\\\\\\":0,\\\\\\\"notificationUpdateTime\\\\\\\":0,\\\\\\\"notificationUserID\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"quitUser\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"84614448\\\\\\\",\\\\\\\"userID\\\\\\\":\\\\\\\"7009965934\\\\\\\",\\\\\\\"roleLevel\\\\\\\":20,\\\\\\\"joinTime\\\\\\\":1697015456456,\\\\\\\"nickname\\\\\\\":\\\\\\\"đâË¡Íāŧ¡ÍË*\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"https://web.rentsoft.cn/api_enterprise/object/7009965934/image_cropper_1697097350170.jpg\\\\\\\",\\\\\\\"appMangerLevel\\\\\\\":0,\\\\\\\"joinSource\\\\\\\":2,\\\\\\\"operatorUserID\\\\\\\":\\\\\\\"1695766238\\\\\\\",\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"muteEndTime\\\\\\\":0,\\\\\\\"inviterUserID\\\\\\\":\\\\\\\"1695766238\\\\\\\"},\\\\\\\"operationTime\\\\\\\":0,\\\\\\\"groupMemberVersion\\\\\\\":3,\\\\\\\"groupMemberVersionID\\\\\\\":\\\\\\\"666c4cf4959be80f994504aa\\\\\\\"}\\\"},\\\"attachedInfoElem\\\":{\\\"groupHasReadInfo\\\":{\\\"hasReadCount\\\":0,\\\"groupMemberCount\\\":0},\\\"isPrivateChat\\\":false,\\\"burnDuration\\\":0,\\\"hasReadTime\\\":0,\\\"isEncryption\\\":false,\\\"inEncryptStatus\\\":false}}\",\"latestMsgSendTime\":1718717329749,\"draftText\":\"\",\"draftTextTime\":0,\"isPinned\":false,\"isPrivateChat\":false,\"burnDuration\":0,\"isNotInGroup\":false,\"updateUnreadCountTime\":0,\"attachedInfo\":\"\",\"ex\":\"\",\"maxSeq\":0,\"minSeq\":0,\"hasReadSeq\":0,\"msgDestructTime\":604800,\"isMsgDestruct\":false},{\"conversationID\":\"sg_3927081813\",\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3927081813\",\"showName\":\"æ°´įĩč´š\",\"faceURL\":\"\",\"recvMsgOpt\":0,\"unreadCount\":1,\"groupAtType\":0,\"latestMsg\":\"{\\\"clientMsgID\\\":\\\"bb8f6da7b64c5019d05d11e5498b7ebe\\\",\\\"serverMsgID\\\":\\\"8377622d22ff842f509a1b8a1b5cf020\\\",\\\"createTime\\\":1718762537771,\\\"sendTime\\\":1718762537772,\\\"sessionType\\\":3,\\\"sendID\\\":\\\"imAdmin\\\",\\\"recvID\\\":\\\"3927081813\\\",\\\"msgFrom\\\":200,\\\"contentType\\\":1504,\\\"senderPlatformID\\\":0,\\\"groupID\\\":\\\"3927081813\\\",\\\"seq\\\":1,\\\"isRead\\\":false,\\\"status\\\":2,\\\"notificationElem\\\":{\\\"detail\\\":\\\"{\\\\\\\"group\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"3927081813\\\\\\\",\\\\\\\"groupName\\\\\\\":\\\\\\\"æ°´įĩč´š\\\\\\\",\\\\\\\"notification\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"introduction\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"ownerUserID\\\\\\\":\\\\\\\"2563100730\\\\\\\",\\\\\\\"createTime\\\\\\\":1693003223717,\\\\\\\"memberCount\\\\\\\":5,\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"status\\\\\\\":0,\\\\\\\"creatorUserID\\\\\\\":\\\\\\\"2563100730\\\\\\\",\\\\\\\"groupType\\\\\\\":2,\\\\\\\"needVerification\\\\\\\":0,\\\\\\\"lookMemberInfo\\\\\\\":0,\\\\\\\"applyMemberFriend\\\\\\\":0,\\\\\\\"notificationUpdateTime\\\\\\\":-28800000,\\\\\\\"notificationUserID\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"quitUser\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"3927081813\\\\\\\",\\\\\\\"userID\\\\\\\":\\\\\\\"5292156665\\\\\\\",\\\\\\\"roleLevel\\\\\\\":20,\\\\\\\"joinTime\\\\\\\":1693003223718,\\\\\\\"nickname\\\\\\\":\\\\\\\"Oliver\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"https://web.rentsoft.cn/api_enterprise/object/5292156665/storage/emulated/0/Android/data/io.openim.android.demo/cache/1706265155247/1706265148858.png\\\\\\\",\\\\\\\"appMangerLevel\\\\\\\":0,\\\\\\\"joinSource\\\\\\\":2,\\\\\\\"operatorUserID\\\\\\\":\\\\\\\"2563100730\\\\\\\",\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"muteEndTime\\\\\\\":-28800000,\\\\\\\"inviterUserID\\\\\\\":\\\\\\\"2563100730\\\\\\\"},\\\\\\\"operationTime\\\\\\\":0,\\\\\\\"groupMemberVersion\\\\\\\":1,\\\\\\\"groupMemberVersionID\\\\\\\":\\\\\\\"66723c29589c7c5fe709fe78\\\\\\\"}\\\"},\\\"attachedInfoElem\\\":{\\\"groupHasReadInfo\\\":{\\\"hasReadCount\\\":0,\\\"groupMemberCount\\\":0},\\\"isPrivateChat\\\":false,\\\"burnDuration\\\":0,\\\"hasReadTime\\\":0,\\\"isEncryption\\\":false,\\\"inEncryptStatus\\\":false}}\",\"latestMsgSendTime\":1718762537772,\"draftText\":\"\",\"draftTextTime\":0,\"isPinned\":false,\"isPrivateChat\":false,\"burnDuration\":0,\"isNotInGroup\":false,\"updateUnreadCountTime\":0,\"attachedInfo\":\"\",\"ex\":\"\",\"maxSeq\":0,\"minSeq\":0,\"hasReadSeq\":0,\"msgDestructTime\":604800,\"isMsgDestruct\":false},{\"conversationID\":\"sg_2300748497\",\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2300748497\",\"showName\":\"æĩč¯\",\"faceURL\":\"\",\"recvMsgOpt\":0,\"unreadCount\":2,\"groupAtType\":0,\"latestMsg\":\"{\\\"clientMsgID\\\":\\\"f2abda0ba3a3460dd9e06350b2fd0bdb\\\",\\\"serverMsgID\\\":\\\"d35e1a97576493ec2ab2ff3d077f4cdc\\\",\\\"createTime\\\":1718718570198,\\\"sendTime\\\":1718718570199,\\\"sessionType\\\":3,\\\"sendID\\\":\\\"imAdmin\\\",\\\"recvID\\\":\\\"2300748497\\\",\\\"msgFrom\\\":200,\\\"contentType\\\":1504,\\\"senderPlatformID\\\":0,\\\"groupID\\\":\\\"2300748497\\\",\\\"seq\\\":2,\\\"isRead\\\":false,\\\"status\\\":2,\\\"notificationElem\\\":{\\\"detail\\\":\\\"{\\\\\\\"group\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"2300748497\\\\\\\",\\\\\\\"groupName\\\\\\\":\\\\\\\"æĩč¯\\\\\\\",\\\\\\\"notification\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"introduction\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"ownerUserID\\\\\\\":\\\\\\\"2738308088\\\\\\\",\\\\\\\"createTime\\\\\\\":1692906300817,\\\\\\\"memberCount\\\\\\\":5,\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"status\\\\\\\":0,\\\\\\\"creatorUserID\\\\\\\":\\\\\\\"2738308088\\\\\\\",\\\\\\\"groupType\\\\\\\":2,\\\\\\\"needVerification\\\\\\\":0,\\\\\\\"lookMemberInfo\\\\\\\":0,\\\\\\\"applyMemberFriend\\\\\\\":0,\\\\\\\"notificationUpdateTime\\\\\\\":-28800000,\\\\\\\"notificationUserID\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"quitUser\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"2300748497\\\\\\\",\\\\\\\"userID\\\\\\\":\\\\\\\"3418577436\\\\\\\",\\\\\\\"roleLevel\\\\\\\":20,\\\\\\\"joinTime\\\\\\\":1692906300820,\\\\\\\"nickname\\\\\\\":\\\\\\\"OpenIM-skiffer\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"https://web.rentsoft.cn/api_enterprise/object/3418577436/BD14C2C1956AB2E1BD8A9F33E76220BE (1).jpg\\\\\\\",\\\\\\\"appMangerLevel\\\\\\\":0,\\\\\\\"joinSource\\\\\\\":2,\\\\\\\"operatorUserID\\\\\\\":\\\\\\\"2738308088\\\\\\\",\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"muteEndTime\\\\\\\":-28800000,\\\\\\\"inviterUserID\\\\\\\":\\\\\\\"2738308088\\\\\\\"},\\\\\\\"operationTime\\\\\\\":0,\\\\\\\"groupMemberVersion\\\\\\\":2,\\\\\\\"groupMemberVersionID\\\\\\\":\\\\\\\"66719001589c7c5fe709fe75\\\\\\\"}\\\"},\\\"attachedInfoElem\\\":{\\\"groupHasReadInfo\\\":{\\\"hasReadCount\\\":0,\\\"groupMemberCount\\\":0},\\\"isPrivateChat\\\":false,\\\"burnDuration\\\":0,\\\"hasReadTime\\\":0,\\\"isEncryption\\\":false,\\\"inEncryptStatus\\\":false}}\",\"latestMsgSendTime\":1718718570199,\"draftText\":\"\",\"draftTextTime\":0,\"isPinned\":false,\"isPrivateChat\":false,\"burnDuration\":0,\"isNotInGroup\":false,\"updateUnreadCountTime\":0,\"attachedInfo\":\"\",\"ex\":\"\",\"maxSeq\":0,\"minSeq\":0,\"hasReadSeq\":0,\"msgDestructTime\":604800,\"isMsgDestruct\":false},{\"conversationID\":\"sg_2836218947\",\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2836218947\",\"showName\":\"æĩč¯įž¤įŽĄį\",\"faceURL\":\"\",\"recvMsgOpt\":0,\"unreadCount\":0,\"groupAtType\":0,\"latestMsg\":\"{\\\"clientMsgID\\\":\\\"06284c5a5f10d1f472f5f8bc938b47a3\\\",\\\"serverMsgID\\\":\\\"bba734e36558164cfb5e40206ba26259\\\",\\\"createTime\\\":1718936592922,\\\"sendTime\\\":1718936592923,\\\"sessionType\\\":3,\\\"sendID\\\":\\\"imAdmin\\\",\\\"recvID\\\":\\\"2836218947\\\",\\\"msgFrom\\\":200,\\\"contentType\\\":1504,\\\"senderPlatformID\\\":0,\\\"groupID\\\":\\\"2836218947\\\",\\\"seq\\\":2,\\\"isRead\\\":false,\\\"status\\\":2,\\\"notificationElem\\\":{\\\"detail\\\":\\\"{\\\\\\\"group\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"2836218947\\\\\\\",\\\\\\\"groupName\\\\\\\":\\\\\\\"æĩč¯įž¤įŽĄį\\\\\\\",\\\\\\\"notification\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"introduction\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"ownerUserID\\\\\\\":\\\\\\\"4918276559\\\\\\\",\\\\\\\"createTime\\\\\\\":1715065335408,\\\\\\\"memberCount\\\\\\\":6,\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"status\\\\\\\":0,\\\\\\\"creatorUserID\\\\\\\":\\\\\\\"4918276559\\\\\\\",\\\\\\\"groupType\\\\\\\":2,\\\\\\\"needVerification\\\\\\\":0,\\\\\\\"lookMemberInfo\\\\\\\":1,\\\\\\\"applyMemberFriend\\\\\\\":1,\\\\\\\"notificationUpdateTime\\\\\\\":0,\\\\\\\"notificationUserID\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"quitUser\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"2836218947\\\\\\\",\\\\\\\"userID\\\\\\\":\\\\\\\"6319015024\\\\\\\",\\\\\\\"roleLevel\\\\\\\":20,\\\\\\\"joinTime\\\\\\\":1715065335409,\\\\\\\"nickname\\\\\\\":\\\\\\\"OpenIM-wind\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"https://web.rentsoft.cn/api_enterprise/object/6319015024/pexels-photo-2174974.webp\\\\\\\",\\\\\\\"appMangerLevel\\\\\\\":0,\\\\\\\"joinSource\\\\\\\":2,\\\\\\\"operatorUserID\\\\\\\":\\\\\\\"4918276559\\\\\\\",\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"muteEndTime\\\\\\\":0,\\\\\\\"inviterUserID\\\\\\\":\\\\\\\"4918276559\\\\\\\"},\\\\\\\"operationTime\\\\\\\":0,\\\\\\\"groupMemberVersion\\\\\\\":3,\\\\\\\"groupMemberVersionID\\\\\\\":\\\\\\\"6672d39de27166fe7781170c\\\\\\\"}\\\"},\\\"attachedInfoElem\\\":{\\\"groupHasReadInfo\\\":{\\\"hasReadCount\\\":0,\\\"groupMemberCount\\\":0},\\\"isPrivateChat\\\":false,\\\"burnDuration\\\":0,\\\"hasReadTime\\\":0,\\\"isEncryption\\\":false,\\\"inEncryptStatus\\\":false}}\",\"latestMsgSendTime\":1718936592923,\"draftText\":\"\",\"draftTextTime\":0,\"isPinned\":false,\"isPrivateChat\":false,\"burnDuration\":0,\"isNotInGroup\":false,\"updateUnreadCountTime\":0,\"attachedInfo\":\"\",\"ex\":\"\",\"maxSeq\":0,\"minSeq\":0,\"hasReadSeq\":0,\"msgDestructTime\":604800,\"isMsgDestruct\":false},{\"conversationID\":\"sg_1254300734\",\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1254300734\",\"showName\":\"fjh\",\"faceURL\":\"\",\"recvMsgOpt\":0,\"unreadCount\":1,\"groupAtType\":0,\"latestMsg\":\"{\\\"clientMsgID\\\":\\\"02756e84af58c58d3ad9cd320fed4a65\\\",\\\"serverMsgID\\\":\\\"58c48ac004f5769a44a8038c1b2e4f95\\\",\\\"createTime\\\":1718805424659,\\\"sendTime\\\":1718805424661,\\\"sessionType\\\":3,\\\"sendID\\\":\\\"imAdmin\\\",\\\"recvID\\\":\\\"1254300734\\\",\\\"msgFrom\\\":200,\\\"contentType\\\":1504,\\\"senderPlatformID\\\":0,\\\"groupID\\\":\\\"1254300734\\\",\\\"seq\\\":1,\\\"isRead\\\":false,\\\"status\\\":2,\\\"notificationElem\\\":{\\\"detail\\\":\\\"{\\\\\\\"group\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"1254300734\\\\\\\",\\\\\\\"groupName\\\\\\\":\\\\\\\"fjh\\\\\\\",\\\\\\\"notification\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"introduction\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"ownerUserID\\\\\\\":\\\\\\\"4681582191\\\\\\\",\\\\\\\"createTime\\\\\\\":1713582441625,\\\\\\\"memberCount\\\\\\\":9,\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"status\\\\\\\":0,\\\\\\\"creatorUserID\\\\\\\":\\\\\\\"4681582191\\\\\\\",\\\\\\\"groupType\\\\\\\":2,\\\\\\\"needVerification\\\\\\\":0,\\\\\\\"lookMemberInfo\\\\\\\":0,\\\\\\\"applyMemberFriend\\\\\\\":0,\\\\\\\"notificationUpdateTime\\\\\\\":0,\\\\\\\"notificationUserID\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"quitUser\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"1254300734\\\\\\\",\\\\\\\"userID\\\\\\\":\\\\\\\"2725451243\\\\\\\",\\\\\\\"roleLevel\\\\\\\":20,\\\\\\\"joinTime\\\\\\\":1713582441627,\\\\\\\"nickname\\\\\\\":\\\\\\\"OpenIM-Andrew123\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"appMangerLevel\\\\\\\":0,\\\\\\\"joinSource\\\\\\\":2,\\\\\\\"operatorUserID\\\\\\\":\\\\\\\"4681582191\\\\\\\",\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"muteEndTime\\\\\\\":0,\\\\\\\"inviterUserID\\\\\\\":\\\\\\\"4681582191\\\\\\\"},\\\\\\\"operationTime\\\\\\\":0,\\\\\\\"groupMemberVersion\\\\\\\":2,\\\\\\\"groupMemberVersionID\\\\\\\":\\\\\\\"6672d39de27166fe778116b5\\\\\\\"}\\\"},\\\"attachedInfoElem\\\":{\\\"groupHasReadInfo\\\":{\\\"hasReadCount\\\":0,\\\"groupMemberCount\\\":0},\\\"isPrivateChat\\\":false,\\\"burnDuration\\\":0,\\\"hasReadTime\\\":0,\\\"isEncryption\\\":false,\\\"inEncryptStatus\\\":false}}\",\"latestMsgSendTime\":1718805424661,\"draftText\":\"\",\"draftTextTime\":0,\"isPinned\":false,\"isPrivateChat\":false,\"burnDuration\":0,\"isNotInGroup\":false,\"updateUnreadCountTime\":0,\"attachedInfo\":\"\",\"ex\":\"\",\"maxSeq\":0,\"minSeq\":0,\"hasReadSeq\":0,\"msgDestructTime\":604800,\"isMsgDestruct\":false},{\"conversationID\":\"si_1695766238_7122229636\",\"conversationType\":1,\"userID\":\"7122229636\",\"groupID\":\"\",\"showName\":\"11111\",\"faceURL\":\"\",\"recvMsgOpt\":0,\"unreadCount\":0,\"groupAtType\":0,\"latestMsg\":\"{\\\"clientMsgID\\\":\\\"72d26994e64cd4cd2b5c31e19ac8d610\\\",\\\"serverMsgID\\\":\\\"2ea8653d8a929527d4f8c27cc76f9a47\\\",\\\"createTime\\\":1718953432951,\\\"sendTime\\\":1718953432952,\\\"sessionType\\\":1,\\\"sendID\\\":\\\"1695766238\\\",\\\"recvID\\\":\\\"7122229636\\\",\\\"msgFrom\\\":200,\\\"contentType\\\":1201,\\\"senderPlatformID\\\":0,\\\"seq\\\":1,\\\"isRead\\\":true,\\\"status\\\":2,\\\"notificationElem\\\":{\\\"detail\\\":\\\"{\\\\\\\"fromToUserID\\\\\\\":{\\\\\\\"fromUserID\\\\\\\":\\\\\\\"7122229636\\\\\\\",\\\\\\\"toUserID\\\\\\\":\\\\\\\"1695766238\\\\\\\"},\\\\\\\"handleMsg\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"friendVersion\\\\\\\":0,\\\\\\\"friendVersionID\\\\\\\":\\\\\\\"\\\\\\\"}\\\"},\\\"attachedInfoElem\\\":{\\\"groupHasReadInfo\\\":{\\\"hasReadCount\\\":0,\\\"groupMemberCount\\\":0},\\\"isPrivateChat\\\":false,\\\"burnDuration\\\":0,\\\"hasReadTime\\\":0,\\\"isEncryption\\\":false,\\\"inEncryptStatus\\\":false}}\",\"latestMsgSendTime\":1718953432952,\"draftText\":\"\",\"draftTextTime\":0,\"isPinned\":false,\"isPrivateChat\":false,\"burnDuration\":0,\"isNotInGroup\":false,\"updateUnreadCountTime\":0,\"attachedInfo\":\"\",\"ex\":\"\",\"maxSeq\":0,\"minSeq\":0,\"hasReadSeq\":0,\"msgDestructTime\":604800,\"isMsgDestruct\":false},{\"conversationID\":\"sg_3187706596\",\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3187706596\",\"showName\":\"éģčŽ¤įž¤-æĩč¯\",\"faceURL\":\"\",\"recvMsgOpt\":0,\"unreadCount\":0,\"groupAtType\":0,\"latestMsg\":\"{\\\"clientMsgID\\\":\\\"54f49dda390bd96e8c6107a9a8bb869b\\\",\\\"serverMsgID\\\":\\\"2ffca94228877bc102fe4be01aeba429\\\",\\\"createTime\\\":1718953433111,\\\"sendTime\\\":1718953433112,\\\"sessionType\\\":3,\\\"sendID\\\":\\\"imAdmin\\\",\\\"recvID\\\":\\\"3187706596\\\",\\\"msgFrom\\\":200,\\\"contentType\\\":1509,\\\"senderPlatformID\\\":0,\\\"groupID\\\":\\\"3187706596\\\",\\\"seq\\\":3,\\\"isRead\\\":false,\\\"status\\\":2,\\\"notificationElem\\\":{\\\"detail\\\":\\\"{\\\\\\\"group\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"3187706596\\\\\\\",\\\\\\\"groupName\\\\\\\":\\\\\\\"éģčŽ¤įž¤-æĩč¯\\\\\\\",\\\\\\\"notification\\\\\\\":\\\\\\\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\\\\\\\nhttps://github.com/open-kf/rag-gpt\\\\\\\\n\\\\\\\",\\\\\\\"introduction\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"ownerUserID\\\\\\\":\\\\\\\"7497605401\\\\\\\",\\\\\\\"createTime\\\\\\\":1692559307052,\\\\\\\"memberCount\\\\\\\":3902,\\\\\\\"ex\\\\\\\":\\\\\\\"xxx\\\\\\\",\\\\\\\"status\\\\\\\":0,\\\\\\\"creatorUserID\\\\\\\":\\\\\\\"7009965934\\\\\\\",\\\\\\\"groupType\\\\\\\":2,\\\\\\\"needVerification\\\\\\\":0,\\\\\\\"lookMemberInfo\\\\\\\":0,\\\\\\\"applyMemberFriend\\\\\\\":0,\\\\\\\"notificationUpdateTime\\\\\\\":1716968428635,\\\\\\\"notificationUserID\\\\\\\":\\\\\\\"3418577436\\\\\\\"},\\\\\\\"opUser\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"3187706596\\\\\\\",\\\\\\\"userID\\\\\\\":\\\\\\\"imAdmin\\\\\\\",\\\\\\\"roleLevel\\\\\\\":60,\\\\\\\"joinTime\\\\\\\":0,\\\\\\\"nickname\\\\\\\":\\\\\\\"admin\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"appMangerLevel\\\\\\\":2,\\\\\\\"joinSource\\\\\\\":0,\\\\\\\"operatorUserID\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"muteEndTime\\\\\\\":0,\\\\\\\"inviterUserID\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"invitedUserList\\\\\\\":[{\\\\\\\"groupID\\\\\\\":\\\\\\\"3187706596\\\\\\\",\\\\\\\"userID\\\\\\\":\\\\\\\"7122229636\\\\\\\",\\\\\\\"roleLevel\\\\\\\":20,\\\\\\\"joinTime\\\\\\\":1718953432960,\\\\\\\"nickname\\\\\\\":\\\\\\\"11111\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"appMangerLevel\\\\\\\":0,\\\\\\\"joinSource\\\\\\\":2,\\\\\\\"operatorUserID\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"muteEndTime\\\\\\\":0,\\\\\\\"inviterUserID\\\\\\\":\\\\\\\"\\\\\\\"}],\\\\\\\"operationTime\\\\\\\":0,\\\\\\\"groupMemberVersion\\\\\\\":4,\\\\\\\"groupMemberVersionID\\\\\\\":\\\\\\\"6672d39de27166fe77811717\\\\\\\"}\\\"},\\\"attachedInfoElem\\\":{\\\"groupHasReadInfo\\\":{\\\"hasReadCount\\\":0,\\\"groupMemberCount\\\":0},\\\"isPrivateChat\\\":false,\\\"burnDuration\\\":0,\\\"hasReadTime\\\":0,\\\"isEncryption\\\":false,\\\"inEncryptStatus\\\":false}}\",\"latestMsgSendTime\":1718953433112,\"draftText\":\"\",\"draftTextTime\":0,\"isPinned\":false,\"isPrivateChat\":false,\"burnDuration\":0,\"isNotInGroup\":false,\"updateUnreadCountTime\":0,\"attachedInfo\":\"\",\"ex\":\"\",\"maxSeq\":0,\"minSeq\":0,\"hasReadSeq\":0,\"msgDestructTime\":604800,\"isMsgDestruct\":false},{\"conversationID\":\"sg_105081877\",\"conversationType\":3,\"userID\":\"\",\"groupID\":\"105081877\",\"showName\":\"d\",\"faceURL\":\"\",\"recvMsgOpt\":0,\"unreadCount\":0,\"groupAtType\":0,\"latestMsg\":\"{\\\"clientMsgID\\\":\\\"edc317755ca9c374d7a42e270abe5bc3\\\",\\\"serverMsgID\\\":\\\"db07a9027981f628e056ba6f18774eff\\\",\\\"createTime\\\":1718937610489,\\\"sendTime\\\":1718937610490,\\\"sessionType\\\":3,\\\"sendID\\\":\\\"imAdmin\\\",\\\"recvID\\\":\\\"105081877\\\",\\\"msgFrom\\\":200,\\\"contentType\\\":1504,\\\"senderPlatformID\\\":0,\\\"groupID\\\":\\\"105081877\\\",\\\"seq\\\":2,\\\"isRead\\\":false,\\\"status\\\":2,\\\"notificationElem\\\":{\\\"detail\\\":\\\"{\\\\\\\"group\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"105081877\\\\\\\",\\\\\\\"groupName\\\\\\\":\\\\\\\"d\\\\\\\",\\\\\\\"notification\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"introduction\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"ownerUserID\\\\\\\":\\\\\\\"5248385191\\\\\\\",\\\\\\\"createTime\\\\\\\":1710490825413,\\\\\\\"memberCount\\\\\\\":5,\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"status\\\\\\\":0,\\\\\\\"creatorUserID\\\\\\\":\\\\\\\"5248385191\\\\\\\",\\\\\\\"groupType\\\\\\\":2,\\\\\\\"needVerification\\\\\\\":0,\\\\\\\"lookMemberInfo\\\\\\\":0,\\\\\\\"applyMemberFriend\\\\\\\":0,\\\\\\\"notificationUpdateTime\\\\\\\":0,\\\\\\\"notificationUserID\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"quitUser\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"105081877\\\\\\\",\\\\\\\"userID\\\\\\\":\\\\\\\"5292156665\\\\\\\",\\\\\\\"roleLevel\\\\\\\":20,\\\\\\\"joinTime\\\\\\\":1710490848503,\\\\\\\"nickname\\\\\\\":\\\\\\\"Oliver\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"https://web.rentsoft.cn/api_enterprise/object/5292156665/storage/emulated/0/Android/data/io.openim.android.demo/cache/1706265155247/1706265148858.png\\\\\\\",\\\\\\\"appMangerLevel\\\\\\\":0,\\\\\\\"joinSource\\\\\\\":2,\\\\\\\"operatorUserID\\\\\\\":\\\\\\\"5248385191\\\\\\\",\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"muteEndTime\\\\\\\":0,\\\\\\\"inviterUserID\\\\\\\":\\\\\\\"5248385191\\\\\\\"},\\\\\\\"operationTime\\\\\\\":0,\\\\\\\"groupMemberVersion\\\\\\\":2,\\\\\\\"groupMemberVersionID\\\\\\\":\\\\\\\"6672d39de27166fe77811753\\\\\\\"}\\\"},\\\"attachedInfoElem\\\":{\\\"groupHasReadInfo\\\":{\\\"hasReadCount\\\":0,\\\"groupMemberCount\\\":0},\\\"isPrivateChat\\\":false,\\\"burnDuration\\\":0,\\\"hasReadTime\\\":0,\\\"isEncryption\\\":false,\\\"inEncryptStatus\\\":false}}\",\"latestMsgSendTime\":1718937610490,\"draftText\":\"\",\"draftTextTime\":0,\"isPinned\":false,\"isPrivateChat\":false,\"burnDuration\":0,\"isNotInGroup\":false,\"updateUnreadCountTime\":0,\"attachedInfo\":\"\",\"ex\":\"\",\"maxSeq\":0,\"minSeq\":0,\"hasReadSeq\":0,\"msgDestructTime\":604800,\"isMsgDestruct\":false},{\"conversationID\":\"sg_1177987017\",\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1177987017\",\"showName\":\"123123\",\"faceURL\":\"\",\"recvMsgOpt\":0,\"unreadCount\":2,\"groupAtType\":0,\"latestMsg\":\"{\\\"clientMsgID\\\":\\\"93ce372f1170782d5961e3831c9e7d30\\\",\\\"serverMsgID\\\":\\\"c5ee404e47c5b104d38baae24bea8d98\\\",\\\"createTime\\\":1718373366841,\\\"sendTime\\\":1718373366842,\\\"sessionType\\\":3,\\\"sendID\\\":\\\"imAdmin\\\",\\\"recvID\\\":\\\"1177987017\\\",\\\"msgFrom\\\":200,\\\"contentType\\\":1504,\\\"senderPlatformID\\\":0,\\\"groupID\\\":\\\"1177987017\\\",\\\"seq\\\":2,\\\"isRead\\\":false,\\\"status\\\":2,\\\"notificationElem\\\":{\\\"detail\\\":\\\"{\\\\\\\"group\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"1177987017\\\\\\\",\\\\\\\"groupName\\\\\\\":\\\\\\\"123123\\\\\\\",\\\\\\\"notification\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"introduction\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"ownerUserID\\\\\\\":\\\\\\\"1695766238\\\\\\\",\\\\\\\"createTime\\\\\\\":1705046435331,\\\\\\\"memberCount\\\\\\\":1,\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"status\\\\\\\":0,\\\\\\\"creatorUserID\\\\\\\":\\\\\\\"1695766238\\\\\\\",\\\\\\\"groupType\\\\\\\":2,\\\\\\\"needVerification\\\\\\\":0,\\\\\\\"lookMemberInfo\\\\\\\":0,\\\\\\\"applyMemberFriend\\\\\\\":0,\\\\\\\"notificationUpdateTime\\\\\\\":0,\\\\\\\"notificationUserID\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"quitUser\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"1177987017\\\\\\\",\\\\\\\"userID\\\\\\\":\\\\\\\"4911414951\\\\\\\",\\\\\\\"roleLevel\\\\\\\":20,\\\\\\\"joinTime\\\\\\\":1705046985971,\\\\\\\"nickname\\\\\\\":\\\\\\\"OpenimAnd-Jane\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"https://web.rentsoft.cn/api_enterprise/object/4911414951/image_2024-05-06-20-59.111.png\\\\\\\",\\\\\\\"appMangerLevel\\\\\\\":0,\\\\\\\"joinSource\\\\\\\":2,\\\\\\\"operatorUserID\\\\\\\":\\\\\\\"1695766238\\\\\\\",\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"muteEndTime\\\\\\\":0,\\\\\\\"inviterUserID\\\\\\\":\\\\\\\"1695766238\\\\\\\"},\\\\\\\"operationTime\\\\\\\":0,\\\\\\\"groupMemberVersion\\\\\\\":3}\\\"},\\\"attachedInfoElem\\\":{\\\"groupHasReadInfo\\\":{\\\"hasReadCount\\\":0,\\\"groupMemberCount\\\":0},\\\"isPrivateChat\\\":false,\\\"burnDuration\\\":0,\\\"hasReadTime\\\":0,\\\"isEncryption\\\":false,\\\"inEncryptStatus\\\":false}}\",\"latestMsgSendTime\":1718373366842,\"draftText\":\"\",\"draftTextTime\":0,\"isPinned\":false,\"isPrivateChat\":false,\"burnDuration\":0,\"isNotInGroup\":false,\"updateUnreadCountTime\":0,\"attachedInfo\":\"\",\"ex\":\"\",\"maxSeq\":0,\"minSeq\":0,\"hasReadSeq\":0,\"msgDestructTime\":604800,\"isMsgDestruct\":false},{\"conversationID\":\"sg_3926645279\",\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3926645279\",\"showName\":\"yo123\",\"faceURL\":\"faceURL url\",\"recvMsgOpt\":0,\"unreadCount\":13,\"groupAtType\":0,\"latestMsg\":\"{\\\"clientMsgID\\\":\\\"b7312f062ea8c5203a747f577d891096\\\",\\\"serverMsgID\\\":\\\"c6d35a7f550bda5f52d74f17281dc8a3\\\",\\\"createTime\\\":1719040920865,\\\"sendTime\\\":1719040920868,\\\"sessionType\\\":3,\\\"sendID\\\":\\\"imAdmin\\\",\\\"recvID\\\":\\\"3926645279\\\",\\\"msgFrom\\\":200,\\\"contentType\\\":1507,\\\"senderPlatformID\\\":0,\\\"groupID\\\":\\\"3926645279\\\",\\\"seq\\\":18,\\\"isRead\\\":false,\\\"status\\\":2,\\\"notificationElem\\\":{\\\"detail\\\":\\\"{\\\\\\\"group\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"3926645279\\\\\\\",\\\\\\\"groupName\\\\\\\":\\\\\\\"yo123\\\\\\\",\\\\\\\"notification\\\\\\\":\\\\\\\"new notification\\\\\\\",\\\\\\\"introduction\\\\\\\":\\\\\\\"new notification\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"faceURL url\\\\\\\",\\\\\\\"ownerUserID\\\\\\\":\\\\\\\"1695766238\\\\\\\",\\\\\\\"createTime\\\\\\\":1718952270504,\\\\\\\"memberCount\\\\\\\":2,\\\\\\\"ex\\\\\\\":\\\\\\\"new ex\\\\\\\",\\\\\\\"status\\\\\\\":0,\\\\\\\"creatorUserID\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"groupType\\\\\\\":2,\\\\\\\"needVerification\\\\\\\":1,\\\\\\\"lookMemberInfo\\\\\\\":1,\\\\\\\"applyMemberFriend\\\\\\\":1,\\\\\\\"notificationUpdateTime\\\\\\\":1718968191355,\\\\\\\"notificationUserID\\\\\\\":\\\\\\\"imAdmin\\\\\\\"},\\\\\\\"opUser\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"3926645279\\\\\\\",\\\\\\\"userID\\\\\\\":\\\\\\\"imAdmin\\\\\\\",\\\\\\\"roleLevel\\\\\\\":60,\\\\\\\"joinTime\\\\\\\":0,\\\\\\\"nickname\\\\\\\":\\\\\\\"admin\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"appMangerLevel\\\\\\\":2,\\\\\\\"joinSource\\\\\\\":0,\\\\\\\"operatorUserID\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"muteEndTime\\\\\\\":0,\\\\\\\"inviterUserID\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"newGroupOwner\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"3926645279\\\\\\\",\\\\\\\"userID\\\\\\\":\\\\\\\"1695766238\\\\\\\",\\\\\\\"roleLevel\\\\\\\":100,\\\\\\\"joinTime\\\\\\\":1718968462104,\\\\\\\"nickname\\\\\\\":\\\\\\\"OpenIM-Gordon\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\\\\\\\",\\\\\\\"appMangerLevel\\\\\\\":0,\\\\\\\"joinSource\\\\\\\":2,\\\\\\\"operatorUserID\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"muteEndTime\\\\\\\":0,\\\\\\\"inviterUserID\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"oldGroupOwner\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"operationTime\\\\\\\":0,\\\\\\\"oldGroupOwnerInfo\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"3926645279\\\\\\\",\\\\\\\"userID\\\\\\\":\\\\\\\"2882899447\\\\\\\",\\\\\\\"roleLevel\\\\\\\":20,\\\\\\\"joinTime\\\\\\\":1718952270506,\\\\\\\"nickname\\\\\\\":\\\\\\\"OpenIM-blooming\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\\\\\\\",\\\\\\\"appMangerLevel\\\\\\\":0,\\\\\\\"joinSource\\\\\\\":2,\\\\\\\"operatorUserID\\\\\\\":\\\\\\\"imAdmin\\\\\\\",\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"muteEndTime\\\\\\\":0,\\\\\\\"inviterUserID\\\\\\\":\\\\\\\"imAdmin\\\\\\\"},\\\\\\\"groupMemberVersion\\\\\\\":24,\\\\\\\"groupMemberVersionID\\\\\\\":\\\\\\\"6675214eac4b76626468fef5\\\\\\\"}\\\"},\\\"attachedInfoElem\\\":{\\\"groupHasReadInfo\\\":{\\\"hasReadCount\\\":0,\\\"groupMemberCount\\\":0},\\\"isPrivateChat\\\":false,\\\"burnDuration\\\":0,\\\"hasReadTime\\\":0,\\\"isEncryption\\\":false,\\\"inEncryptStatus\\\":false}}\",\"latestMsgSendTime\":1719040920868,\"draftText\":\"\",\"draftTextTime\":0,\"isPinned\":false,\"isPrivateChat\":false,\"burnDuration\":0,\"isNotInGroup\":false,\"updateUnreadCountTime\":0,\"attachedInfo\":\"\",\"ex\":\"\",\"maxSeq\":0,\"minSeq\":0,\"hasReadSeq\":0,\"msgDestructTime\":604800,\"isMsgDestruct\":false}]"}
+2024-06-24 10:57:04.137 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:670] OnNewConversation returnList is {"operationID": "1719197813759468572"}
+2024-06-24 10:57:04.150 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:399] insert msg {"operationID": "1719197817604066041", "cost time": 0.6501312, "len": 13}
+2024-06-24 10:57:04.150 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_notification.go:50] NotificationCmd end {"operationID": "1719197817604066041", "cmd": "005", "value": {"Msgs":{"sg_105081877":{"Msgs":[{"sendID":"imAdmin","recvID":"105081877","groupID":"105081877","clientMsgID":"edc317755ca9c374d7a42e270abe5bc3","serverMsgID":"db07a9027981f628e056ba6f18774eff","senderPlatformID":0,"senderNickname":"","senderFaceURL":"","sessionType":3,"msgFrom":200,"contentType":1504,"content":"eyJkZXRhaWwiOiJ7XCJncm91cFwiOntcImdyb3VwSURcIjpcIjEwNTA4MTg3N1wiLFwiZ3JvdXBOYW1lXCI6XCJkXCIsXCJub3RpZmljYXRpb25cIjpcIlwiLFwiaW50cm9kdWN0aW9uXCI6XCJcIixcImZhY2VVUkxcIjpcIlwiLFwib3duZXJVc2VySURcIjpcIjUyNDgzODUxOTFcIixcImNyZWF0ZVRpbWVcIjoxNzEwNDkwODI1NDEzLFwibWVtYmVyQ291bnRcIjo1LFwiZXhcIjpcIlwiLFwic3RhdHVzXCI6MCxcImNyZWF0b3JVc2VySURcIjpcIjUyNDgzODUxOTFcIixcImdyb3VwVHlwZVwiOjIsXCJuZWVkVmVyaWZpY2F0aW9uXCI6MCxcImxvb2tNZW1iZXJJbmZvXCI6MCxcImFwcGx5TWVtYmVyRnJpZW5kXCI6MCxcIm5vdGlmaWNhdGlvblVwZGF0ZVRpbWVcIjowLFwibm90aWZpY2F0aW9uVXNlcklEXCI6XCJcIn0sXCJxdWl0VXNlclwiOntcImdyb3VwSURcIjpcIjEwNTA4MTg3N1wiLFwidXNlcklEXCI6XCI1MjkyMTU2NjY1XCIsXCJyb2xlTGV2ZWxcIjoyMCxcImpvaW5UaW1lXCI6MTcxMDQ5MDg0ODUwMyxcIm5pY2tuYW1lXCI6XCJPbGl2ZXJcIixcImZhY2VVUkxcIjpcImh0dHBzOi8vd2ViLnJlbnRzb2Z0LmNuL2FwaV9lbnRlcnByaXNlL29iamVjdC81MjkyMTU2NjY1L3N0b3JhZ2UvZW11bGF0ZWQvMC9BbmRyb2lkL2RhdGEvaW8ub3BlbmltLmFuZHJvaWQuZGVtby9jYWNoZS8xNzA2MjY1MTU1MjQ3LzE3MDYyNjUxNDg4NTgucG5nXCIsXCJhcHBNYW5nZXJMZXZlbFwiOjAsXCJqb2luU291cmNlXCI6MixcIm9wZXJhdG9yVXNlcklEXCI6XCI1MjQ4Mzg1MTkxXCIsXCJleFwiOlwiXCIsXCJtdXRlRW5kVGltZVwiOjAsXCJpbnZpdGVyVXNlcklEXCI6XCI1MjQ4Mzg1MTkxXCJ9LFwib3BlcmF0aW9uVGltZVwiOjAsXCJncm91cE1lbWJlclZlcnNpb25cIjoyLFwiZ3JvdXBNZW1iZXJWZXJzaW9uSURcIjpcIjY2NzJkMzlkZTI3MTY2ZmU3NzgxMTc1M1wifSJ9","seq":2,"sendTime":1718937610490,"createTime":1718937610489,"status":0,"isRead":false,"options":{"offlinePush":false,"unreadCount":false},"offlinePushInfo":{"title":"","desc":"","ex":"","iOSPushSound":"","iOSBadgeCount":false,"signalInfo":""},"atUserIDList":null,"attachedInfo":"","ex":""}],"isEnd":true},"sg_1177987017":{"Msgs":[{"sendID":"imAdmin","recvID":"1177987017","groupID":"1177987017","clientMsgID":"93ce372f1170782d5961e3831c9e7d30","serverMsgID":"c5ee404e47c5b104d38baae24bea8d98","senderPlatformID":0,"senderNickname":"","senderFaceURL":"","sessionType":3,"msgFrom":200,"contentType":1504,"content":"eyJkZXRhaWwiOiJ7XCJncm91cFwiOntcImdyb3VwSURcIjpcIjExNzc5ODcwMTdcIixcImdyb3VwTmFtZVwiOlwiMTIzMTIzXCIsXCJub3RpZmljYXRpb25cIjpcIlwiLFwiaW50cm9kdWN0aW9uXCI6XCJcIixcImZhY2VVUkxcIjpcIlwiLFwib3duZXJVc2VySURcIjpcIjE2OTU3NjYyMzhcIixcImNyZWF0ZVRpbWVcIjoxNzA1MDQ2NDM1MzMxLFwibWVtYmVyQ291bnRcIjoxLFwiZXhcIjpcIlwiLFwic3RhdHVzXCI6MCxcImNyZWF0b3JVc2VySURcIjpcIjE2OTU3NjYyMzhcIixcImdyb3VwVHlwZVwiOjIsXCJuZWVkVmVyaWZpY2F0aW9uXCI6MCxcImxvb2tNZW1iZXJJbmZvXCI6MCxcImFwcGx5TWVtYmVyRnJpZW5kXCI6MCxcIm5vdGlmaWNhdGlvblVwZGF0ZVRpbWVcIjowLFwibm90aWZpY2F0aW9uVXNlcklEXCI6XCJcIn0sXCJxdWl0VXNlclwiOntcImdyb3VwSURcIjpcIjExNzc5ODcwMTdcIixcInVzZXJJRFwiOlwiNDkxMTQxNDk1MVwiLFwicm9sZUxldmVsXCI6MjAsXCJqb2luVGltZVwiOjE3MDUwNDY5ODU5NzEsXCJuaWNrbmFtZVwiOlwiT3BlbmltQW5kLUphbmVcIixcImZhY2VVUkxcIjpcImh0dHBzOi8vd2ViLnJlbnRzb2Z0LmNuL2FwaV9lbnRlcnByaXNlL29iamVjdC80OTExNDE0OTUxL2ltYWdlXzIwMjQtMDUtMDYtMjAtNTkuMTExLnBuZ1wiLFwiYXBwTWFuZ2VyTGV2ZWxcIjowLFwiam9pblNvdXJjZVwiOjIsXCJvcGVyYXRvclVzZXJJRFwiOlwiMTY5NTc2NjIzOFwiLFwiZXhcIjpcIlwiLFwibXV0ZUVuZFRpbWVcIjowLFwiaW52aXRlclVzZXJJRFwiOlwiMTY5NTc2NjIzOFwifSxcIm9wZXJhdGlvblRpbWVcIjowLFwiZ3JvdXBNZW1iZXJWZXJzaW9uXCI6M30ifQ==","seq":2,"sendTime":1718373366842,"createTime":1718373366841,"status":0,"isRead":false,"options":{"offlinePush":false,"unreadCount":false},"offlinePushInfo":{"title":"","desc":"","ex":"","iOSPushSound":"","iOSBadgeCount":false,"signalInfo":""},"atUserIDList":null,"attachedInfo":"","ex":""}],"isEnd":true},"sg_1254300734":{"Msgs":[{"sendID":"imAdmin","recvID":"1254300734","groupID":"1254300734","clientMsgID":"02756e84af58c58d3ad9cd320fed4a65","serverMsgID":"58c48ac004f5769a44a8038c1b2e4f95","senderPlatformID":0,"senderNickname":"","senderFaceURL":"","sessionType":3,"msgFrom":200,"contentType":1504,"content":"eyJkZXRhaWwiOiJ7XCJncm91cFwiOntcImdyb3VwSURcIjpcIjEyNTQzMDA3MzRcIixcImdyb3VwTmFtZVwiOlwiZmpoXCIsXCJub3RpZmljYXRpb25cIjpcIlwiLFwiaW50cm9kdWN0aW9uXCI6XCJcIixcImZhY2VVUkxcIjpcIlwiLFwib3duZXJVc2VySURcIjpcIjQ2ODE1ODIxOTFcIixcImNyZWF0ZVRpbWVcIjoxNzEzNTgyNDQxNjI1LFwibWVtYmVyQ291bnRcIjo5LFwiZXhcIjpcIlwiLFwic3RhdHVzXCI6MCxcImNyZWF0b3JVc2VySURcIjpcIjQ2ODE1ODIxOTFcIixcImdyb3VwVHlwZVwiOjIsXCJuZWVkVmVyaWZpY2F0aW9uXCI6MCxcImxvb2tNZW1iZXJJbmZvXCI6MCxcImFwcGx5TWVtYmVyRnJpZW5kXCI6MCxcIm5vdGlmaWNhdGlvblVwZGF0ZVRpbWVcIjowLFwibm90aWZpY2F0aW9uVXNlcklEXCI6XCJcIn0sXCJxdWl0VXNlclwiOntcImdyb3VwSURcIjpcIjEyNTQzMDA3MzRcIixcInVzZXJJRFwiOlwiMjcyNTQ1MTI0M1wiLFwicm9sZUxldmVsXCI6MjAsXCJqb2luVGltZVwiOjE3MTM1ODI0NDE2MjcsXCJuaWNrbmFtZVwiOlwiT3BlbklNLUFuZHJldzEyM1wiLFwiZmFjZVVSTFwiOlwiXCIsXCJhcHBNYW5nZXJMZXZlbFwiOjAsXCJqb2luU291cmNlXCI6MixcIm9wZXJhdG9yVXNlcklEXCI6XCI0NjgxNTgyMTkxXCIsXCJleFwiOlwiXCIsXCJtdXRlRW5kVGltZVwiOjAsXCJpbnZpdGVyVXNlcklEXCI6XCI0NjgxNTgyMTkxXCJ9LFwib3BlcmF0aW9uVGltZVwiOjAsXCJncm91cE1lbWJlclZlcnNpb25cIjoyLFwiZ3JvdXBNZW1iZXJWZXJzaW9uSURcIjpcIjY2NzJkMzlkZTI3MTY2ZmU3NzgxMTZiNVwifSJ9","seq":1,"sendTime":1718805424661,"createTime":1718805424659,"status":0,"isRead":false,"options":{"offlinePush":false,"unreadCount":false},"offlinePushInfo":{"title":"","desc":"","ex":"","iOSPushSound":"","iOSBadgeCount":false,"signalInfo":""},"atUserIDList":null,"attachedInfo":"","ex":""}],"isEnd":true},"sg_161019322":{"Msgs":[{"sendID":"imAdmin","recvID":"161019322","groupID":"161019322","clientMsgID":"a3a3d6e0aeaf5ad4b2fdbe7707d6a185","serverMsgID":"96d8ed55c12579dd32a7631eeedb0eaa","senderPlatformID":0,"senderNickname":"","senderFaceURL":"","sessionType":3,"msgFrom":200,"contentType":1504,"content":"eyJkZXRhaWwiOiJ7XCJncm91cFwiOntcImdyb3VwSURcIjpcIjE2MTAxOTMyMlwiLFwiZ3JvdXBOYW1lXCI6XCLmtYvor5XnvqRcIixcIm5vdGlmaWNhdGlvblwiOlwiXCIsXCJpbnRyb2R1Y3Rpb25cIjpcIlwiLFwiZmFjZVVSTFwiOlwiXCIsXCJvd25lclVzZXJJRFwiOlwiMzkyMzg2NDE1NlwiLFwiY3JlYXRlVGltZVwiOjE3MTY0NDkwNTE4MDksXCJtZW1iZXJDb3VudFwiOjIsXCJleFwiOlwiXCIsXCJzdGF0dXNcIjowLFwiY3JlYXRvclVzZXJJRFwiOlwiMzkyMzg2NDE1NlwiLFwiZ3JvdXBUeXBlXCI6MixcIm5lZWRWZXJpZmljYXRpb25cIjowLFwibG9va01lbWJlckluZm9cIjowLFwiYXBwbHlNZW1iZXJGcmllbmRcIjowLFwibm90aWZpY2F0aW9uVXBkYXRlVGltZVwiOjAsXCJub3RpZmljYXRpb25Vc2VySURcIjpcIlwifSxcInF1aXRVc2VyXCI6e1wiZ3JvdXBJRFwiOlwiMTYxMDE5MzIyXCIsXCJ1c2VySURcIjpcIjI3MjU0NTEyNDNcIixcInJvbGVMZXZlbFwiOjIwLFwiam9pblRpbWVcIjoxNzE2NDQ5MDUxODExLFwibmlja25hbWVcIjpcIk9wZW5JTS1BbmRyZXcxMjNcIixcImZhY2VVUkxcIjpcIlwiLFwiYXBwTWFuZ2VyTGV2ZWxcIjowLFwiam9pblNvdXJjZVwiOjIsXCJvcGVyYXRvclVzZXJJRFwiOlwiMzkyMzg2NDE1NlwiLFwiZXhcIjpcIlwiLFwibXV0ZUVuZFRpbWVcIjowLFwiaW52aXRlclVzZXJJRFwiOlwiMzkyMzg2NDE1NlwifSxcIm9wZXJhdGlvblRpbWVcIjowLFwiZ3JvdXBNZW1iZXJWZXJzaW9uXCI6NCxcImdyb3VwTWVtYmVyVmVyc2lvbklEXCI6XCI2NjcyZDM5ZGUyNzE2NmZlNzc4MTE3M2ZcIn0ifQ==","seq":3,"sendTime":1718850240267,"createTime":1718850240266,"status":0,"isRead":false,"options":{"offlinePush":false,"unreadCount":false},"offlinePushInfo":{"title":"","desc":"","ex":"","iOSPushSound":"","iOSBadgeCount":false,"signalInfo":""},"atUserIDList":null,"attachedInfo":"","ex":""}],"isEnd":true},"sg_2300748497":{"Msgs":[{"sendID":"imAdmin","recvID":"2300748497","groupID":"2300748497","clientMsgID":"f2abda0ba3a3460dd9e06350b2fd0bdb","serverMsgID":"d35e1a97576493ec2ab2ff3d077f4cdc","senderPlatformID":0,"senderNickname":"","senderFaceURL":"","sessionType":3,"msgFrom":200,"contentType":1504,"content":"eyJkZXRhaWwiOiJ7XCJncm91cFwiOntcImdyb3VwSURcIjpcIjIzMDA3NDg0OTdcIixcImdyb3VwTmFtZVwiOlwi5rWL6K+VXCIsXCJub3RpZmljYXRpb25cIjpcIlwiLFwiaW50cm9kdWN0aW9uXCI6XCJcIixcImZhY2VVUkxcIjpcIlwiLFwib3duZXJVc2VySURcIjpcIjI3MzgzMDgwODhcIixcImNyZWF0ZVRpbWVcIjoxNjkyOTA2MzAwODE3LFwibWVtYmVyQ291bnRcIjo1LFwiZXhcIjpcIlwiLFwic3RhdHVzXCI6MCxcImNyZWF0b3JVc2VySURcIjpcIjI3MzgzMDgwODhcIixcImdyb3VwVHlwZVwiOjIsXCJuZWVkVmVyaWZpY2F0aW9uXCI6MCxcImxvb2tNZW1iZXJJbmZvXCI6MCxcImFwcGx5TWVtYmVyRnJpZW5kXCI6MCxcIm5vdGlmaWNhdGlvblVwZGF0ZVRpbWVcIjotMjg4MDAwMDAsXCJub3RpZmljYXRpb25Vc2VySURcIjpcIlwifSxcInF1aXRVc2VyXCI6e1wiZ3JvdXBJRFwiOlwiMjMwMDc0ODQ5N1wiLFwidXNlcklEXCI6XCIzNDE4NTc3NDM2XCIsXCJyb2xlTGV2ZWxcIjoyMCxcImpvaW5UaW1lXCI6MTY5MjkwNjMwMDgyMCxcIm5pY2tuYW1lXCI6XCJPcGVuSU0tc2tpZmZlclwiLFwiZmFjZVVSTFwiOlwiaHR0cHM6Ly93ZWIucmVudHNvZnQuY24vYXBpX2VudGVycHJpc2Uvb2JqZWN0LzM0MTg1Nzc0MzYvQkQxNEMyQzE5NTZBQjJFMUJEOEE5RjMzRTc2MjIwQkUgKDEpLmpwZ1wiLFwiYXBwTWFuZ2VyTGV2ZWxcIjowLFwiam9pblNvdXJjZVwiOjIsXCJvcGVyYXRvclVzZXJJRFwiOlwiMjczODMwODA4OFwiLFwiZXhcIjpcIlwiLFwibXV0ZUVuZFRpbWVcIjotMjg4MDAwMDAsXCJpbnZpdGVyVXNlcklEXCI6XCIyNzM4MzA4MDg4XCJ9LFwib3BlcmF0aW9uVGltZVwiOjAsXCJncm91cE1lbWJlclZlcnNpb25cIjoyLFwiZ3JvdXBNZW1iZXJWZXJzaW9uSURcIjpcIjY2NzE5MDAxNTg5YzdjNWZlNzA5ZmU3NVwifSJ9","seq":2,"sendTime":1718718570199,"createTime":1718718570198,"status":0,"isRead":false,"options":{"offlinePush":false,"unreadCount":false},"offlinePushInfo":{"title":"","desc":"","ex":"","iOSPushSound":"","iOSBadgeCount":false,"signalInfo":""},"atUserIDList":null,"attachedInfo":"","ex":""}],"isEnd":true},"sg_2836218947":{"Msgs":[{"sendID":"imAdmin","recvID":"2836218947","groupID":"2836218947","clientMsgID":"06284c5a5f10d1f472f5f8bc938b47a3","serverMsgID":"bba734e36558164cfb5e40206ba26259","senderPlatformID":0,"senderNickname":"","senderFaceURL":"","sessionType":3,"msgFrom":200,"contentType":1504,"content":"eyJkZXRhaWwiOiJ7XCJncm91cFwiOntcImdyb3VwSURcIjpcIjI4MzYyMTg5NDdcIixcImdyb3VwTmFtZVwiOlwi5rWL6K+V576k566h55CGXCIsXCJub3RpZmljYXRpb25cIjpcIlwiLFwiaW50cm9kdWN0aW9uXCI6XCJcIixcImZhY2VVUkxcIjpcIlwiLFwib3duZXJVc2VySURcIjpcIjQ5MTgyNzY1NTlcIixcImNyZWF0ZVRpbWVcIjoxNzE1MDY1MzM1NDA4LFwibWVtYmVyQ291bnRcIjo2LFwiZXhcIjpcIlwiLFwic3RhdHVzXCI6MCxcImNyZWF0b3JVc2VySURcIjpcIjQ5MTgyNzY1NTlcIixcImdyb3VwVHlwZVwiOjIsXCJuZWVkVmVyaWZpY2F0aW9uXCI6MCxcImxvb2tNZW1iZXJJbmZvXCI6MSxcImFwcGx5TWVtYmVyRnJpZW5kXCI6MSxcIm5vdGlmaWNhdGlvblVwZGF0ZVRpbWVcIjowLFwibm90aWZpY2F0aW9uVXNlcklEXCI6XCJcIn0sXCJxdWl0VXNlclwiOntcImdyb3VwSURcIjpcIjI4MzYyMTg5NDdcIixcInVzZXJJRFwiOlwiNjMxOTAxNTAyNFwiLFwicm9sZUxldmVsXCI6MjAsXCJqb2luVGltZVwiOjE3MTUwNjUzMzU0MDksXCJuaWNrbmFtZVwiOlwiT3BlbklNLXdpbmRcIixcImZhY2VVUkxcIjpcImh0dHBzOi8vd2ViLnJlbnRzb2Z0LmNuL2FwaV9lbnRlcnByaXNlL29iamVjdC82MzE5MDE1MDI0L3BleGVscy1waG90by0yMTc0OTc0LndlYnBcIixcImFwcE1hbmdlckxldmVsXCI6MCxcImpvaW5Tb3VyY2VcIjoyLFwib3BlcmF0b3JVc2VySURcIjpcIjQ5MTgyNzY1NTlcIixcImV4XCI6XCJcIixcIm11dGVFbmRUaW1lXCI6MCxcImludml0ZXJVc2VySURcIjpcIjQ5MTgyNzY1NTlcIn0sXCJvcGVyYXRpb25UaW1lXCI6MCxcImdyb3VwTWVtYmVyVmVyc2lvblwiOjMsXCJncm91cE1lbWJlclZlcnNpb25JRFwiOlwiNjY3MmQzOWRlMjcxNjZmZTc3ODExNzBjXCJ9In0=","seq":2,"sendTime":1718936592923,"createTime":1718936592922,"status":0,"isRead":false,"options":{"offlinePush":false,"unreadCount":false},"offlinePushInfo":{"title":"","desc":"","ex":"","iOSPushSound":"","iOSBadgeCount":false,"signalInfo":""},"atUserIDList":null,"attachedInfo":"","ex":""}],"isEnd":true},"sg_3187706596":{"Msgs":[{"sendID":"imAdmin","recvID":"3187706596","groupID":"3187706596","clientMsgID":"54f49dda390bd96e8c6107a9a8bb869b","serverMsgID":"2ffca94228877bc102fe4be01aeba429","senderPlatformID":0,"senderNickname":"","senderFaceURL":"","sessionType":3,"msgFrom":200,"contentType":1509,"content":"eyJkZXRhaWwiOiJ7XCJncm91cFwiOntcImdyb3VwSURcIjpcIjMxODc3MDY1OTZcIixcImdyb3VwTmFtZVwiOlwi6buY6K6k576kLea1i+ivlVwiLFwibm90aWZpY2F0aW9uXCI6XCJyYWctZ3B077ya5Z+65LqO5pys5Zyw55+l6K+G5bqT55qE5byA5rqQ5pm66IO95a6i5pyNIFxcbmh0dHBzOi8vZ2l0aHViLmNvbS9vcGVuLWtmL3JhZy1ncHRcXG5cIixcImludHJvZHVjdGlvblwiOlwiXCIsXCJmYWNlVVJMXCI6XCJcIixcIm93bmVyVXNlcklEXCI6XCI3NDk3NjA1NDAxXCIsXCJjcmVhdGVUaW1lXCI6MTY5MjU1OTMwNzA1MixcIm1lbWJlckNvdW50XCI6MzkwMixcImV4XCI6XCJ4eHhcIixcInN0YXR1c1wiOjAsXCJjcmVhdG9yVXNlcklEXCI6XCI3MDA5OTY1OTM0XCIsXCJncm91cFR5cGVcIjoyLFwibmVlZFZlcmlmaWNhdGlvblwiOjAsXCJsb29rTWVtYmVySW5mb1wiOjAsXCJhcHBseU1lbWJlckZyaWVuZFwiOjAsXCJub3RpZmljYXRpb25VcGRhdGVUaW1lXCI6MTcxNjk2ODQyODYzNSxcIm5vdGlmaWNhdGlvblVzZXJJRFwiOlwiMzQxODU3NzQzNlwifSxcIm9wVXNlclwiOntcImdyb3VwSURcIjpcIjMxODc3MDY1OTZcIixcInVzZXJJRFwiOlwiaW1BZG1pblwiLFwicm9sZUxldmVsXCI6NjAsXCJqb2luVGltZVwiOjAsXCJuaWNrbmFtZVwiOlwiYWRtaW5cIixcImZhY2VVUkxcIjpcIlwiLFwiYXBwTWFuZ2VyTGV2ZWxcIjoyLFwiam9pblNvdXJjZVwiOjAsXCJvcGVyYXRvclVzZXJJRFwiOlwiXCIsXCJleFwiOlwiXCIsXCJtdXRlRW5kVGltZVwiOjAsXCJpbnZpdGVyVXNlcklEXCI6XCJcIn0sXCJpbnZpdGVkVXNlckxpc3RcIjpbe1wiZ3JvdXBJRFwiOlwiMzE4NzcwNjU5NlwiLFwidXNlcklEXCI6XCI3MTIyMjI5NjM2XCIsXCJyb2xlTGV2ZWxcIjoyMCxcImpvaW5UaW1lXCI6MTcxODk1MzQzMjk2MCxcIm5pY2tuYW1lXCI6XCIxMTExMVwiLFwiZmFjZVVSTFwiOlwiXCIsXCJhcHBNYW5nZXJMZXZlbFwiOjAsXCJqb2luU291cmNlXCI6MixcIm9wZXJhdG9yVXNlcklEXCI6XCJcIixcImV4XCI6XCJcIixcIm11dGVFbmRUaW1lXCI6MCxcImludml0ZXJVc2VySURcIjpcIlwifV0sXCJvcGVyYXRpb25UaW1lXCI6MCxcImdyb3VwTWVtYmVyVmVyc2lvblwiOjQsXCJncm91cE1lbWJlclZlcnNpb25JRFwiOlwiNjY3MmQzOWRlMjcxNjZmZTc3ODExNzE3XCJ9In0=","seq":3,"sendTime":1718953433112,"createTime":1718953433111,"status":0,"isRead":false,"options":{"offlinePush":false,"unreadCount":false},"offlinePushInfo":{"title":"","desc":"","ex":"","iOSPushSound":"","iOSBadgeCount":false,"signalInfo":""},"atUserIDList":null,"attachedInfo":"","ex":""}],"isEnd":true},"sg_3896488295":{"Msgs":[{"sendID":"imAdmin","recvID":"3896488295","groupID":"3896488295","clientMsgID":"dfc06971a5ff46e072117247b92b68e6","serverMsgID":"f57eb140f799156f77187ed2d03754d5","senderPlatformID":0,"senderNickname":"","senderFaceURL":"","sessionType":3,"msgFrom":200,"contentType":1504,"content":"eyJkZXRhaWwiOiJ7XCJncm91cFwiOntcImdyb3VwSURcIjpcIjM4OTY0ODgyOTVcIixcImdyb3VwTmFtZVwiOlwiaW3mtYvor5VcIixcIm5vdGlmaWNhdGlvblwiOlwiXCIsXCJpbnRyb2R1Y3Rpb25cIjpcIlwiLFwiZmFjZVVSTFwiOlwiXCIsXCJvd25lclVzZXJJRFwiOlwiMzg2MjE0NzQyNFwiLFwiY3JlYXRlVGltZVwiOjE3MDQ4MDU1MTE1NzMsXCJtZW1iZXJDb3VudFwiOjksXCJleFwiOlwiXCIsXCJzdGF0dXNcIjowLFwiY3JlYXRvclVzZXJJRFwiOlwiMzg2MjE0NzQyNFwiLFwiZ3JvdXBUeXBlXCI6MixcIm5lZWRWZXJpZmljYXRpb25cIjowLFwibG9va01lbWJlckluZm9cIjowLFwiYXBwbHlNZW1iZXJGcmllbmRcIjowLFwibm90aWZpY2F0aW9uVXBkYXRlVGltZVwiOjAsXCJub3RpZmljYXRpb25Vc2VySURcIjpcIlwifSxcInF1aXRVc2VyXCI6e1wiZ3JvdXBJRFwiOlwiMzg5NjQ4ODI5NVwiLFwidXNlcklEXCI6XCIyNzI1NDUxMjQzXCIsXCJyb2xlTGV2ZWxcIjoyMCxcImpvaW5UaW1lXCI6MTcwNDgwNTUxMTU3NCxcIm5pY2tuYW1lXCI6XCJPcGVuSU0tQW5kcmV3MTIzXCIsXCJmYWNlVVJMXCI6XCJcIixcImFwcE1hbmdlckxldmVsXCI6MCxcImpvaW5Tb3VyY2VcIjoyLFwib3BlcmF0b3JVc2VySURcIjpcIjM4NjIxNDc0MjRcIixcImV4XCI6XCJcIixcIm11dGVFbmRUaW1lXCI6MCxcImludml0ZXJVc2VySURcIjpcIjM4NjIxNDc0MjRcIn0sXCJvcGVyYXRpb25UaW1lXCI6MCxcImdyb3VwTWVtYmVyVmVyc2lvblwiOjIsXCJncm91cE1lbWJlclZlcnNpb25JRFwiOlwiNjY3MmQzOWRlMjcxNjZmZTc3ODExNmFmXCJ9In0=","seq":1,"sendTime":1718801595913,"createTime":1718801595912,"status":0,"isRead":false,"options":{"offlinePush":false,"unreadCount":false},"offlinePushInfo":{"title":"","desc":"","ex":"","iOSPushSound":"","iOSBadgeCount":false,"signalInfo":""},"atUserIDList":null,"attachedInfo":"","ex":""}],"isEnd":true},"sg_3926645279":{"Msgs":[{"sendID":"imAdmin","recvID":"3926645279","groupID":"3926645279","clientMsgID":"b7312f062ea8c5203a747f577d891096","serverMsgID":"c6d35a7f550bda5f52d74f17281dc8a3","senderPlatformID":0,"senderNickname":"","senderFaceURL":"","sessionType":3,"msgFrom":200,"contentType":1507,"content":"eyJkZXRhaWwiOiJ7XCJncm91cFwiOntcImdyb3VwSURcIjpcIjM5MjY2NDUyNzlcIixcImdyb3VwTmFtZVwiOlwieW8xMjNcIixcIm5vdGlmaWNhdGlvblwiOlwibmV3IG5vdGlmaWNhdGlvblwiLFwiaW50cm9kdWN0aW9uXCI6XCJuZXcgbm90aWZpY2F0aW9uXCIsXCJmYWNlVVJMXCI6XCJmYWNlVVJMIHVybFwiLFwib3duZXJVc2VySURcIjpcIjE2OTU3NjYyMzhcIixcImNyZWF0ZVRpbWVcIjoxNzE4OTUyMjcwNTA0LFwibWVtYmVyQ291bnRcIjoyLFwiZXhcIjpcIm5ldyBleFwiLFwic3RhdHVzXCI6MCxcImNyZWF0b3JVc2VySURcIjpcIlwiLFwiZ3JvdXBUeXBlXCI6MixcIm5lZWRWZXJpZmljYXRpb25cIjoxLFwibG9va01lbWJlckluZm9cIjoxLFwiYXBwbHlNZW1iZXJGcmllbmRcIjoxLFwibm90aWZpY2F0aW9uVXBkYXRlVGltZVwiOjE3MTg5NjgxOTEzNTUsXCJub3RpZmljYXRpb25Vc2VySURcIjpcImltQWRtaW5cIn0sXCJvcFVzZXJcIjp7XCJncm91cElEXCI6XCIzOTI2NjQ1Mjc5XCIsXCJ1c2VySURcIjpcImltQWRtaW5cIixcInJvbGVMZXZlbFwiOjYwLFwiam9pblRpbWVcIjowLFwibmlja25hbWVcIjpcImFkbWluXCIsXCJmYWNlVVJMXCI6XCJcIixcImFwcE1hbmdlckxldmVsXCI6MixcImpvaW5Tb3VyY2VcIjowLFwib3BlcmF0b3JVc2VySURcIjpcIlwiLFwiZXhcIjpcIlwiLFwibXV0ZUVuZFRpbWVcIjowLFwiaW52aXRlclVzZXJJRFwiOlwiXCJ9LFwibmV3R3JvdXBPd25lclwiOntcImdyb3VwSURcIjpcIjM5MjY2NDUyNzlcIixcInVzZXJJRFwiOlwiMTY5NTc2NjIzOFwiLFwicm9sZUxldmVsXCI6MTAwLFwiam9pblRpbWVcIjoxNzE4OTY4NDYyMTA0LFwibmlja25hbWVcIjpcIk9wZW5JTS1Hb3Jkb25cIixcImZhY2VVUkxcIjpcImh0dHBzOi8vd2ViLnJlbnRzb2Z0LmNuL2FwaV9lbnRlcnByaXNlL29iamVjdC8xNjk1NzY2MjM4L+a2iOaBrzIwMjMxMDExMTU0MjQzLnBuZ1wiLFwiYXBwTWFuZ2VyTGV2ZWxcIjowLFwiam9pblNvdXJjZVwiOjIsXCJvcGVyYXRvclVzZXJJRFwiOlwiXCIsXCJleFwiOlwiXCIsXCJtdXRlRW5kVGltZVwiOjAsXCJpbnZpdGVyVXNlcklEXCI6XCJcIn0sXCJvbGRHcm91cE93bmVyXCI6XCJcIixcIm9wZXJhdGlvblRpbWVcIjowLFwib2xkR3JvdXBPd25lckluZm9cIjp7XCJncm91cElEXCI6XCIzOTI2NjQ1Mjc5XCIsXCJ1c2VySURcIjpcIjI4ODI4OTk0NDdcIixcInJvbGVMZXZlbFwiOjIwLFwiam9pblRpbWVcIjoxNzE4OTUyMjcwNTA2LFwibmlja25hbWVcIjpcIk9wZW5JTS1ibG9vbWluZ1wiLFwiZmFjZVVSTFwiOlwiaHR0cHM6Ly93ZWIucmVudHNvZnQuY24vYXBpX2VudGVycHJpc2Uvb2JqZWN0LzI4ODI4OTk0NDcvYXZhdGFyLndlYnBcIixcImFwcE1hbmdlckxldmVsXCI6MCxcImpvaW5Tb3VyY2VcIjoyLFwib3BlcmF0b3JVc2VySURcIjpcImltQWRtaW5cIixcImV4XCI6XCJcIixcIm11dGVFbmRUaW1lXCI6MCxcImludml0ZXJVc2VySURcIjpcImltQWRtaW5cIn0sXCJncm91cE1lbWJlclZlcnNpb25cIjoyNCxcImdyb3VwTWVtYmVyVmVyc2lvbklEXCI6XCI2Njc1MjE0ZWFjNGI3NjYyNjQ2OGZlZjVcIn0ifQ==","seq":18,"sendTime":1719040920868,"createTime":1719040920865,"status":0,"isRead":false,"options":{"offlinePush":false,"unreadCount":false},"offlinePushInfo":{"title":"","desc":"","ex":"","iOSPushSound":"","iOSBadgeCount":false,"signalInfo":""},"atUserIDList":null,"attachedInfo":"","ex":""}],"isEnd":true},"sg_3927081813":{"Msgs":[{"sendID":"imAdmin","recvID":"3927081813","groupID":"3927081813","clientMsgID":"bb8f6da7b64c5019d05d11e5498b7ebe","serverMsgID":"8377622d22ff842f509a1b8a1b5cf020","senderPlatformID":0,"senderNickname":"","senderFaceURL":"","sessionType":3,"msgFrom":200,"contentType":1504,"content":"eyJkZXRhaWwiOiJ7XCJncm91cFwiOntcImdyb3VwSURcIjpcIjM5MjcwODE4MTNcIixcImdyb3VwTmFtZVwiOlwi5rC055S16LS5XCIsXCJub3RpZmljYXRpb25cIjpcIlwiLFwiaW50cm9kdWN0aW9uXCI6XCJcIixcImZhY2VVUkxcIjpcIlwiLFwib3duZXJVc2VySURcIjpcIjI1NjMxMDA3MzBcIixcImNyZWF0ZVRpbWVcIjoxNjkzMDAzMjIzNzE3LFwibWVtYmVyQ291bnRcIjo1LFwiZXhcIjpcIlwiLFwic3RhdHVzXCI6MCxcImNyZWF0b3JVc2VySURcIjpcIjI1NjMxMDA3MzBcIixcImdyb3VwVHlwZVwiOjIsXCJuZWVkVmVyaWZpY2F0aW9uXCI6MCxcImxvb2tNZW1iZXJJbmZvXCI6MCxcImFwcGx5TWVtYmVyRnJpZW5kXCI6MCxcIm5vdGlmaWNhdGlvblVwZGF0ZVRpbWVcIjotMjg4MDAwMDAsXCJub3RpZmljYXRpb25Vc2VySURcIjpcIlwifSxcInF1aXRVc2VyXCI6e1wiZ3JvdXBJRFwiOlwiMzkyNzA4MTgxM1wiLFwidXNlcklEXCI6XCI1MjkyMTU2NjY1XCIsXCJyb2xlTGV2ZWxcIjoyMCxcImpvaW5UaW1lXCI6MTY5MzAwMzIyMzcxOCxcIm5pY2tuYW1lXCI6XCJPbGl2ZXJcIixcImZhY2VVUkxcIjpcImh0dHBzOi8vd2ViLnJlbnRzb2Z0LmNuL2FwaV9lbnRlcnByaXNlL29iamVjdC81MjkyMTU2NjY1L3N0b3JhZ2UvZW11bGF0ZWQvMC9BbmRyb2lkL2RhdGEvaW8ub3BlbmltLmFuZHJvaWQuZGVtby9jYWNoZS8xNzA2MjY1MTU1MjQ3LzE3MDYyNjUxNDg4NTgucG5nXCIsXCJhcHBNYW5nZXJMZXZlbFwiOjAsXCJqb2luU291cmNlXCI6MixcIm9wZXJhdG9yVXNlcklEXCI6XCIyNTYzMTAwNzMwXCIsXCJleFwiOlwiXCIsXCJtdXRlRW5kVGltZVwiOi0yODgwMDAwMCxcImludml0ZXJVc2VySURcIjpcIjI1NjMxMDA3MzBcIn0sXCJvcGVyYXRpb25UaW1lXCI6MCxcImdyb3VwTWVtYmVyVmVyc2lvblwiOjEsXCJncm91cE1lbWJlclZlcnNpb25JRFwiOlwiNjY3MjNjMjk1ODljN2M1ZmU3MDlmZTc4XCJ9In0=","seq":1,"sendTime":1718762537772,"createTime":1718762537771,"status":0,"isRead":false,"options":{"offlinePush":false,"unreadCount":false},"offlinePushInfo":{"title":"","desc":"","ex":"","iOSPushSound":"","iOSBadgeCount":false,"signalInfo":""},"atUserIDList":null,"attachedInfo":"","ex":""}],"isEnd":true},"sg_84614448":{"Msgs":[{"sendID":"imAdmin","recvID":"84614448","groupID":"84614448","clientMsgID":"dc01b2472ea8368fc12ed589b3483a16","serverMsgID":"b920d2060e953bd0975219a79b17bb48","senderPlatformID":0,"senderNickname":"","senderFaceURL":"","sessionType":3,"msgFrom":200,"contentType":1504,"content":"eyJkZXRhaWwiOiJ7XCJncm91cFwiOntcImdyb3VwSURcIjpcIjg0NjE0NDQ4XCIsXCJncm91cE5hbWVcIjpcIue+pOiBiuS4pOadoeS4jeWQjOaXtuW3suivu1wiLFwibm90aWZpY2F0aW9uXCI6XCJcIixcImludHJvZHVjdGlvblwiOlwiXCIsXCJmYWNlVVJMXCI6XCJcIixcIm93bmVyVXNlcklEXCI6XCIxNjk1NzY2MjM4XCIsXCJjcmVhdGVUaW1lXCI6MTY5NzAxNTQ1NjQ1NCxcIm1lbWJlckNvdW50XCI6MSxcImV4XCI6XCJcIixcInN0YXR1c1wiOjAsXCJjcmVhdG9yVXNlcklEXCI6XCIxNjk1NzY2MjM4XCIsXCJncm91cFR5cGVcIjoyLFwibmVlZFZlcmlmaWNhdGlvblwiOjAsXCJsb29rTWVtYmVySW5mb1wiOjAsXCJhcHBseU1lbWJlckZyaWVuZFwiOjAsXCJub3RpZmljYXRpb25VcGRhdGVUaW1lXCI6MCxcIm5vdGlmaWNhdGlvblVzZXJJRFwiOlwiXCJ9LFwicXVpdFVzZXJcIjp7XCJncm91cElEXCI6XCI4NDYxNDQ0OFwiLFwidXNlcklEXCI6XCI3MDA5OTY1OTM0XCIsXCJyb2xlTGV2ZWxcIjoyMCxcImpvaW5UaW1lXCI6MTY5NzAxNTQ1NjQ1NixcIm5pY2tuYW1lXCI6XCLwn5iC4oKNy4TCt82I4LydwrfNiMuEKlwiLFwiZmFjZVVSTFwiOlwiaHR0cHM6Ly93ZWIucmVudHNvZnQuY24vYXBpX2VudGVycHJpc2Uvb2JqZWN0LzcwMDk5NjU5MzQvaW1hZ2VfY3JvcHBlcl8xNjk3MDk3MzUwMTcwLmpwZ1wiLFwiYXBwTWFuZ2VyTGV2ZWxcIjowLFwiam9pblNvdXJjZVwiOjIsXCJvcGVyYXRvclVzZXJJRFwiOlwiMTY5NTc2NjIzOFwiLFwiZXhcIjpcIlwiLFwibXV0ZUVuZFRpbWVcIjowLFwiaW52aXRlclVzZXJJRFwiOlwiMTY5NTc2NjIzOFwifSxcIm9wZXJhdGlvblRpbWVcIjowLFwiZ3JvdXBNZW1iZXJWZXJzaW9uXCI6MyxcImdyb3VwTWVtYmVyVmVyc2lvbklEXCI6XCI2NjZjNGNmNDk1OWJlODBmOTk0NTA0YWFcIn0ifQ==","seq":2,"sendTime":1718717329749,"createTime":1718717329747,"status":0,"isRead":false,"options":{"offlinePush":false,"unreadCount":false},"offlinePushInfo":{"title":"","desc":"","ex":"","iOSPushSound":"","iOSBadgeCount":false,"signalInfo":""},"atUserIDList":null,"attachedInfo":"","ex":""}],"isEnd":true},"si_1695766238_5967938442":{"Msgs":[{"sendID":"1695766238","recvID":"5967938442","groupID":"","clientMsgID":"f3bc501a9e75ed5d7ae967b00d81c749","serverMsgID":"77b5d27ea8ea581781d049133aef1754","senderPlatformID":0,"senderNickname":"","senderFaceURL":"","sessionType":1,"msgFrom":200,"contentType":1201,"content":"eyJkZXRhaWwiOiJ7XCJmcm9tVG9Vc2VySURcIjp7XCJmcm9tVXNlcklEXCI6XCI1OTY3OTM4NDQyXCIsXCJ0b1VzZXJJRFwiOlwiMTY5NTc2NjIzOFwifSxcImhhbmRsZU1zZ1wiOlwiXCIsXCJmcmllbmRWZXJzaW9uXCI6MCxcImZyaWVuZFZlcnNpb25JRFwiOlwiXCJ9In0=","seq":1,"sendTime":1718949580644,"createTime":1718949580641,"status":0,"isRead":false,"options":{"offlinePush":true,"unreadCount":false},"offlinePushInfo":{"title":"","desc":"","ex":"","iOSPushSound":"","iOSBadgeCount":false,"signalInfo":""},"atUserIDList":null,"attachedInfo":"","ex":""}],"isEnd":true},"si_1695766238_7122229636":{"Msgs":[{"sendID":"1695766238","recvID":"7122229636","groupID":"","clientMsgID":"72d26994e64cd4cd2b5c31e19ac8d610","serverMsgID":"2ea8653d8a929527d4f8c27cc76f9a47","senderPlatformID":0,"senderNickname":"","senderFaceURL":"","sessionType":1,"msgFrom":200,"contentType":1201,"content":"eyJkZXRhaWwiOiJ7XCJmcm9tVG9Vc2VySURcIjp7XCJmcm9tVXNlcklEXCI6XCI3MTIyMjI5NjM2XCIsXCJ0b1VzZXJJRFwiOlwiMTY5NTc2NjIzOFwifSxcImhhbmRsZU1zZ1wiOlwiXCIsXCJmcmllbmRWZXJzaW9uXCI6MCxcImZyaWVuZFZlcnNpb25JRFwiOlwiXCJ9In0=","seq":1,"sendTime":1718953432952,"createTime":1718953432951,"status":0,"isRead":true,"options":{"offlinePush":true,"unreadCount":false},"offlinePushInfo":{"title":"","desc":"","ex":"","iOSPushSound":"","iOSBadgeCount":false,"signalInfo":""},"atUserIDList":null,"attachedInfo":"","ex":""}],"isEnd":true}},"SyncFlag":0}}
+2024-06-24 10:57:04.159 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_notification.go:36] NotificationCmd start {"operationID": "1719197817604066041", "cmd": "003", "value": {"Msgs":null,"SyncFlag":0}}
+2024-06-24 10:57:04.159 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_notification.go:50] NotificationCmd end {"operationID": "1719197817604066041", "cmd": "003", "value": {"Msgs":null,"SyncFlag":0}}
+2024-06-24 10:57:04.159 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_notification.go:36] NotificationCmd start {"operationID": "1719197817604066041", "cmd": "003", "value": {"Msgs":null,"SyncFlag":1003}}
+2024-06-24 10:57:04.159 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_notification.go:93] MsgSyncEnd {"operationID": "1719197817604066041", "time": 8343}
+2024-06-24 10:57:04.159 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:662] OnSyncServerFinish {"operationID": "1719197813759468572"}
+2024-06-24 10:57:04.160 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/conversation/get_all_conversations", "body": "{\"ownerUserID\":\"1695766238\"}"}
+2024-06-24 10:57:04.160 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_notification.go:50] NotificationCmd end {"operationID": "1719197817604066041", "cmd": "003", "value": {"Msgs":null,"SyncFlag":1003}}
+2024-06-24 10:57:07.540 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/conversation/get_all_conversations", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"conversations\":[{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1012900607\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1012900607\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":4,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694999226,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_104250651\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"104250651\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_105081877\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"105081877\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1062802274\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1062802274\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1098167418\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1098167418\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1137299436\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1137299436\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1692815148,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1161663520\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1161663520\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1162405312\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1162405312\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1170336331\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1170336331\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1171979965\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1171979965\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1177987017\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1177987017\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1181175668\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1181175668\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693504929,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1193166060\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1193166060\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1196923925\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1196923925\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700471292,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1209319003\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1209319003\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693253022,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1212532780\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1212532780\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1219707992\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1219707992\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693017419,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1237366857\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1237366857\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1254300734\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1254300734\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1268986309\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1268986309\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693513328,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1273621475\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1273621475\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1295978993\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1295978993\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_129612413\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"129612413\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1307714144\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1307714144\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1348263733\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1348263733\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1355048295\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1355048295\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697620071,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1393169672\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1393169672\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1397022909\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1397022909\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":4,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1430191635\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1430191635\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1431423795\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1431423795\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":217,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1438747528\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1438747528\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1472131068\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1472131068\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":14,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700203259,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1477824418\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1477824418\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":4,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":16,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1529525623\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1529525623\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1533379639\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1533379639\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1566911564\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1566911564\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1577882571\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1577882571\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1597892186\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1597892186\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_161019322\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"161019322\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1629977487\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1629977487\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":5,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1633118996\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1633118996\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1639333330\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1639333330\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1661305134\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1661305134\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1662278840\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1662278840\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1671249356\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1671249356\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1687917547\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1687917547\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1708658560\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1708658560\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1710171993\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1710171993\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1738113305\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1738113305\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693218996,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1747585985\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1747585985\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1765818066\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1765818066\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1780190492\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1780190492\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694650258,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1785857431\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1785857431\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1845606214\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1845606214\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697597966,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1851829045\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1851829045\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1861322715\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1861322715\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1869190487\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1869190487\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1898996710\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1898996710\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_192211066\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"192211066\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_19439682\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"19439682\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1959629060\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1959629060\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694487544,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1986908192\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1986908192\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":4,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_1999119891\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1999119891\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695449665,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2008565166\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2008565166\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2048354932\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2048354932\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":2,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2062637119\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2062637119\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2103648114\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2103648114\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2105177423\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2105177423\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2138010215\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2138010215\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":2,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698746356,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2141832100\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2141832100\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":2,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2145904160\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2145904160\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2156407784\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2156407784\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_217468446\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"217468446\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2184807685\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2184807685\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2186335908\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2186335908\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2206344631\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2206344631\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_22125508\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"22125508\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2264748085\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2264748085\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2276584901\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2276584901\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693529330,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2287005875\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2287005875\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695065271,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2300748497\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2300748497\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1692906300,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2306232581\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2306232581\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2311972027\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2311972027\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2314844644\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2314844644\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2328086176\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2328086176\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2337816601\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2337816601\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697599746,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2338619613\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2338619613\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":543,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2338903916\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2338903916\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2377136176\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2377136176\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2386261452\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2386261452\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2388518829\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2388518829\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":4,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2388705044\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2388705044\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2417467281\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2417467281\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2438710897\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2438710897\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_244473388\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"244473388\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700732294,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2458134291\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2458134291\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695240254,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_246329239\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"246329239\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":4,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2474039382\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2474039382\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2479200198\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2479200198\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2481127587\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2481127587\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2526989903\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2526989903\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":6,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2527119729\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2527119729\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_254264603\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"254264603\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2546075374\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2546075374\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_254754437\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"254754437\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699001227,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2563467770\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2563467770\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2595610523\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2595610523\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2599904267\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2599904267\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2600924814\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2600924814\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2604460151\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2604460151\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1691973743,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_261042702\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"261042702\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":4,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696936825,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2625540721\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2625540721\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2637047860\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2637047860\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694751156,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2670578906\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2670578906\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2677549796\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2677549796\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2700512134\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2700512134\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":4,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2703056345\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2703056345\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2712739968\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2712739968\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697442485,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2715338888\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2715338888\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2738270862\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2738270862\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2744603618\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2744603618\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":38,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700191159,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2752799086\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2752799086\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695169606,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2783925829\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2783925829\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2806967959\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2806967959\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2825124274\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2825124274\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700732606,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2833552317\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2833552317\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2836218947\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2836218947\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2839621663\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2839621663\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695147481,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2842792512\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2842792512\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":19,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_28456085\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"28456085\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2864738888\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2864738888\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697109175,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2866659389\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2866659389\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694024448,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2889681075\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2889681075\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2904928842\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2904928842\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2942457817\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2942457817\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2956229812\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2956229812\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2958761051\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2958761051\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2991140459\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2991140459\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695344992,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_2991351838\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2991351838\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3014735116\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3014735116\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3069388481\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3069388481\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695166738,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3134715281\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3134715281\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3158680188\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3158680188\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":1,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3187706596\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3187706596\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1692566611,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3204313055\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3204313055\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":4,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3227287827\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3227287827\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693592291,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_324253771\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"324253771\",\"isPinned\":true,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693192158,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3253663629\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3253663629\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3266228942\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3266228942\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3269509736\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3269509736\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698997349,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3276743019\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3276743019\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3295574908\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3295574908\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693261422,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3327630005\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3327630005\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3369946551\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3369946551\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3384390386\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3384390386\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_339303081\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"339303081\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698464544,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3416772962\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3416772962\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3417930724\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3417930724\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3430036352\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3430036352\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3438817431\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3438817431\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3456954170\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3456954170\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":37,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3489091446\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3489091446\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3504722739\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3504722739\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3523019119\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3523019119\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3560180171\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3560180171\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3590768919\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3590768919\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_359361212\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"359361212\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3595843332\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3595843332\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":2,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694048653,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3610850870\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3610850870\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":2,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3634650086\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3634650086\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3636664095\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3636664095\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3652923926\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3652923926\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3655346906\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3655346906\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3693200714\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3693200714\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3700863541\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3700863541\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3703077350\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3703077350\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3704350375\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3704350375\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3704855948\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3704855948\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3727180154\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3727180154\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694646670,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3750772487\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3750772487\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3759778360\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3759778360\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3809568826\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3809568826\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3831608740\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3831608740\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":3,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3845608473\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3845608473\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3896488295\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3896488295\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3901598750\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3901598750\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699431010,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3923775376\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3923775376\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":5,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3926645279\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3926645279\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3927081813\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3927081813\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693003223,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3953092196\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3953092196\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3957246617\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3957246617\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_3969556509\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3969556509\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695004788,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_400360852\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"400360852\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":4,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_4015084780\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"4015084780\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":17,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_4018907989\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"4018907989\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_402286284\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"402286284\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_4023358894\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"4023358894\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_4034544053\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"4034544053\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_4039998258\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"4039998258\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_4040699454\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"4040699454\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696850155,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_4045146473\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"4045146473\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693593077,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_405867780\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"405867780\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_4070499267\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"4070499267\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":4,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_4075238610\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"4075238610\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":4,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_4089861802\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"4089861802\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":4,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_4092904375\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"4092904375\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_4094820687\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"4094820687\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_4182703673\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"4182703673\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_4220354893\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"4220354893\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694752274,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_4227056539\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"4227056539\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_4253925195\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"4253925195\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":4,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_4261141770\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"4261141770\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_4265149432\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"4265149432\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_4273540010\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"4273540010\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":5,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_430333127\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"430333127\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_446768090\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"446768090\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_454437308\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"454437308\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_45636129\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"45636129\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":2,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_459143095\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"459143095\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_471852741\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"471852741\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_474494913\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"474494913\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696783483,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_489539319\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"489539319\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_491010394\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"491010394\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_499550676\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"499550676\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":2,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_518546243\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"518546243\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_543925645\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"543925645\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_547125611\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"547125611\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_549432318\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"549432318\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_567855415\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"567855415\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_572273208\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"572273208\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_578214705\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"578214705\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696783661,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_578691343\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"578691343\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_582136490\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"582136490\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":4,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_591858077\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"591858077\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_595536262\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"595536262\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_630329009\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"630329009\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700293109,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_632811645\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"632811645\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_68265665\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"68265665\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_700804699\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"700804699\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694752032,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_714498155\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"714498155\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693512068,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_741425278\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"741425278\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":2,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_749544702\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"749544702\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695867819,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_751776298\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"751776298\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697126276,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_757454731\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"757454731\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694227250,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_773702228\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"773702228\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":4,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_778158059\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"778158059\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699010098,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_809953832\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"809953832\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_810698493\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"810698493\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_831402134\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"831402134\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_841314012\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"841314012\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_84614448\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"84614448\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697015456,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_853658007\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"853658007\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_862487890\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"862487890\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_87742245\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"87742245\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_899043316\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"899043316\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":4,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_917923491\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"917923491\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693512324,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_930244142\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"930244142\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":2,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_93606743\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"93606743\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_953210402\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"953210402\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695183042,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_976556305\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"976556305\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_981246811\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"981246811\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"sg_995014316\",\"recvMsgOpt\":0,\"conversationType\":3,\"userID\":\"\",\"groupID\":\"995014316\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697158729,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1001978187_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1001978187\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695252063,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1003546611_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1003546611\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1005848588_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1005848588\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1007207701_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1007207701\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1012210794_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1012210794\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1016745053_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1016745053\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1019113328_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1019113328\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698222591,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1020167636_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1020167636\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699349381,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1020330989_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1020330989\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699524474,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1024013158_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1024013158\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1026082681_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1026082681\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1027189710_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1027189710\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698905373,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1029140975_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1029140975\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1029199385_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1029199385\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1030196386_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1030196386\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1035018583_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1035018583\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1035025841_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1035025841\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694567627,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1035596382_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1035596382\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1039344075_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1039344075\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1040441805_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1040441805\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1041417511_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1041417511\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1041526810_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1041526810\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1042709364_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1042709364\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698893048,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1046238762_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1046238762\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1047286184_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1047286184\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1047605577_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1047605577\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1048801023_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1048801023\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1048970643_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1048970643\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1049946080_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1049946080\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1050659067_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1050659067\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1051234044_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1051234044\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1051923075_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1051923075\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1057649044_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1057649044\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1058654100_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1058654100\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1059702215_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1059702215\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700790858,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1061497126_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1061497126\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1062100611_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1062100611\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1069173979_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1069173979\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1069920007_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1069920007\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1070085652_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1070085652\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1072866639_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1072866639\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698238036,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1076727996_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1076727996\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1078126675_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1078126675\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1078453176_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1078453176\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1079519777_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1079519777\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1081211551_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1081211551\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1084443978_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1084443978\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1084666176_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1084666176\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1088304633_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1088304633\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1090301906_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1090301906\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1091357456_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1091357456\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1092596091_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1092596091\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1098139429_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1098139429\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1098570531_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1098570531\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1105464832_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1105464832\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1106456014_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1106456014\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1109663154_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1109663154\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1110013188_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1110013188\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1110128907_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1110128907\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1110490028_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1110490028\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698324972,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1111364629_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1111364629\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1111503020_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1111503020\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1111724110_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1111724110\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695714855,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1112057887_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1112057887\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1113172567_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1113172567\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1113982296_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1113982296\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1114171800_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1114171800\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1114245774_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1114245774\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1114603358_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1114603358\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1118121179_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1118121179\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1119049102_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1119049102\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1119184791_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1119184791\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1119462227_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1119462227\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1120888738_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1120888738\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1121842056_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1121842056\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1124267584_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1124267584\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699404867,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1125316748_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1125316748\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1128086235_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1128086235\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1129238672_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1129238672\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1130612769_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1130612769\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1132125149_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1132125149\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1135290573_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1135290573\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1137346656_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1137346656\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1139778570_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1139778570\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1141269663_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1141269663\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698891942,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1145518931_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1145518931\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1148014193_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1148014193\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1149674300_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1149674300\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1152052323_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1152052323\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1153223299_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1153223299\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1153514846_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1153514846\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1154538243_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1154538243\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1158421119_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1158421119\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1160166255_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1160166255\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696992310,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1161320377_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1161320377\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1163727739_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1163727739\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1164940739_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1164940739\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699425800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1169314033_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1169314033\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1169864390_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1169864390\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1173525994_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1173525994\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699172155,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1178348711_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1178348711\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1178600008_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1178600008\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1179846066_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1179846066\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1180960663_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1180960663\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1184247096_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1184247096\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1186482465_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1186482465\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1186763406_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1186763406\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700754501,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1189211982_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1189211982\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699398654,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1189516087_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1189516087\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1191255050_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1191255050\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1193985259_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1193985259\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698322444,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1195520252_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1195520252\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700127563,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1197722329_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1197722329\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1197740724_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1197740724\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1197930203_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1197930203\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1198170851_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1198170851\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1199452366_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1199452366\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1201627975_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1201627975\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1201870569_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1201870569\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1203300972_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1203300972\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1203427082_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1203427082\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1203740992_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1203740992\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1205216213_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1205216213\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699924589,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1214890264_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1214890264\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694902961,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1215813908_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1215813908\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1216359267_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1216359267\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699770571,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1217986161_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1217986161\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1218106711_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1218106711\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1219920920_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1219920920\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1222190045_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1222190045\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1223611752_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1223611752\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1223824434_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1223824434\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1225764106_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1225764106\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1228521294_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1228521294\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1231061920_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1231061920\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1236363603_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1236363603\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1239260993_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1239260993\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1242008964_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1242008964\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1244598736_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1244598736\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1246378526_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1246378526\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1247281849_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1247281849\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1247768465_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1247768465\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1250766516_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1250766516\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1253082303_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1253082303\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1254137907_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1254137907\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1254897163_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1254897163\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1255014799_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1255014799\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1255769566_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1255769566\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1257873838_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1257873838\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697685258,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1259205714_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1259205714\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1259491611_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1259491611\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1260906081_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1260906081\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696901632,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1262838585_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1262838585\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1263384112_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1263384112\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1264676490_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1264676490\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1266887644_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1266887644\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1273935053_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1273935053\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699009050,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1278944119_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1278944119\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1279884042_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1279884042\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1281598562_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1281598562\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1281934775_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1281934775\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1287973372_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1287973372\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1291322616_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1291322616\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1291601426_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1291601426\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1292646581_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1292646581\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1294205397_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1294205397\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698039402,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1296481060_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1296481060\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1303174885_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1303174885\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697725250,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1303224493_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1303224493\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1308295709_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1308295709\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700633925,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1308526907_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1308526907\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1312600623_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1312600623\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700464946,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1312766592_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1312766592\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698804407,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1313516275_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1313516275\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1314958716_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1314958716\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1315193254_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1315193254\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1315194100_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1315194100\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1318098494_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1318098494\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698507012,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1322848164_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1322848164\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693806762,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1325120618_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1325120618\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697159199,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1326889006_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1326889006\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1327075767_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1327075767\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697622041,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1328504176_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1328504176\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1328609722_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1328609722\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1328649560_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1328649560\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1330357963_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1330357963\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1332124716_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1332124716\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1335529830_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1335529830\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699953574,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1337385311_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1337385311\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700039901,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1339832669_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1339832669\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1342056722_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1342056722\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1351222021_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1351222021\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1352959012_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1352959012\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1356317580_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1356317580\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697166571,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1358105773_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1358105773\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1360958542_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1360958542\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1361338405_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1361338405\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1369503108_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1369503108\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1378104152_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1378104152\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1378723738_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1378723738\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1378864517_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1378864517\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1381750803_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1381750803\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700184819,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1382542089_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1382542089\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695320436,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1389388976_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1389388976\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700185707,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1389519072_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1389519072\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1389672286_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1389672286\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700555574,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1399815726_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1399815726\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1400334070_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1400334070\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694240852,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1403690073_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1403690073\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1404053476_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1404053476\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1404071596_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1404071596\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1404108486_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1404108486\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700040724,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1406732851_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1406732851\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697426679,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1408523578_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1408523578\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1411038705_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1411038705\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1413232357_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1413232357\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1413892032_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1413892032\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1416508762_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1416508762\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1421222947_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1421222947\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1423094054_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1423094054\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1424675347_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1424675347\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1425098887_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1425098887\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1426385421_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1426385421\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1428611256_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1428611256\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695169526,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1429778434_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1429778434\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1431753089_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1431753089\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1435708354_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1435708354\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1435815467_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1435815467\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1439097961_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1439097961\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697768949,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1440270225_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1440270225\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1444423031_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1444423031\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1445725217_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1445725217\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1447165914_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1447165914\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1447253383_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1447253383\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1448477441_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1448477441\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1449505287_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1449505287\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1450541750_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1450541750\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1450572942_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1450572942\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1451141537_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1451141537\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696993184,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1455103500_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1455103500\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1455854618_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1455854618\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1457549515_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1457549515\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1459886066_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1459886066\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697450135,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1466421314_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1466421314\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1479208215_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1479208215\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699338926,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1481152183_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1481152183\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1483410143_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1483410143\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1484864273_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1484864273\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1489050183_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1489050183\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1490112482_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1490112482\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1491381111_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1491381111\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699412820,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1493979234_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1493979234\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1496957522_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1496957522\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1501353503_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1501353503\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1503288583_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1503288583\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695341872,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1503313265_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1503313265\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1503571831_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1503571831\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1503799516_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1503799516\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1511563482_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1511563482\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1512333186_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1512333186\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1517471629_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1517471629\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1519782782_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1519782782\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1522530015_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1522530015\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1525076035_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1525076035\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1525462486_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1525462486\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1527761901_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1527761901\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1528034041_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1528034041\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1531529736_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1531529736\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700630984,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1531800981_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1531800981\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694461758,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1538447111_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1538447111\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1539916836_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1539916836\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1545733795_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1545733795\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700060156,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1547315621_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1547315621\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697421165,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1553095200_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1553095200\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1556110492_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1556110492\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698013900,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1563714762_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1563714762\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1567202525_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1567202525\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1570753957_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1570753957\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1571918249_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1571918249\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1572354946_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1572354946\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693504935,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1572952163_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1572952163\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1575369290_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1575369290\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693436920,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1580228426_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1580228426\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1586898988_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1586898988\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1591700454_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1591700454\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1592632793_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1592632793\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1596057385_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1596057385\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1596529802_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1596529802\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1597197183_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1597197183\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700122586,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1597446517_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1597446517\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1602000005_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1602000005\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1605306478_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1605306478\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1606591661_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1606591661\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1610353382_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1610353382\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1613711798_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1613711798\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1617274099_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1617274099\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1619510595_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1619510595\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1624302032_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1624302032\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1628445271_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1628445271\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1639021089_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1639021089\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693451639,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1641400615_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1641400615\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1645337519_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1645337519\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1652390041_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1652390041\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1653288930_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1653288930\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1654005478_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1654005478\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697161502,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1655462573_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1655462573\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1655642484_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1655642484\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1656524872_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1656524872\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1659023429_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1659023429\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697264122,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1659042267_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1659042267\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698774622,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1664486975_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1664486975\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1667631425_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1667631425\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1669430182_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1669430182\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1670365234_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1670365234\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698647707,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1670622606_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1670622606\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1672477147_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1672477147\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1672553537_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1672553537\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695149031,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1687822249_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1687822249\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1689589076_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1689589076\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1692205388_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1692205388\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1693456624_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1693456624\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699426648,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1694942215_1695766238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1694942215\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1702117725\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1702117725\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698678859,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1702188248\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1702188248\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1703789873\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1703789873\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1709215513\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1709215513\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1712766650\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1712766650\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1713347484\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1713347484\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1717761876\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1717761876\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1721395134\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1721395134\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1727201413\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1727201413\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698895388,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1731109771\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1731109771\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696758015,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1731636962\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1731636962\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1736245880\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1736245880\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700042134,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1738515952\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1738515952\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1742363625\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1742363625\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700701355,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1742605630\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1742605630\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1743177197\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1743177197\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1744636404\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1744636404\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1747359714\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1747359714\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1748872770\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1748872770\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1751282511\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1751282511\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1752144503\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1752144503\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1772946620\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1772946620\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700651062,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1774447755\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1774447755\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1774484110\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1774484110\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1774642490\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1774642490\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700792969,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1774777128\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1774777128\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1776346921\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1776346921\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1778088968\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1778088968\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699489923,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1778147024\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1778147024\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1778774517\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1778774517\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693964804,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1780015171\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1780015171\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698144615,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1780132425\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1780132425\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700120571,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1786023921\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1786023921\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1789628801\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1789628801\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698311514,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1790308311\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1790308311\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699008473,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1792420009\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1792420009\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699509673,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1792779407\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1792779407\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1793479516\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1793479516\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1794457838\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1794457838\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1799928569\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1799928569\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1801012070\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1801012070\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1804216069\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1804216069\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1806295356\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1806295356\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1807355584\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1807355584\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1808739935\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1808739935\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1810705917\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1810705917\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1811284251\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1811284251\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1814656795\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1814656795\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1817747447\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1817747447\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1818754282\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1818754282\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694463427,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1819336215\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1819336215\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1819708663\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1819708663\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1820723584\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1820723584\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1823386847\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1823386847\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693451639,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1824275843\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1824275843\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697699479,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1825528748\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1825528748\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1828448298\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1828448298\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699405627,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1829995445\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1829995445\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1831010849\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1831010849\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1831659683\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1831659683\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1831904357\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1831904357\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1834112002\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1834112002\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1839129196\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1839129196\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1839949291\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1839949291\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1842076890\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1842076890\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1847173569\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1847173569\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695930247,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1847547134\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1847547134\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1848196820\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1848196820\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1854151908\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1854151908\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1854239844\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1854239844\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1856646576\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1856646576\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1858506629\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1858506629\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1860327649\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1860327649\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1864342100\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1864342100\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1866469672\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1866469672\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699276991,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1869222509\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1869222509\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1876795205\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1876795205\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1876910460\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1876910460\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1878877862\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1878877862\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1879624691\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1879624691\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1881699466\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1881699466\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1894592643\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1894592643\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1896037684\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1896037684\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698818287,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1896201093\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1896201093\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699518135,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1896406410\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1896406410\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1902484337\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1902484337\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1905725782\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1905725782\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1906445099\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1906445099\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1908218712\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1908218712\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1908245713\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1908245713\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699954094,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1911583328\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1911583328\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700126277,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1911710742\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1911710742\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699429821,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1911810093\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1911810093\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1912058390\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1912058390\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1913583468\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1913583468\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695878559,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1919047430\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1919047430\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1922087882\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1922087882\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700448201,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1925254179\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1925254179\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1931646522\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1931646522\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1934748565\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1934748565\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1938451039\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1938451039\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1942179907\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1942179907\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1947536099\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1947536099\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1947607451\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1947607451\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1948326429\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1948326429\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1949451221\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1949451221\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699507847,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1950195921\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1950195921\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1951127248\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1951127248\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1952868490\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1952868490\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1958217588\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1958217588\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699426079,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1958518843\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1958518843\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1962711667\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1962711667\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699357422,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1964147937\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1964147937\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699622477,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1966124402\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1966124402\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698919588,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1968770658\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1968770658\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694388934,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1974192173\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1974192173\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1975362624\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1975362624\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698644976,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1975553123\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1975553123\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1975712729\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1975712729\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1977829381\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1977829381\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1979754569\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1979754569\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1981410842\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1981410842\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1985863892\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1985863892\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1985870240\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1985870240\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1988963519\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1988963519\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1701061080,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1993324527\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1993324527\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1993900928\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1993900928\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696995236,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_1996969578\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"1996969578\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2004232076\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2004232076\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2004829824\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2004829824\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697104689,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2007415990\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2007415990\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697563006,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2010453067\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2010453067\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2010596235\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2010596235\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697177739,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2011701267\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2011701267\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2014288178\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2014288178\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2016410286\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2016410286\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2019888097\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2019888097\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2020409452\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2020409452\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2021892716\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2021892716\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2024007389\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2024007389\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697101500,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2024880531\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2024880531\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2024935500\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2024935500\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2030639266\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2030639266\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2031934238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2031934238\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2033736816\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2033736816\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2044305683\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2044305683\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2051159423\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2051159423\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698116308,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2055552460\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2055552460\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2055562411\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2055562411\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698820578,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2056273558\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2056273558\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2058272412\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2058272412\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698994608,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2065312455\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2065312455\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2065649737\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2065649737\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2067518707\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2067518707\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2067737063\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2067737063\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693426842,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2068776395\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2068776395\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695258971,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2069135616\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2069135616\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2072960535\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2072960535\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2074661004\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2074661004\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2079144021\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2079144021\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2081682065\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2081682065\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2082541912\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2082541912\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2089643170\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2089643170\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2090630692\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2090630692\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1701053771,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2097541846\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2097541846\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2097781817\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2097781817\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2100400616\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2100400616\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2104195868\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2104195868\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2104948837\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2104948837\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2105815429\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2105815429\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2106298144\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2106298144\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2108107622\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2108107622\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2114315169\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2114315169\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693441862,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2115325771\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2115325771\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2116967433\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2116967433\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2122535786\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2122535786\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700116119,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2122903572\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2122903572\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697725267,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2123184085\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2123184085\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2130822983\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2130822983\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2134502115\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2134502115\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694417759,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2135811730\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2135811730\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699957042,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2136985550\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2136985550\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2141887973\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2141887973\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695034512,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2147178021\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2147178021\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2148094530\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2148094530\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2148877993\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2148877993\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2158704735\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2158704735\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693874287,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2159393416\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2159393416\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2159739643\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2159739643\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697169297,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2161460908\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2161460908\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2161754714\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2161754714\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2166930178\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2166930178\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697570205,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2168939271\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2168939271\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2169175564\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2169175564\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2172356511\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2172356511\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2175053091\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2175053091\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694059081,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2175304326\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2175304326\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2177659996\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2177659996\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695173163,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2177829402\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2177829402\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2180660843\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2180660843\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697438041,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2180823601\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2180823601\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2182589988\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2182589988\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2184518026\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2184518026\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2184902631\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2184902631\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700816150,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2186548040\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2186548040\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2190613325\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2190613325\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2193659648\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2193659648\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2195170233\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2195170233\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699947070,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2195904688\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2195904688\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2203147158\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2203147158\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700108978,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2203420444\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2203420444\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698049390,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2204485419\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2204485419\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2210409049\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2210409049\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2213558486\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2213558486\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2215031028\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2215031028\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2216649304\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2216649304\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2220605266\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2220605266\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2222465830\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2222465830\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700186548,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2226864743\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2226864743\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2228082017\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2228082017\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2229500075\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2229500075\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2230209768\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2230209768\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2241676396\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2241676396\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2242408886\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2242408886\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2243648531\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2243648531\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697783368,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2244237845\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2244237845\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2247734613\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2247734613\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2250230706\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2250230706\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2253553088\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2253553088\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2259719077\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2259719077\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695165007,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2262854413\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2262854413\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2267320291\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2267320291\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698045434,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2269669873\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2269669873\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696830468,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2271624505\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2271624505\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2275164187\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2275164187\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2276632311\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2276632311\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694107263,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2282057245\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2282057245\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2284382043\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2284382043\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2287549734\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2287549734\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2289445413\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2289445413\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2290916297\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2290916297\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2293953462\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2293953462\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2294068026\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2294068026\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2294606956\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2294606956\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2294788609\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2294788609\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2295443263\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2295443263\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2298259901\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2298259901\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2300236631\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2300236631\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2302198630\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2302198630\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2303519405\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2303519405\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698886922,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2304329422\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2304329422\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695144601,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2304731565\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2304731565\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2305551097\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2305551097\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2311268381\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2311268381\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2315425831\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2315425831\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2316549309\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2316549309\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2318151329\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2318151329\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2318653347\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2318653347\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697258019,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2320413995\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2320413995\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2321445599\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2321445599\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2321576079\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2321576079\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698992159,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2321652781\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2321652781\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2324043115\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2324043115\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2328434107\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2328434107\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2330580373\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2330580373\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2333601327\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2333601327\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700907680,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2334128456\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2334128456\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2340903303\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2340903303\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2347287674\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2347287674\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699943343,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2351226722\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2351226722\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2352729542\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2352729542\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2359475267\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2359475267\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":true,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700104952,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2360742959\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2360742959\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2361415263\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2361415263\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2363107482\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2363107482\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2364621913\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2364621913\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2365006326\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2365006326\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2367330798\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2367330798\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2372363878\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2372363878\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694415310,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2373768870\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2373768870\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2373832029\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2373832029\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2373957188\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2373957188\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2376970002\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2376970002\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700398907,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2379157232\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2379157232\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2380361192\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2380361192\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2382919335\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2382919335\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695240751,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2384253834\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2384253834\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2389045052\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2389045052\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2391060935\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2391060935\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2391250488\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2391250488\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2397238037\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2397238037\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2403026614\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2403026614\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697619242,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2405162268\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2405162268\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2406359607\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2406359607\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2408460453\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2408460453\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2411591216\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2411591216\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2411791668\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2411791668\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696777339,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2413777979\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2413777979\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2418326201\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2418326201\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2419735015\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2419735015\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2420469244\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2420469244\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2428356422\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2428356422\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699364313,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2435076373\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2435076373\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698653209,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2441535687\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2441535687\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2445660151\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2445660151\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2450037859\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2450037859\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698662235,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2455695513\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2455695513\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2456610935\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2456610935\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2459596184\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2459596184\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698916534,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2467222861\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2467222861\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2467407321\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2467407321\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2468662977\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2468662977\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2469358242\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2469358242\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2481840430\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2481840430\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700098898,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2484820129\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2484820129\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2485271223\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2485271223\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2485831627\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2485831627\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2487744132\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2487744132\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2491241835\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2491241835\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2491509322\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2491509322\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2494091274\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2494091274\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2495044228\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2495044228\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2499792755\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2499792755\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2500499043\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2500499043\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2501035310\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2501035310\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2501392715\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2501392715\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2509310711\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2509310711\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697619959,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2513608056\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2513608056\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2519991844\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2519991844\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2527123914\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2527123914\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2529149450\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2529149450\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2529173030\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2529173030\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2541778634\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2541778634\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2542308726\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2542308726\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2543136948\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2543136948\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2543151462\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2543151462\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2544821957\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2544821957\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2545303424\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2545303424\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2546145730\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2546145730\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697015817,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2546997095\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2546997095\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698822633,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2550644812\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2550644812\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2552156733\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2552156733\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2553130763\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2553130763\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2553226423\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2553226423\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2554370645\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2554370645\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698895190,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2554419927\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2554419927\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2554528968\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2554528968\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694683439,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2554845832\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2554845832\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697599552,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2558214548\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2558214548\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2561044054\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2561044054\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700878772,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2562159690\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2562159690\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2563542186\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2563542186\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2568600958\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2568600958\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2573171514\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2573171514\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696759880,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2575964991\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2575964991\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2576541524\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2576541524\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2584692046\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2584692046\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2585587550\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2585587550\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2591460564\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2591460564\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696770379,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2591851186\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2591851186\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2591881637\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2591881637\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2592855383\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2592855383\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2594011902\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2594011902\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2595508365\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2595508365\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2600151896\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2600151896\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2600383208\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2600383208\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2601184652\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2601184652\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2601366798\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2601366798\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695066491,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2609646737\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2609646737\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2609720932\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2609720932\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697529316,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2610489646\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2610489646\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2613277163\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2613277163\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2613915887\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2613915887\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2617887857\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2617887857\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2626327942\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2626327942\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2631401942\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2631401942\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2634464933\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2634464933\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2635072834\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2635072834\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2636416179\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2636416179\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2641033059\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2641033059\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2645362757\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2645362757\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694643313,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2647432110\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2647432110\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2647762028\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2647762028\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2651221124\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2651221124\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2651592493\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2651592493\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697203723,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2654376801\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2654376801\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2657780288\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2657780288\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2658782184\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2658782184\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2660237167\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2660237167\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2660869153\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2660869153\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2661098595\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2661098595\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2663585626\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2663585626\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2664190009\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2664190009\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700485702,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2669155458\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2669155458\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2669463502\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2669463502\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2669522749\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2669522749\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2669535307\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2669535307\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2669963504\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2669963504\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697444669,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2671236825\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2671236825\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2673947325\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2673947325\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2674288701\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2674288701\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2677077317\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2677077317\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2680367243\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2680367243\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700462887,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2680629439\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2680629439\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2682102921\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2682102921\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2685129670\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2685129670\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2693021040\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2693021040\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695276058,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2696721836\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2696721836\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2699572576\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2699572576\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2700396114\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2700396114\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2703205078\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2703205078\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2704233049\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2704233049\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2709636845\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2709636845\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2713785709\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2713785709\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2715028883\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2715028883\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2716096987\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2716096987\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2722031875\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2722031875\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698747816,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2724133050\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2724133050\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2725451243\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2725451243\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700558275,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2726215647\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2726215647\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2726777258\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2726777258\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693504291,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2729128783\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2729128783\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699615117,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2731806832\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2731806832\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2734901662\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2734901662\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2738525736\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2738525736\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2740315835\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2740315835\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2742063027\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2742063027\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2754162204\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2754162204\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2754805926\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2754805926\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2755984629\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2755984629\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2756605961\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2756605961\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2757252842\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2757252842\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2764057746\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2764057746\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2767105920\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2767105920\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2767449688\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2767449688\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2768044296\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2768044296\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2771080861\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2771080861\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2775808036\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2775808036\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2776032332\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2776032332\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2776179448\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2776179448\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2777182895\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2777182895\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2777392996\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2777392996\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2780679609\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2780679609\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2784365787\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2784365787\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695781941,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2789477856\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2789477856\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694125473,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2794126343\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2794126343\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694066774,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2797666974\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2797666974\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2798938564\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2798938564\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2800069016\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2800069016\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2800090370\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2800090370\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2800701915\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2800701915\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695999664,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2800889459\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2800889459\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694134265,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2802049271\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2802049271\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2804438534\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2804438534\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2809251033\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2809251033\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2813681002\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2813681002\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2814204296\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2814204296\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2814797407\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2814797407\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2815363205\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2815363205\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2817294799\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2817294799\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2819267901\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2819267901\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2820286436\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2820286436\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700808083,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2820720133\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2820720133\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696847100,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2822906793\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2822906793\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2823062805\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2823062805\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2826097502\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2826097502\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2827017309\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2827017309\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2827279331\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2827279331\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2831193585\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2831193585\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698633194,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2831301183\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2831301183\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2832240999\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2832240999\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2838302193\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2838302193\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2839845469\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2839845469\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697170696,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2840949175\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2840949175\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693958923,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2844014343\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2844014343\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2844833716\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2844833716\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2849945986\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2849945986\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2849985286\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2849985286\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2854365488\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2854365488\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2854451107\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2854451107\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2857250700\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2857250700\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2860578616\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2860578616\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698467152,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2863149679\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2863149679\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2864156896\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2864156896\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2864562820\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2864562820\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2872689322\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2872689322\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2876405749\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2876405749\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2876517639\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2876517639\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2878187113\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2878187113\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697257303,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2878889045\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2878889045\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2879113393\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2879113393\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2879577568\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2879577568\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2879740664\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2879740664\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698462573,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2880563506\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2880563506\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2881445108\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2881445108\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2882899447\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2882899447\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697015398,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2887838678\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2887838678\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698810990,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2888258810\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2888258810\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2890334421\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2890334421\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2890713225\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2890713225\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695172125,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2893984568\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2893984568\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2897007768\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2897007768\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2900920572\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2900920572\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2901569973\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2901569973\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694677269,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2901914165\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2901914165\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2902603154\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2902603154\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2903763431\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2903763431\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2904203350\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2904203350\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2905053077\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2905053077\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698831808,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2905252350\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2905252350\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2912415463\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2912415463\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698645414,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2912423192\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2912423192\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2914580370\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2914580370\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697521105,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2921314358\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2921314358\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695534126,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2925505186\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2925505186\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2926374953\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2926374953\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693451640,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2926503784\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2926503784\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698838728,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2930942211\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2930942211\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695638429,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2933186791\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2933186791\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2933595653\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2933595653\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2934198637\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2934198637\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2938766916\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2938766916\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2940372216\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2940372216\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2942822451\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2942822451\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2945631149\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2945631149\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2945766167\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2945766167\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695384697,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2951042955\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2951042955\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2951333723\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2951333723\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2956182974\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2956182974\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699416726,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2956222225\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2956222225\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2958242148\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2958242148\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2960809325\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2960809325\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693534791,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2961176761\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2961176761\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2962214402\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2962214402\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2962770393\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2962770393\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2962834146\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2962834146\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2963659057\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2963659057\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2964634883\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2964634883\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2965951542\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2965951542\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2966958326\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2966958326\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2970863091\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2970863091\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699694170,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2970994891\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2970994891\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2974929762\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2974929762\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2975162313\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2975162313\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700189317,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2975409554\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2975409554\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2975431366\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2975431366\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698916703,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2975597555\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2975597555\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2980893666\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2980893666\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2981246162\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2981246162\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2982000585\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2982000585\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2984741494\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2984741494\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2987214012\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2987214012\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699957900,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2991969100\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2991969100\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2992114349\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2992114349\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699429855,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2997093071\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2997093071\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2997317644\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2997317644\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_2998067487\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"2998067487\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3002397383\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3002397383\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3004935297\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3004935297\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3004971629\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3004971629\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695172837,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3007515052\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3007515052\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3011324233\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3011324233\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3013893349\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3013893349\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700643891,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3017062485\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3017062485\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3020676146\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3020676146\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3023379234\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3023379234\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3023473057\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3023473057\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3023583215\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3023583215\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3025087621\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3025087621\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3028489935\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3028489935\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699500867,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3029281130\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3029281130\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3030995041\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3030995041\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3037865872\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3037865872\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3045192605\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3045192605\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3047161541\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3047161541\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3048025260\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3048025260\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3049658867\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3049658867\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3053433727\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3053433727\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3057735982\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3057735982\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3064262697\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3064262697\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3067600722\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3067600722\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3068103002\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3068103002\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3072683488\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3072683488\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3075650257\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3075650257\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3079018235\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3079018235\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3083415284\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3083415284\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3086885146\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3086885146\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3088309970\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3088309970\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3089530163\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3089530163\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3093774659\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3093774659\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3094251676\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3094251676\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3100574492\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3100574492\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3100927824\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3100927824\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3107511955\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3107511955\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3107872821\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3107872821\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3110900347\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3110900347\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3114125867\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3114125867\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3115019608\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3115019608\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3115148556\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3115148556\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3117863124\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3117863124\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699237964,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3117943962\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3117943962\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3119418753\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3119418753\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3119660813\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3119660813\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700470751,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3120559487\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3120559487\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698029965,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3121454753\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3121454753\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696566177,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3129026839\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3129026839\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3132656179\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3132656179\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3133075625\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3133075625\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3134278325\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3134278325\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3134537845\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3134537845\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3139569060\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3139569060\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3140420968\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3140420968\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700767055,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3140450276\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3140450276\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3150135159\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3150135159\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3153752108\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3153752108\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3156827214\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3156827214\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3162271972\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3162271972\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3163653728\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3163653728\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696822008,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3164446436\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3164446436\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694973022,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3168796642\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3168796642\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3169244622\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3169244622\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3173403446\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3173403446\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3173756579\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3173756579\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3176223906\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3176223906\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3177929240\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3177929240\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3179190302\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3179190302\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3189972504\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3189972504\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3190912448\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3190912448\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697251571,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3192054345\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3192054345\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3192218781\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3192218781\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3192583468\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3192583468\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3193592046\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3193592046\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3196192331\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3196192331\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3196958921\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3196958921\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3197083869\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3197083869\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3199458860\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3199458860\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3199820791\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3199820791\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3200133119\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3200133119\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3200607575\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3200607575\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3200726264\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3200726264\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3204690068\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3204690068\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3204832902\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3204832902\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3205080439\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3205080439\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3206443553\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3206443553\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3206742093\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3206742093\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3214502593\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3214502593\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693451638,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3217427070\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3217427070\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3217545671\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3217545671\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3218274782\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3218274782\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697042625,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3220549850\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3220549850\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3221190872\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3221190872\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3221229320\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3221229320\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3224221765\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3224221765\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3224719808\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3224719808\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3227148059\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3227148059\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3229531095\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3229531095\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698716862,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3233270846\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3233270846\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3235316541\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3235316541\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3235668582\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3235668582\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698826204,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3237793462\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3237793462\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3238659031\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3238659031\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3238674643\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3238674643\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697625262,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3240646453\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3240646453\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3241132141\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3241132141\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699170520,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3249909086\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3249909086\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3249918280\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3249918280\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3249933654\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3249933654\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3250005519\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3250005519\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3250579894\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3250579894\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700546402,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3251649871\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3251649871\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3261157334\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3261157334\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3261456614\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3261456614\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3263416246\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3263416246\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699074710,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3268693150\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3268693150\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3269425301\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3269425301\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3270681057\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3270681057\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3276126003\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3276126003\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3277113648\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3277113648\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3277330401\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3277330401\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3277768810\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3277768810\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3279927933\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3279927933\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3284080283\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3284080283\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3285780245\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3285780245\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3286756773\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3286756773\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696845719,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3290255065\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3290255065\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3295857972\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3295857972\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3297069764\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3297069764\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3300998316\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3300998316\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3305731505\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3305731505\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697706335,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3307929768\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3307929768\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700450935,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3308461087\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3308461087\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3309832576\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3309832576\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3311609122\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3311609122\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3312811998\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3312811998\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3320730621\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3320730621\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3322768391\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3322768391\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3324817195\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3324817195\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3325246129\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3325246129\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697296484,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3325428510\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3325428510\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698473765,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3327563110\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3327563110\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693879790,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3328438853\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3328438853\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3330044431\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3330044431\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3332502663\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3332502663\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699416495,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3335253060\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3335253060\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3335272940\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3335272940\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3336527674\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3336527674\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3340382285\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3340382285\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3340940320\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3340940320\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3348455039\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3348455039\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700187294,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3349762211\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3349762211\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699008742,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3351106700\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3351106700\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3351467437\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3351467437\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3352768401\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3352768401\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3355860649\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3355860649\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3356152522\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3356152522\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3357676251\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3357676251\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3360234875\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3360234875\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3361047963\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3361047963\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694722944,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3362215269\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3362215269\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700711811,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3367952952\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3367952952\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3370281252\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3370281252\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700185480,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3372906588\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3372906588\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700824802,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3378171880\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3378171880\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3380521639\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3380521639\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3384044960\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3384044960\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3384056544\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3384056544\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699290880,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3384401195\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3384401195\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699341274,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3387336082\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3387336082\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3390583172\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3390583172\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694570259,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3394129159\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3394129159\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3396066359\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3396066359\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3396711993\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3396711993\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700549383,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3397676820\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3397676820\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3401196714\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3401196714\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699433062,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3402038544\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3402038544\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3405014751\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3405014751\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3405537375\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3405537375\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3408547602\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3408547602\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3413094703\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3413094703\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697706562,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3414693763\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3414693763\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693684206,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3417649963\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3417649963\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3418101290\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3418101290\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3418577436\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3418577436\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696846788,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3420613648\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3420613648\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3423009410\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3423009410\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3424164248\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3424164248\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699696895,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3424790937\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3424790937\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700615418,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3424924792\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3424924792\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3427883907\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3427883907\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3430278208\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3430278208\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3435189401\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3435189401\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700298080,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3435706047\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3435706047\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3441335163\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3441335163\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3442471610\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3442471610\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3444204020\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3444204020\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700185051,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3447932943\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3447932943\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3451045692\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3451045692\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3452044353\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3452044353\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3454057246\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3454057246\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698753353,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3456754627\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3456754627\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696819005,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3463065880\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3463065880\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3463544352\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3463544352\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700187695,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3469803158\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3469803158\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3470375736\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3470375736\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3470728766\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3470728766\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3471363726\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3471363726\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3473799316\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3473799316\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3476401940\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3476401940\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700143872,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3479250495\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3479250495\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3482885129\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3482885129\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697179120,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3483519033\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3483519033\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3485197519\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3485197519\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3485222434\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3485222434\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3487505389\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3487505389\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3488662042\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3488662042\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3489712763\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3489712763\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3489831359\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3489831359\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700214321,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3489929329\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3489929329\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3493014269\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3493014269\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3495022341\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3495022341\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3502864403\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3502864403\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3509756342\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3509756342\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3512321008\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3512321008\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3517778099\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3517778099\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3521826845\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3521826845\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3522449211\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3522449211\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3525517047\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3525517047\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697529368,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3526379994\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3526379994\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3528275239\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3528275239\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3529802775\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3529802775\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3530383327\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3530383327\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693448269,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3530810171\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3530810171\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698407047,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3532135718\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3532135718\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3534795134\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3534795134\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699258703,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3534802796\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3534802796\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699930260,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3537220722\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3537220722\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697598000,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3538940238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3538940238\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698410498,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3541443626\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3541443626\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700478845,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3542101940\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3542101940\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3546255283\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3546255283\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700551554,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3547273883\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3547273883\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698991054,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3547752374\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3547752374\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3550065953\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3550065953\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3551589140\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3551589140\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694103742,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3554401652\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3554401652\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3555750545\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3555750545\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693876507,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3560303364\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3560303364\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3561370203\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3561370203\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3564564648\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3564564648\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3565888306\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3565888306\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699236110,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3567031924\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3567031924\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697419447,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3570607148\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3570607148\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3570742368\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3570742368\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3571074829\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3571074829\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3571143305\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3571143305\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3573077275\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3573077275\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698631803,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3574516380\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3574516380\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694656365,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3578633137\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3578633137\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3580853228\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3580853228\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699339523,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3583713307\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3583713307\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3583831504\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3583831504\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3583855819\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3583855819\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3586015547\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3586015547\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3591643599\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3591643599\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3593797495\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3593797495\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3595322825\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3595322825\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3598806139\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3598806139\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3599088167\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3599088167\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3602243749\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3602243749\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3602775150\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3602775150\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3602955381\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3602955381\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3603216444\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3603216444\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3603394766\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3603394766\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694586444,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3605112122\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3605112122\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3605477209\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3605477209\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3605639507\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3605639507\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3611690609\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3611690609\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3611757660\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3611757660\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3613869101\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3613869101\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3613993751\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3613993751\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3617325444\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3617325444\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3625321133\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3625321133\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3625514157\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3625514157\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3628521511\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3628521511\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3633193427\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3633193427\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3635232898\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3635232898\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698651478,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3637960024\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3637960024\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698646661,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3641418034\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3641418034\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3643765049\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3643765049\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3645011153\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3645011153\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3650402223\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3650402223\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3654269967\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3654269967\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700550245,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3655173277\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3655173277\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3656425275\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3656425275\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3656507690\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3656507690\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693443963,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3656865963\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3656865963\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3668055835\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3668055835\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696844456,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3668313451\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3668313451\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698833416,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3679618679\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3679618679\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3681367317\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3681367317\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3682601398\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3682601398\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3685670989\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3685670989\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3688737567\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3688737567\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3689984008\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3689984008\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697595703,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3693010460\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3693010460\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695633747,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3693972131\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3693972131\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3697152375\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3697152375\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3697628542\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3697628542\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3701246521\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3701246521\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3707971244\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3707971244\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3708535808\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3708535808\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3709292948\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3709292948\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3710967864\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3710967864\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700729355,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3715277438\",\"recvMsgOpt\":0,\"conversationType\":0,\"userID\":\"3715277438\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3719131896\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3719131896\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3720515485\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3720515485\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3724651470\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3724651470\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3727425498\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3727425498\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3732248827\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3732248827\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3737685096\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3737685096\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3739320072\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3739320072\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3739899757\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3739899757\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3739934262\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3739934262\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3741079018\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3741079018\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3748470665\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3748470665\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3750772349\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3750772349\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3750980145\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3750980145\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3751457430\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3751457430\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3755727328\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3755727328\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3765484234\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3765484234\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693447369,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3766915245\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3766915245\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3767972548\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3767972548\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3768320302\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3768320302\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3777699354\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3777699354\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3778574807\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3778574807\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3781524005\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3781524005\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3782300709\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3782300709\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700117023,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3786464348\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3786464348\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3787170103\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3787170103\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697075887,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3787639127\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3787639127\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3788067433\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3788067433\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694453233,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3789077505\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3789077505\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3789393466\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3789393466\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3789622986\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3789622986\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3790708319\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3790708319\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3791452062\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3791452062\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3796678904\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3796678904\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3799378960\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3799378960\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3800330261\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3800330261\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3800799958\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3800799958\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3801184840\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3801184840\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3801465816\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3801465816\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3802153805\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3802153805\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3803355027\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3803355027\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3803994837\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3803994837\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3804444798\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3804444798\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3805642017\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3805642017\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3812987647\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3812987647\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3824382983\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3824382983\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3826712907\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3826712907\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3832386746\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3832386746\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3834703974\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3834703974\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3834757485\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3834757485\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3838004574\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3838004574\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695165872,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3839699134\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3839699134\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3840194843\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3840194843\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3843602112\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3843602112\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694217600,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3844179588\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3844179588\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3844296459\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3844296459\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699257338,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3845663923\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3845663923\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3847693332\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3847693332\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700027938,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3849018031\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3849018031\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695867760,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3851012114\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3851012114\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697789140,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3851727632\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3851727632\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3853166116\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3853166116\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3855555410\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3855555410\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3859980461\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3859980461\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696759797,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3860769487\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3860769487\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700816433,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3862147424\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3862147424\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3862854837\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3862854837\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3868556005\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3868556005\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3868811660\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3868811660\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3869241646\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3869241646\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3870370757\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3870370757\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3872108589\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3872108589\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3872601320\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3872601320\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3879871786\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3879871786\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698912295,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3882316983\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3882316983\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3894253605\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3894253605\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700766487,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3895447084\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3895447084\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3897778874\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3897778874\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3899444240\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3899444240\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3902232278\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3902232278\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3910602054\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3910602054\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3912740754\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3912740754\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698994880,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3913129073\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3913129073\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3919312406\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3919312406\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695170752,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3922682136\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3922682136\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700011084,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3923864156\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3923864156\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3926463720\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3926463720\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3927572489\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3927572489\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3928216074\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3928216074\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3931186398\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3931186398\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3932374393\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3932374393\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3932990255\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3932990255\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3935071086\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3935071086\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3936773930\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3936773930\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3937424438\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3937424438\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3939590154\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3939590154\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693278411,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3939999665\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3939999665\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693451638,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3940445356\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3940445356\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3947763668\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3947763668\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3950148404\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3950148404\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3950757937\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3950757937\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3951978865\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3951978865\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3954641888\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3954641888\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3958284610\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3958284610\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3960310198\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3960310198\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3962502361\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3962502361\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3962961610\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3962961610\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3963709279\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3963709279\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3963875243\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3963875243\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3965483986\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3965483986\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3965647724\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3965647724\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700190092,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3971926306\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3971926306\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695564530,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3971967127\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3971967127\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3973845314\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3973845314\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3974823781\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3974823781\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699863780,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3974913605\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3974913605\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3982399444\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3982399444\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3984192272\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3984192272\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700037554,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3985353822\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3985353822\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698108392,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3985432997\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3985432997\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699090988,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3987941559\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3987941559\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699635078,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3989782521\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3989782521\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699028132,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3991660838\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3991660838\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698895356,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3992722755\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3992722755\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3993861435\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3993861435\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3994384158\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3994384158\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3995365114\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3995365114\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3995872443\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3995872443\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698629941,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_3999001279\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"3999001279\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4000650991\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4000650991\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4001754506\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4001754506\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4002821549\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4002821549\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699156083,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4008031414\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4008031414\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4009086415\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4009086415\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4010963995\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4010963995\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4012541644\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4012541644\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4013309319\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4013309319\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":true,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4015475256\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4015475256\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697512511,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4019194868\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4019194868\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697074884,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4019430612\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4019430612\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4023329658\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4023329658\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700387097,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4023669015\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4023669015\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695892489,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4024116306\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4024116306\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4026813737\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4026813737\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4026917269\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4026917269\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4031972755\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4031972755\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700620829,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4039256136\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4039256136\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4041344265\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4041344265\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4049223183\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4049223183\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4049340883\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4049340883\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4049517000\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4049517000\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697077033,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4053284890\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4053284890\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4055940070\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4055940070\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4057171904\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4057171904\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4064402118\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4064402118\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4067008127\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4067008127\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4070197417\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4070197417\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697554723,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4072022438\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4072022438\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4079084055\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4079084055\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4080264659\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4080264659\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4080738041\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4080738041\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4082103573\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4082103573\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698043487,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4085376424\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4085376424\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4087789327\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4087789327\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4091428240\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4091428240\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4091541801\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4091541801\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4093701989\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4093701989\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695248829,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4094740281\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4094740281\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4095191329\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4095191329\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4096170064\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4096170064\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699257966,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4102041542\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4102041542\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4105734635\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4105734635\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4107410993\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4107410993\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4111442760\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4111442760\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4113687442\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4113687442\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4113735582\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4113735582\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4114891625\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4114891625\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698822397,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4116383143\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4116383143\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693784732,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4117212022\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4117212022\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4118659143\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4118659143\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696647758,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4119796562\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4119796562\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4121091576\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4121091576\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4121196365\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4121196365\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4122315779\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4122315779\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4122387753\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4122387753\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4124281952\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4124281952\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4124733788\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4124733788\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4127687270\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4127687270\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4130100082\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4130100082\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698631129,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4134217728\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4134217728\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4140617939\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4140617939\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4142553143\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4142553143\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4143953359\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4143953359\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4152679278\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4152679278\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4155714037\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4155714037\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697979076,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4164499789\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4164499789\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4164663659\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4164663659\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4167776677\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4167776677\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4169162891\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4169162891\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697763240,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4174741233\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4174741233\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4176532281\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4176532281\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4178861776\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4178861776\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4180249221\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4180249221\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4189886690\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4189886690\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4189972689\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4189972689\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697185846,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4193526288\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4193526288\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4195435042\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4195435042\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4196155498\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4196155498\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4198077672\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4198077672\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4201975122\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4201975122\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4202803190\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4202803190\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698216458,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4203267238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4203267238\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695239932,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4204000340\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4204000340\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4204574965\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4204574965\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4209534099\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4209534099\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4212105657\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4212105657\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4215789737\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4215789737\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698914862,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4216253974\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4216253974\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4216644062\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4216644062\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4216757974\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4216757974\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4220093768\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4220093768\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4221167475\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4221167475\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693451638,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4221194205\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4221194205\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4221983701\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4221983701\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696916630,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4222334962\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4222334962\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4223720127\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4223720127\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694586447,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4226213321\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4226213321\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4226237813\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4226237813\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4230648979\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4230648979\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4231104423\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4231104423\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4233310059\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4233310059\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4233425493\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4233425493\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4235698714\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4235698714\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4240278083\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4240278083\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4242533018\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4242533018\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4246570603\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4246570603\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695885383,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4247095598\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4247095598\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4247377924\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4247377924\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4252484758\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4252484758\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4253127832\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4253127832\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697635944,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4253320786\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4253320786\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4254681784\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4254681784\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4257335322\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4257335322\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4258660302\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4258660302\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4259132146\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4259132146\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4261410970\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4261410970\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4264539425\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4264539425\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4265720132\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4265720132\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700107474,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4266615651\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4266615651\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4275733340\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4275733340\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4284653704\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4284653704\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4286070689\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4286070689\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700201581,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4289978919\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4289978919\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4293322269\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4293322269\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693962960,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4293913125\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4293913125\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694224393,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4297395201\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4297395201\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4300349125\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4300349125\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4300789253\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4300789253\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700186720,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4302380765\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4302380765\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4306527503\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4306527503\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4307478992\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4307478992\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4308365405\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4308365405\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697443543,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4313249276\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4313249276\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4316352542\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4316352542\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4319599306\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4319599306\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4323462362\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4323462362\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4324879979\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4324879979\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698831641,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4326656042\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4326656042\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4328265262\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4328265262\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4328490815\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4328490815\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4328997633\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4328997633\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4329402013\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4329402013\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4331285657\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4331285657\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4331847866\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4331847866\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4332427151\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4332427151\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695082287,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4333324598\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4333324598\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4336422144\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4336422144\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4337583921\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4337583921\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4340810454\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4340810454\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4344723150\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4344723150\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4344973084\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4344973084\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697445631,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4346231461\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4346231461\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698907038,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4346543697\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4346543697\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698238213,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4348082955\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4348082955\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4348869517\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4348869517\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699003594,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4351325833\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4351325833\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693934733,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4356312106\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4356312106\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696138338,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4357320975\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4357320975\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4359161104\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4359161104\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4359987819\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4359987819\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694211473,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4363081068\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4363081068\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4364213352\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4364213352\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4365758115\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4365758115\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4366259531\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4366259531\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4366431790\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4366431790\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4371536904\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4371536904\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4372248137\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4372248137\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4372919561\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4372919561\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4378913374\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4378913374\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4379253236\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4379253236\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4382914823\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4382914823\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4385453331\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4385453331\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4385686899\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4385686899\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4389192475\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4389192475\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4389669728\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4389669728\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4393448866\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4393448866\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4401936006\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4401936006\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4413764571\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4413764571\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4413835259\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4413835259\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4415857340\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4415857340\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4419129931\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4419129931\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4422224754\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4422224754\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4422329530\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4422329530\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4423627349\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4423627349\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4426459498\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4426459498\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694476066,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4428304728\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4428304728\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4430427191\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4430427191\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4436439007\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4436439007\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4440450535\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4440450535\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4440534964\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4440534964\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700287773,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4445212300\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4445212300\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695455242,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4448855672\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4448855672\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4449558244\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4449558244\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4450360727\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4450360727\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4451267516\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4451267516\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4453030062\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4453030062\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4453849009\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4453849009\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697447753,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4454612664\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4454612664\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4464911980\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4464911980\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4467365448\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4467365448\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4475835014\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4475835014\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4476306361\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4476306361\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4479234419\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4479234419\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4480521251\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4480521251\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695188096,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4481379556\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4481379556\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4485043552\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4485043552\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4486805078\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4486805078\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4488638760\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4488638760\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4493065873\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4493065873\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4494156274\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4494156274\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697072922,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4500177587\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4500177587\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4501084974\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4501084974\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4501771438\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4501771438\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4502082928\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4502082928\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4508553291\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4508553291\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4509502522\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4509502522\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4510059360\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4510059360\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698571172,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4510938314\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4510938314\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4511028690\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4511028690\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4512614259\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4512614259\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695318634,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4513939193\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4513939193\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4514515621\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4514515621\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4515124280\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4515124280\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4518410219\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4518410219\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4519437471\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4519437471\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4521618779\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4521618779\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4526705625\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4526705625\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4530769942\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4530769942\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4534383505\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4534383505\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4536976003\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4536976003\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4537133650\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4537133650\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4539505962\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4539505962\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4541622211\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4541622211\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4542445708\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4542445708\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4546854512\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4546854512\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693952411,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4547179316\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4547179316\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4549986255\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4549986255\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4551538686\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4551538686\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4553582795\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4553582795\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4554875439\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4554875439\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4555507970\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4555507970\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4558664801\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4558664801\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4559881917\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4559881917\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4560543353\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4560543353\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4568092882\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4568092882\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4569177198\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4569177198\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4569497081\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4569497081\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4576249771\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4576249771\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4576673457\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4576673457\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4576871044\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4576871044\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698821615,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4578601959\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4578601959\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4583274239\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4583274239\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4585412233\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4585412233\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4589334066\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4589334066\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697623051,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4590290601\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4590290601\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4591244785\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4591244785\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4594001188\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4594001188\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4596532610\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4596532610\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4596959443\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4596959443\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700843733,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4597354478\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4597354478\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4598359368\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4598359368\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4600766877\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4600766877\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700642765,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4601563033\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4601563033\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4601951290\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4601951290\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4604489387\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4604489387\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4605716056\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4605716056\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4609025266\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4609025266\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4610709176\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4610709176\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4612931477\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4612931477\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4613234206\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4613234206\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698833651,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4613808391\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4613808391\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4614771183\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4614771183\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4615063306\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4615063306\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4615500844\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4615500844\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4616348536\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4616348536\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693529306,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4617886925\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4617886925\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4627372556\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4627372556\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4627757948\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4627757948\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4628456484\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4628456484\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4631480818\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4631480818\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4636565947\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4636565947\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4641688133\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4641688133\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4641774210\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4641774210\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4644188070\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4644188070\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699428311,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4647156540\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4647156540\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693852571,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4647392322\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4647392322\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4648916002\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4648916002\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4650957151\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4650957151\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4654851468\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4654851468\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4655129542\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4655129542\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699262024,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4655516792\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4655516792\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4662755661\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4662755661\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4663715535\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4663715535\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4667739897\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4667739897\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4668099372\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4668099372\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4671482518\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4671482518\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4672885387\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4672885387\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4674991198\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4674991198\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4678037588\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4678037588\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4681582191\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4681582191\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4685588650\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4685588650\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4687007131\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4687007131\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4689169233\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4689169233\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4689278818\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4689278818\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4689925923\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4689925923\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4698451133\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4698451133\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698030784,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4699751551\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4699751551\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4700799522\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4700799522\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4701844957\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4701844957\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4701865718\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4701865718\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698807431,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4702935618\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4702935618\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4704979905\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4704979905\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4705713217\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4705713217\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4710682050\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4710682050\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4711741755\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4711741755\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4714470295\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4714470295\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4715090983\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4715090983\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4716126862\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4716126862\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4717198450\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4717198450\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4718128155\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4718128155\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4718771983\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4718771983\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4721455080\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4721455080\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695382988,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4732324211\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4732324211\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4732620707\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4732620707\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4733304576\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4733304576\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4738033186\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4738033186\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700184307,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4741130938\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4741130938\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4742854958\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4742854958\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700549846,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4748156889\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4748156889\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697321293,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4749302175\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4749302175\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4752930364\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4752930364\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4754517682\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4754517682\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4754852664\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4754852664\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700821347,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4755574168\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4755574168\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4757807995\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4757807995\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4764613832\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4764613832\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4767981688\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4767981688\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4774906057\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4774906057\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4780839267\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4780839267\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4785165125\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4785165125\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697453004,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4785606051\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4785606051\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4786954344\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4786954344\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4791442681\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4791442681\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4794115560\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4794115560\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4802965282\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4802965282\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4805646202\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4805646202\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4819622986\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4819622986\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4821224168\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4821224168\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4823617060\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4823617060\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699779914,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4824619122\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4824619122\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4829651300\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4829651300\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4832615071\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4832615071\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699125043,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4833342766\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4833342766\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4834232511\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4834232511\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4834281814\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4834281814\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4834690774\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4834690774\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4835033409\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4835033409\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4835400415\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4835400415\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4840588859\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4840588859\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700192038,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4846054480\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4846054480\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4849669261\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4849669261\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694662162,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4849985881\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4849985881\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4850514972\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4850514972\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4857349434\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4857349434\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4858487103\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4858487103\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4867820065\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4867820065\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4868312193\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4868312193\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4870999670\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4870999670\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4871183993\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4871183993\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4872085821\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4872085821\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4873691241\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4873691241\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4875538382\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4875538382\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4876217110\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4876217110\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4892758656\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4892758656\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4893424641\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4893424641\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700794653,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4893727151\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4893727151\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4896388822\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4896388822\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4900753426\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4900753426\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4901778325\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4901778325\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4902397738\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4902397738\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4908904387\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4908904387\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4911332544\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4911332544\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4911414951\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4911414951\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4911851183\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4911851183\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4912844543\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4912844543\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4915484479\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4915484479\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4918276559\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4918276559\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697428303,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4918328683\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4918328683\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693552059,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4923873012\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4923873012\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695316569,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4926446021\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4926446021\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697122128,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4930915768\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4930915768\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700796125,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4934894155\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4934894155\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698987341,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4937209096\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4937209096\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700703140,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4938106565\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4938106565\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4939956693\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4939956693\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4940175675\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4940175675\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4940249071\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4940249071\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4943773015\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4943773015\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4949622917\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4949622917\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4950713210\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4950713210\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4951801389\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4951801389\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4952005760\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4952005760\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4958357173\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4958357173\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4958846328\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4958846328\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4959913802\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4959913802\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4961711537\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4961711537\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4963393229\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4963393229\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699431421,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4975019413\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4975019413\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4975337998\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4975337998\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700162310,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4977198622\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4977198622\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4979480519\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4979480519\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4979639389\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4979639389\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694621648,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4981130292\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4981130292\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4981191121\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4981191121\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4981368838\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4981368838\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4985196437\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4985196437\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4988969273\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4988969273\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4990193480\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4990193480\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4995366980\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4995366980\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4995988309\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4995988309\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699796126,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4999156692\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4999156692\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_4999749136\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"4999749136\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700272763,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5001599614\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5001599614\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5002491660\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5002491660\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5003938059\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5003938059\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5007601899\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5007601899\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5009769752\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5009769752\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700224944,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5011307721\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5011307721\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695448735,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5016947087\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5016947087\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5017045152\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5017045152\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5024780259\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5024780259\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693611456,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5027132489\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5027132489\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5030358081\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5030358081\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5033164124\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5033164124\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5036254684\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5036254684\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5039689203\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5039689203\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5040986608\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5040986608\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697448383,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5044983328\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5044983328\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698650271,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5045959757\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5045959757\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5046045029\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5046045029\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5052720919\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5052720919\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5054553896\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5054553896\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5057316211\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5057316211\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5057868990\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5057868990\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695459142,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5058490688\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5058490688\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5059658106\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5059658106\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5063708805\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5063708805\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5064450025\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5064450025\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700286149,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5067345572\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5067345572\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5067438435\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5067438435\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696149506,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5068449155\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5068449155\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5072662873\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5072662873\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5073192046\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5073192046\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5074137138\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5074137138\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5075042452\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5075042452\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5086890922\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5086890922\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5086994351\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5086994351\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5087027370\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5087027370\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5092290187\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5092290187\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698073052,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5093785048\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5093785048\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5098290115\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5098290115\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5098473308\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5098473308\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5104021530\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5104021530\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5107494273\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5107494273\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5108778950\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5108778950\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5109208108\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5109208108\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5109328754\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5109328754\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5113616736\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5113616736\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5114178152\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5114178152\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5115816718\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5115816718\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5120891134\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5120891134\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5124623407\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5124623407\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5129646012\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5129646012\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5131260895\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5131260895\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5131548684\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5131548684\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5132970330\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5132970330\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5138412244\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5138412244\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5139953083\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5139953083\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5143564922\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5143564922\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5148465784\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5148465784\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5151877467\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5151877467\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5152364658\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5152364658\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697594696,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5152367578\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5152367578\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5152700528\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5152700528\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5152772821\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5152772821\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5159407655\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5159407655\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5159666152\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5159666152\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5160877753\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5160877753\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5164441961\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5164441961\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5165900123\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5165900123\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697787207,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5166465530\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5166465530\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5166918125\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5166918125\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699519257,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5175156228\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5175156228\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698059692,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5175926475\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5175926475\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5178916117\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5178916117\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697526776,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5181423157\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5181423157\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5185600527\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5185600527\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5189528969\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5189528969\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5190651797\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5190651797\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700098291,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5191177805\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5191177805\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5192859184\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5192859184\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5200142893\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5200142893\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5203162281\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5203162281\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5206821177\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5206821177\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697375326,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5206946655\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5206946655\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5207254443\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5207254443\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5211251741\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5211251741\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698844606,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5213333820\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5213333820\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698311279,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5217579807\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5217579807\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5221720362\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5221720362\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5222516154\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5222516154\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5226459880\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5226459880\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696747570,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5226627818\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5226627818\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5233426123\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5233426123\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5235308523\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5235308523\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5236359243\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5236359243\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5236545003\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5236545003\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5237025674\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5237025674\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5240408296\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5240408296\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5240575339\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5240575339\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5241529913\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5241529913\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5244482702\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5244482702\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5248071176\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5248071176\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5248150745\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5248150745\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5248385191\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5248385191\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5249725335\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5249725335\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5256311014\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5256311014\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5259696013\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5259696013\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5260081632\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5260081632\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700039623,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5262644632\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5262644632\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5263712829\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5263712829\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5264992214\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5264992214\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5268812393\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5268812393\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5280943776\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5280943776\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5282627881\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5282627881\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699342726,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5285022981\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5285022981\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5286535793\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5286535793\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5288626264\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5288626264\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5290454482\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5290454482\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5290473735\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5290473735\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698114430,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5291311764\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5291311764\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700191451,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5291456050\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5291456050\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694803489,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5294929577\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5294929577\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5295369982\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5295369982\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5296052389\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5296052389\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5296469685\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5296469685\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5296644653\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5296644653\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5297662536\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5297662536\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5297812664\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5297812664\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5304967461\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5304967461\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5306710076\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5306710076\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5307357041\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5307357041\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5320305071\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5320305071\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5321467496\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5321467496\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5321587991\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5321587991\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5329005553\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5329005553\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5329462571\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5329462571\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5329543914\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5329543914\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5331279867\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5331279867\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5334542905\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5334542905\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698591690,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5334756257\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5334756257\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5336317141\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5336317141\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5343195507\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5343195507\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5346815324\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5346815324\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5348575962\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5348575962\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696650066,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5349221317\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5349221317\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693356571,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5349634613\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5349634613\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5350931457\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5350931457\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5351132193\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5351132193\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5352682579\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5352682579\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5356113166\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5356113166\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700460636,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5358143052\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5358143052\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5358714951\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5358714951\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5358843278\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5358843278\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699321394,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5358983896\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5358983896\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5360417820\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5360417820\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5363582234\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5363582234\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694126829,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5363957705\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5363957705\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5365048884\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5365048884\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5368584236\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5368584236\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5370620069\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5370620069\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5373490184\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5373490184\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5373710322\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5373710322\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698575735,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5375609152\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5375609152\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5377724931\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5377724931\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5381374647\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5381374647\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5382734642\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5382734642\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694374042,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5383441189\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5383441189\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5384318976\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5384318976\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5390236703\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5390236703\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693533677,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5396639819\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5396639819\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5397087982\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5397087982\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5397363424\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5397363424\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5398613531\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5398613531\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693956871,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5401562218\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5401562218\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5402322052\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5402322052\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693761455,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5404307971\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5404307971\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5405441233\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5405441233\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5406159540\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5406159540\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5407091476\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5407091476\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5407782499\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5407782499\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5409594675\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5409594675\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5410098477\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5410098477\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5410355545\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5410355545\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694048585,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5410368232\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5410368232\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5410772311\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5410772311\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5414128931\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5414128931\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699339518,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5416738193\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5416738193\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5417124831\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5417124831\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5420104655\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5420104655\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5430821760\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5430821760\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5432843240\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5432843240\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5442199418\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5442199418\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5446046008\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5446046008\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5446567702\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5446567702\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5449593636\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5449593636\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697683943,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5450965115\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5450965115\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5452365658\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5452365658\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5452450197\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5452450197\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5453108500\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5453108500\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5455481997\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5455481997\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694822859,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5480212485\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5480212485\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700019275,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5480713946\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5480713946\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5480812632\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5480812632\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694824598,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5485148642\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5485148642\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5496039772\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5496039772\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5502486573\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5502486573\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5503315300\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5503315300\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5503837684\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5503837684\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5512448749\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5512448749\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698410572,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5512868112\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5512868112\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693795088,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5513765615\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5513765615\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5514725837\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5514725837\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699003309,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5525192219\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5525192219\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5525995594\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5525995594\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5526021912\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5526021912\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693423002,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5526651611\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5526651611\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5535739780\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5535739780\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5540563810\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5540563810\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5540757722\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5540757722\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697189510,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5541069207\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5541069207\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5542535779\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5542535779\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5548591709\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5548591709\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5549513683\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5549513683\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5552236107\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5552236107\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5553194662\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5553194662\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5557876583\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5557876583\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700636485,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5558311156\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5558311156\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5561959046\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5561959046\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5566365465\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5566365465\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698893657,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5568853842\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5568853842\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696821356,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5570249193\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5570249193\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5570319326\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5570319326\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5576420817\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5576420817\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694973993,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5577874223\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5577874223\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698052289,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5578328451\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5578328451\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5578731578\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5578731578\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5581090381\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5581090381\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5581435034\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5581435034\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5584327976\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5584327976\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5586125949\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5586125949\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5586255658\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5586255658\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5587098679\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5587098679\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5587217057\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5587217057\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698070439,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5587808406\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5587808406\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5594047664\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5594047664\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5596279712\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5596279712\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5605784685\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5605784685\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694741916,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5606396140\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5606396140\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5610837207\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5610837207\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5616569214\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5616569214\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694566545,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5618114098\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5618114098\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5619318712\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5619318712\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5619336399\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5619336399\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5620768201\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5620768201\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5625548410\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5625548410\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5626394972\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5626394972\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5629610459\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5629610459\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5630216908\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5630216908\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5632773822\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5632773822\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5633059660\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5633059660\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5633188673\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5633188673\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693789607,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5633378166\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5633378166\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5636993626\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5636993626\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5640122986\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5640122986\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5643092782\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5643092782\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5644765212\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5644765212\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5645682170\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5645682170\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700616801,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5647374792\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5647374792\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5653943210\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5653943210\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5654578948\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5654578948\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5656745158\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5656745158\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5657688195\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5657688195\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699880217,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5658001949\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5658001949\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5659165582\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5659165582\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699407325,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5659573503\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5659573503\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5661158812\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5661158812\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5665554530\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5665554530\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5665605844\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5665605844\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5665783096\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5665783096\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5668726699\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5668726699\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695259601,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5668985363\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5668985363\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697114307,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5669416921\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5669416921\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5674745391\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5674745391\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5677381479\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5677381479\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5693206451\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5693206451\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5695116048\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5695116048\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5695990734\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5695990734\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5699652927\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5699652927\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700567247,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5708410287\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5708410287\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5710168294\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5710168294\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5710649058\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5710649058\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697870401,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5715976407\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5715976407\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694306230,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5717044381\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5717044381\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5718405684\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5718405684\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5719987926\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5719987926\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5726747048\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5726747048\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5728062211\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5728062211\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5728220862\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5728220862\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5728456517\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5728456517\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5729235369\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5729235369\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5730628535\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5730628535\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5734504508\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5734504508\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5735206330\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5735206330\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5735757792\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5735757792\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695885706,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5741092371\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5741092371\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5741564889\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5741564889\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5743097181\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5743097181\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5743288207\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5743288207\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5745714391\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5745714391\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5746670115\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5746670115\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5752307329\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5752307329\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695536531,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5762137067\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5762137067\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5763494246\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5763494246\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5764725232\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5764725232\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5766348077\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5766348077\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694030833,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5770532835\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5770532835\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5775691842\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5775691842\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5775768919\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5775768919\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698649781,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5778047866\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5778047866\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5782315790\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5782315790\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5784013945\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5784013945\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5788143929\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5788143929\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5788891525\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5788891525\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5790728514\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5790728514\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5794961319\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5794961319\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5795637205\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5795637205\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5798749721\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5798749721\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698084286,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5800725777\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5800725777\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700170614,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5803896006\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5803896006\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5806188403\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5806188403\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5808959084\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5808959084\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5814165285\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5814165285\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5816557466\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5816557466\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5816946439\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5816946439\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5817653065\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5817653065\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5817925510\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5817925510\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5818783212\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5818783212\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5821718929\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5821718929\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5822391747\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5822391747\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5823977481\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5823977481\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5832825629\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5832825629\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5839682145\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5839682145\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5842361658\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5842361658\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5842695634\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5842695634\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5843381897\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5843381897\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5856396568\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5856396568\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5857452412\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5857452412\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5860770188\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5860770188\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5863796992\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5863796992\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5863894652\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5863894652\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695322187,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5864051915\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5864051915\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5864943501\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5864943501\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5871437314\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5871437314\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5883787211\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5883787211\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5885080003\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5885080003\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5887387594\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5887387594\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5890658001\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5890658001\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697964340,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5894974847\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5894974847\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5896039030\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5896039030\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5896150134\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5896150134\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5896186963\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5896186963\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5899173891\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5899173891\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5904075897\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5904075897\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5907279098\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5907279098\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5908182038\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5908182038\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5910546288\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5910546288\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5915346182\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5915346182\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5915558310\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5915558310\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698548484,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5918528750\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5918528750\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5921376933\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5921376933\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698804763,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5921920938\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5921920938\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5925608879\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5925608879\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5928750409\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5928750409\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698626151,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5929046253\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5929046253\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699256771,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5929204367\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5929204367\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5931929122\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5931929122\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5932065188\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5932065188\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5935225979\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5935225979\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5935227089\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5935227089\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5936400835\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5936400835\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5937916635\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5937916635\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1692486247,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5937972697\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5937972697\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5939377886\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5939377886\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5940571929\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5940571929\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5945434993\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5945434993\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5948016835\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5948016835\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5950701783\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5950701783\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5952571464\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5952571464\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697696925,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5954565885\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5954565885\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700532414,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5955203999\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5955203999\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5955873566\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5955873566\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699236123,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5959625032\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5959625032\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5967938442\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5967938442\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5975439779\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5975439779\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5975476723\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5975476723\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5977374952\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5977374952\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694741891,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5981427132\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5981427132\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5983902361\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5983902361\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698592273,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5984173458\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5984173458\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5984271985\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5984271985\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697512403,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5986232431\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5986232431\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5996388709\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5996388709\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5997395137\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5997395137\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_5997701968\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"5997701968\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698402504,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6005888406\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6005888406\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6006128096\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6006128096\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6006290878\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6006290878\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6008066663\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6008066663\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6013027606\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6013027606\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6013955514\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6013955514\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696064085,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6015794695\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6015794695\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6016147145\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6016147145\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6018243921\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6018243921\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700126409,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6023508071\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6023508071\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6026538705\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6026538705\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6031134585\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6031134585\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6031667349\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6031667349\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6033028313\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6033028313\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6034497071\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6034497071\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6036151426\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6036151426\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6036941107\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6036941107\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6038779981\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6038779981\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697452362,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6048406952\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6048406952\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6051177811\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6051177811\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6051934668\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6051934668\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698927585,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6055213651\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6055213651\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694470347,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6060091841\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6060091841\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6060319919\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6060319919\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6062924771\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6062924771\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697076999,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6064103151\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6064103151\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6065191029\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6065191029\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6068497884\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6068497884\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6074324251\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6074324251\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700127039,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6076551181\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6076551181\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6078638343\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6078638343\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6083577052\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6083577052\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696923327,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6083951309\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6083951309\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6087811348\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6087811348\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6088409125\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6088409125\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6093808210\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6093808210\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6096605449\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6096605449\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6099670645\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6099670645\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6104556263\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6104556263\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6106775804\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6106775804\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6113261132\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6113261132\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6115346815\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6115346815\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6116849462\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6116849462\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6116896250\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6116896250\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6118899713\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6118899713\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6126224779\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6126224779\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6128440220\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6128440220\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6131489317\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6131489317\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6132231740\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6132231740\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6132997969\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6132997969\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6133038339\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6133038339\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6133543856\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6133543856\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6133844467\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6133844467\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6134647314\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6134647314\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6135244436\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6135244436\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6140652559\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6140652559\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697523437,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6141140222\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6141140222\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6141620999\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6141620999\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699348757,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6142166971\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6142166971\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695001487,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6142186125\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6142186125\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6143363837\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6143363837\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6145520493\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6145520493\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6149155248\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6149155248\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6152830251\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6152830251\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695235009,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6156827373\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6156827373\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6158590414\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6158590414\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699605979,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6161718484\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6161718484\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6165380448\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6165380448\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6168075727\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6168075727\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6168367570\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6168367570\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699003065,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6171471555\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6171471555\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6171560899\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6171560899\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6171677006\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6171677006\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6179365429\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6179365429\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6182458494\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6182458494\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6182903129\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6182903129\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6195299101\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6195299101\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6195752325\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6195752325\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6201510570\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6201510570\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6203470761\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6203470761\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6204547412\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6204547412\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6204882268\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6204882268\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6205781501\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6205781501\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694638160,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6218720837\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6218720837\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697706848,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6219207142\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6219207142\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695102884,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6219819108\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6219819108\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6224388014\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6224388014\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6225512933\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6225512933\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6227325792\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6227325792\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6231818471\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6231818471\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6232137221\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6232137221\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6237905746\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6237905746\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6240876322\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6240876322\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698746275,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6244724164\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6244724164\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6246279298\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6246279298\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6250904913\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6250904913\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6254689070\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6254689070\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6257143773\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6257143773\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6261322669\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6261322669\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6262174436\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6262174436\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6265354518\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6265354518\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697524536,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6265776649\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6265776649\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6266941295\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6266941295\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700117975,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6270795380\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6270795380\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6270908929\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6270908929\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6271691561\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6271691561\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6273646617\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6273646617\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699808281,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6277147514\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6277147514\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6283419580\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6283419580\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6285709625\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6285709625\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6287774671\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6287774671\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6288096156\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6288096156\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6291070602\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6291070602\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693587290,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6292285317\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6292285317\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700190998,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6302501675\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6302501675\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6303051991\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6303051991\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698714199,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6303348015\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6303348015\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700035043,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6311770884\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6311770884\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6312531724\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6312531724\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6312576873\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6312576873\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6313231245\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6313231245\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694475775,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6313419358\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6313419358\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6317201698\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6317201698\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700462440,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6319015024\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6319015024\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700793148,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6319901751\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6319901751\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6322374743\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6322374743\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6326666004\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6326666004\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6327876925\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6327876925\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6330822619\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6330822619\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700068204,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6331971236\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6331971236\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695165046,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6334911076\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6334911076\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697184173,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6338240526\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6338240526\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6339230517\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6339230517\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6342959213\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6342959213\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6346508066\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6346508066\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6347103724\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6347103724\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6351160254\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6351160254\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6352104335\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6352104335\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6352490253\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6352490253\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700469517,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6352839849\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6352839849\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6353020967\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6353020967\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696656770,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6361976167\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6361976167\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697018087,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6362196673\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6362196673\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6363109385\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6363109385\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6364600020\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6364600020\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6373189805\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6373189805\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6378176309\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6378176309\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6381244261\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6381244261\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700462200,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6386210375\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6386210375\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6397860749\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6397860749\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699337112,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6398540247\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6398540247\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6401239370\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6401239370\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6404356222\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6404356222\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6406732941\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6406732941\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6410043931\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6410043931\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6411073511\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6411073511\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6412329187\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6412329187\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699496639,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6414911020\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6414911020\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6416142584\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6416142584\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6417602965\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6417602965\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6419911901\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6419911901\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699322804,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6420701443\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6420701443\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6421051438\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6421051438\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6431088982\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6431088982\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699857833,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6433354761\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6433354761\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6438561890\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6438561890\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6441149641\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6441149641\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6441650238\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6441650238\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6443345562\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6443345562\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6444500926\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6444500926\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6444929933\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6444929933\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693450604,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6447835862\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6447835862\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6448579919\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6448579919\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6449138632\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6449138632\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6449141444\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6449141444\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6453774519\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6453774519\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6453949619\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6453949619\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6454827578\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6454827578\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694741861,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6458562938\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6458562938\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700369147,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6460025590\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6460025590\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6469392278\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6469392278\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6481678351\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6481678351\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6483893350\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6483893350\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700585652,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6484797725\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6484797725\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6487716839\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6487716839\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6494483474\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6494483474\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6496496312\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6496496312\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693447698,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6498376092\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6498376092\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6499282212\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6499282212\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6500329873\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6500329873\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6501494738\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6501494738\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695778839,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6506881202\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6506881202\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6511811241\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6511811241\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6512556770\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6512556770\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6513275013\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6513275013\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6516498277\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6516498277\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6516684062\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6516684062\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694031684,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6518420590\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6518420590\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6519854131\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6519854131\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6522084706\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6522084706\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693451639,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6524017485\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6524017485\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697524476,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6529480566\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6529480566\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6531017055\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6531017055\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6531826562\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6531826562\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6536907751\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6536907751\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6537610017\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6537610017\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6538167968\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6538167968\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6539096974\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6539096974\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6549189747\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6549189747\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700208645,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6549643089\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6549643089\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6551973401\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6551973401\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696663898,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6554716140\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6554716140\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6557841892\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6557841892\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6557880147\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6557880147\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6559013673\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6559013673\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6561826343\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6561826343\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6561879012\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6561879012\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6564186011\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6564186011\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6566879594\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6566879594\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6567751477\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6567751477\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6568661215\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6568661215\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6569298083\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6569298083\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6571764694\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6571764694\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6572366754\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6572366754\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6574042397\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6574042397\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700466791,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6579374753\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6579374753\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6582408770\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6582408770\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697467350,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6582718155\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6582718155\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6585308853\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6585308853\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6585436255\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6585436255\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6587366044\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6587366044\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6588136652\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6588136652\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6588496447\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6588496447\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1701062353,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6591504507\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6591504507\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6592301142\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6592301142\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6592334053\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6592334053\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693879701,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6592691219\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6592691219\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700818176,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6593158401\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6593158401\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693426851,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6593585083\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6593585083\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693446919,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6602728377\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6602728377\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6605809249\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6605809249\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6605893249\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6605893249\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6606496379\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6606496379\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6608487604\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6608487604\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6611636445\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6611636445\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6614558445\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6614558445\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6616366600\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6616366600\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6618248076\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6618248076\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6621259604\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6621259604\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6625451597\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6625451597\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6627105296\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6627105296\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6628117309\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6628117309\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698144857,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6629808721\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6629808721\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6630888513\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6630888513\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700186786,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6631065279\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6631065279\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6640200986\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6640200986\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6640754016\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6640754016\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700228105,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6642201111\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6642201111\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6644481571\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6644481571\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6650213351\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6650213351\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699804129,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6655870493\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6655870493\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6658903475\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6658903475\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700104812,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6662856855\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6662856855\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6663129968\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6663129968\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6663875174\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6663875174\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6665134423\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6665134423\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699200060,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6667078727\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6667078727\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700819184,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6670339193\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6670339193\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6670746810\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6670746810\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6670760760\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6670760760\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6675598583\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6675598583\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6676873258\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6676873258\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6677772576\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6677772576\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695717554,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6683875714\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6683875714\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6685902642\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6685902642\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6686526228\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6686526228\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6686846215\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6686846215\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6687633010\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6687633010\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6688995137\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6688995137\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6689518881\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6689518881\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6691071198\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6691071198\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700117832,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6691486515\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6691486515\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6692484993\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6692484993\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6693315961\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6693315961\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6699224388\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6699224388\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6699700239\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6699700239\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6700192964\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6700192964\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698829519,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6700296582\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6700296582\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6700520119\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6700520119\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6703162622\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6703162622\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6704991652\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6704991652\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6712048605\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6712048605\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700621238,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6719767483\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6719767483\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694720135,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6720463717\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6720463717\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6723382158\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6723382158\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6723843756\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6723843756\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6726134118\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6726134118\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6740911583\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6740911583\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6741909723\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6741909723\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6742265687\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6742265687\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6742554919\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6742554919\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700190749,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6746838054\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6746838054\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6753861572\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6753861572\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6754011874\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6754011874\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6754137880\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6754137880\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6754912650\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6754912650\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6755720200\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6755720200\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6760352680\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6760352680\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6761468459\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6761468459\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6761872625\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6761872625\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699410553,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6763043356\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6763043356\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6765773509\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6765773509\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697070950,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6765812585\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6765812585\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6767809967\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6767809967\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698682274,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6767821294\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6767821294\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6768590754\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6768590754\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697598298,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6770102525\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6770102525\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6772352172\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6772352172\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6773909696\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6773909696\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6778602686\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6778602686\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6784987176\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6784987176\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6786364682\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6786364682\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6787283652\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6787283652\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694650113,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6791203959\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6791203959\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6802380858\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6802380858\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6806887201\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6806887201\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6806913128\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6806913128\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6808160177\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6808160177\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6811700180\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6811700180\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693768695,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6814913395\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6814913395\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6814929287\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6814929287\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6816903047\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6816903047\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699502346,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6817618499\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6817618499\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6818425876\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6818425876\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6820141548\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6820141548\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6820503013\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6820503013\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6821762379\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6821762379\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6829726306\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6829726306\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6830551855\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6830551855\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699257734,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6832510780\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6832510780\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6833055175\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6833055175\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6838907936\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6838907936\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694629886,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6839612396\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6839612396\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6840115382\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6840115382\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6845692313\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6845692313\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6845749447\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6845749447\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6845802743\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6845802743\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6848013573\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6848013573\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697698652,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6848660331\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6848660331\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6850614360\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6850614360\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699336334,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6857178107\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6857178107\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6858024107\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6858024107\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6859717785\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6859717785\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6863876045\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6863876045\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6864422826\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6864422826\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700133093,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6868678037\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6868678037\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6871533486\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6871533486\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6871953976\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6871953976\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698830121,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6875431039\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6875431039\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6875498620\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6875498620\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6878072504\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6878072504\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6880909295\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6880909295\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696599618,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6881072860\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6881072860\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6881124784\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6881124784\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6881765283\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6881765283\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6891659611\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6891659611\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6892010385\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6892010385\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700809415,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6893239717\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6893239717\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6895745083\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6895745083\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6897470526\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6897470526\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6897615973\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6897615973\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6900099844\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6900099844\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6901714518\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6901714518\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6902718642\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6902718642\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6904613543\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6904613543\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6908614794\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6908614794\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6912850481\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6912850481\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6913797339\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6913797339\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6919005317\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6919005317\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6920562819\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6920562819\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6921798228\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6921798228\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6923431604\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6923431604\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695239572,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6924019193\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6924019193\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6924749515\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6924749515\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6926376717\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6926376717\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6926553569\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6926553569\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6928564866\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6928564866\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697420917,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6932367570\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6932367570\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693951944,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6933150383\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6933150383\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6935877903\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6935877903\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6937796198\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6937796198\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6937921006\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6937921006\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6938235669\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6938235669\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6945956112\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6945956112\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6947004749\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6947004749\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6947312143\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6947312143\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6949156540\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6949156540\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6953173171\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6953173171\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6955315855\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6955315855\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6955901539\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6955901539\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6957081032\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6957081032\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6960387254\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6960387254\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6965419526\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6965419526\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6966123174\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6966123174\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6966528341\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6966528341\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6968350970\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6968350970\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6975622953\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6975622953\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6976438725\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6976438725\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6977731474\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6977731474\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700650885,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6981901637\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6981901637\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699824509,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6982573684\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6982573684\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6982682917\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6982682917\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6985501517\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6985501517\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696764015,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6986682620\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6986682620\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6986974936\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6986974936\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6987095163\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6987095163\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6995831660\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6995831660\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_6996870296\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"6996870296\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7001714127\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7001714127\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7004255923\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7004255923\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7004902560\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7004902560\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7005397943\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7005397943\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7007140315\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7007140315\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7009038964\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7009038964\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695620993,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7009965934\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7009965934\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1692742195,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7015565477\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7015565477\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7017747629\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7017747629\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7020398872\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7020398872\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7020890145\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7020890145\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7024387472\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7024387472\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7030017741\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7030017741\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7030029150\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7030029150\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7030053653\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7030053653\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7032035559\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7032035559\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700185885,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7033422792\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7033422792\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7033712582\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7033712582\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695803343,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7034540317\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7034540317\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7036122900\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7036122900\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7043986051\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7043986051\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698433900,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7044261595\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7044261595\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7047604147\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7047604147\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7050217790\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7050217790\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7050707914\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7050707914\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7051996866\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7051996866\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7052078762\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7052078762\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7059211536\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7059211536\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7059286958\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7059286958\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7059354914\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7059354914\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697600112,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7060900658\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7060900658\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698826665,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7061967847\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7061967847\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7062785586\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7062785586\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696815520,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7063162002\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7063162002\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694662175,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7065253893\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7065253893\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7066654553\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7066654553\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7075754042\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7075754042\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7081432967\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7081432967\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7087139357\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7087139357\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700187828,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7092131990\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7092131990\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7095536673\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7095536673\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1701064561,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7100149191\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7100149191\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7102401732\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7102401732\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700662783,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7102928206\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7102928206\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7103047524\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7103047524\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7104903347\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7104903347\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7109035547\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7109035547\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7113374792\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7113374792\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7113648606\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7113648606\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693777572,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7115019432\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7115019432\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7121367305\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7121367305\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7122229636\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7122229636\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7135884608\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7135884608\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697024140,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7138502039\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7138502039\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7140502744\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7140502744\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7146687293\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7146687293\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697345778,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7147058580\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7147058580\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7147685522\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7147685522\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693451640,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7147734002\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7147734002\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7149811761\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7149811761\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7151327021\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7151327021\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7151680921\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7151680921\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7152114427\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7152114427\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7156262588\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7156262588\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7158015552\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7158015552\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7158302033\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7158302033\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7159773067\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7159773067\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7160106831\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7160106831\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7162252799\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7162252799\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7169497233\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7169497233\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7169812899\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7169812899\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7175306389\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7175306389\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7175450468\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7175450468\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7179657685\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7179657685\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7182741443\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7182741443\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7184761084\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7184761084\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699405591,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7204234695\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7204234695\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698707131,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7205422956\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7205422956\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7207090799\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7207090799\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7207940426\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7207940426\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7213865012\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7213865012\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7218786842\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7218786842\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7218943329\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7218943329\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7219300529\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7219300529\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7221656928\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7221656928\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7222221088\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7222221088\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7225662708\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7225662708\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7226539074\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7226539074\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700162101,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7233905359\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7233905359\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696675215,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7235831415\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7235831415\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7236965387\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7236965387\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7238628207\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7238628207\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700535319,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7240565210\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7240565210\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7244572239\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7244572239\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7256209079\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7256209079\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7259365264\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7259365264\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7260321633\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7260321633\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695254916,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7261912754\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7261912754\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7262156914\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7262156914\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698980924,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7263485679\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7263485679\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7264586802\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7264586802\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699345690,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7265842354\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7265842354\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7268355749\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7268355749\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7269047472\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7269047472\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7271132643\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7271132643\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7272954153\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7272954153\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7275425646\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7275425646\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7275557315\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7275557315\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7276122859\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7276122859\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7276333667\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7276333667\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7276945407\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7276945407\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7277603401\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7277603401\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695004223,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7283174825\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7283174825\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7283356015\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7283356015\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7285011959\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7285011959\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7288601605\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7288601605\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7291159326\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7291159326\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7291327778\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7291327778\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7291693120\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7291693120\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7295332773\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7295332773\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697004736,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7296742515\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7296742515\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700188106,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7297734806\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7297734806\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699517227,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7298268529\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7298268529\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7302196202\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7302196202\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7306283423\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7306283423\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7307615373\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7307615373\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7310569328\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7310569328\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7315198048\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7315198048\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7319360351\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7319360351\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7319611102\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7319611102\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7319695659\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7319695659\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7320145013\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7320145013\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7325441690\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7325441690\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7327635605\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7327635605\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7332567178\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7332567178\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1692068859,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7335137190\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7335137190\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7337859180\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7337859180\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7342127502\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7342127502\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7343731800\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7343731800\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7345483146\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7345483146\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698818032,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7347440370\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7347440370\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7348642114\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7348642114\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699935924,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7351077360\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7351077360\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7351810180\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7351810180\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7353212978\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7353212978\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7357465056\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7357465056\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7360686805\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7360686805\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7363109030\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7363109030\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7363253608\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7363253608\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7363948441\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7363948441\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7364897573\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7364897573\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7366211705\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7366211705\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7368376836\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7368376836\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7372422050\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7372422050\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694635012,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7376958320\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7376958320\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699593411,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7377769800\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7377769800\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7378315752\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7378315752\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700815584,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7380309120\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7380309120\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7383684265\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7383684265\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7386489423\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7386489423\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7387576608\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7387576608\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7387723009\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7387723009\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7388505150\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7388505150\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7390780798\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7390780798\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7390960328\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7390960328\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7401184711\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7401184711\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698574260,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7401733669\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7401733669\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7405212428\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7405212428\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7410291177\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7410291177\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7410632813\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7410632813\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694238187,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7412034038\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7412034038\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7412111847\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7412111847\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7413274712\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7413274712\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7417541042\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7417541042\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7420437735\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7420437735\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7421821939\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7421821939\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7421889399\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7421889399\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696761689,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7428005405\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7428005405\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7434856012\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7434856012\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7435508463\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7435508463\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7436833627\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7436833627\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7437040692\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7437040692\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7439021681\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7439021681\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7439714986\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7439714986\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7440672921\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7440672921\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7451137864\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7451137864\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7453584800\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7453584800\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7455859973\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7455859973\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7457097377\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7457097377\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7457544036\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7457544036\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7460559805\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7460559805\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7464954417\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7464954417\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7466050106\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7466050106\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697019238,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7471550680\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7471550680\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7472541978\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7472541978\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7475442514\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7475442514\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7482603409\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7482603409\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7493990096\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7493990096\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697102699,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7497299557\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7497299557\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7497605401\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7497605401\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7497646189\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7497646189\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7498515000\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7498515000\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7498542248\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7498542248\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697099701,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7498920587\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7498920587\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698807813,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7503981720\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7503981720\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7505224623\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7505224623\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7507197097\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7507197097\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7516710182\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7516710182\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7520656744\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7520656744\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7522269845\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7522269845\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7523266932\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7523266932\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7526687004\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7526687004\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7528402713\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7528402713\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7529372532\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7529372532\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7530200728\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7530200728\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7531814579\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7531814579\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7534564044\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7534564044\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7537628670\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7537628670\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7537715718\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7537715718\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7537716241\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7537716241\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7540355701\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7540355701\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693729590,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7542365341\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7542365341\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7546299014\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7546299014\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7546355222\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7546355222\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7547312758\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7547312758\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700451287,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7548971598\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7548971598\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7548985362\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7548985362\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7551761509\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7551761509\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7552860065\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7552860065\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7552997387\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7552997387\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700477243,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7563312911\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7563312911\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7564012880\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7564012880\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700620788,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7567294877\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7567294877\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7568242587\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7568242587\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7569247517\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7569247517\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7580742612\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7580742612\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7583295966\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7583295966\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7586062692\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7586062692\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7587745030\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7587745030\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7588612675\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7588612675\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7589005247\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7589005247\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7591217919\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7591217919\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7592899422\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7592899422\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7594017872\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7594017872\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7595717000\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7595717000\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1701040425,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7595722240\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7595722240\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7597673862\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7597673862\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7597689214\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7597689214\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7598489536\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7598489536\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7598799824\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7598799824\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7601958347\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7601958347\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7605980080\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7605980080\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7608360478\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7608360478\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7609581785\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7609581785\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7614636349\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7614636349\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7614708020\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7614708020\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7616246303\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7616246303\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7617553749\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7617553749\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7618202429\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7618202429\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7619603154\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7619603154\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7620665389\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7620665389\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7622429074\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7622429074\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7623650329\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7623650329\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7625288814\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7625288814\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700462883,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7626760720\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7626760720\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7626981398\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7626981398\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695188724,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7638046648\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7638046648\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7638679939\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7638679939\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7640096597\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7640096597\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7643653997\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7643653997\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7644290746\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7644290746\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700184712,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7645589134\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7645589134\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7646760743\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7646760743\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7650768661\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7650768661\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7651888817\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7651888817\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7652778337\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7652778337\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7656755258\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7656755258\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7657717068\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7657717068\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7663168591\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7663168591\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7664966167\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7664966167\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699262948,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7666852933\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7666852933\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7668827828\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7668827828\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699596380,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7671876973\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7671876973\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7672451658\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7672451658\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7672563564\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7672563564\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7673707661\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7673707661\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7674566777\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7674566777\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7681112296\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7681112296\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7681600518\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7681600518\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7683585131\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7683585131\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7686286348\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7686286348\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7687164838\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7687164838\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7687371321\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7687371321\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7687657759\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7687657759\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698633907,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7688471458\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7688471458\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699967044,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7690669440\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7690669440\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7690891476\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7690891476\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7690907701\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7690907701\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7692607035\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7692607035\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7693122919\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7693122919\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7695096009\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7695096009\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7700927556\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7700927556\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7705431741\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7705431741\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696821053,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7706735929\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7706735929\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7706881098\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7706881098\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7713778154\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7713778154\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7718471566\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7718471566\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696675012,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7720758526\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7720758526\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7723567114\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7723567114\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695255146,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7724890013\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7724890013\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7725196248\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7725196248\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7735663030\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7735663030\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7735805334\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7735805334\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7738761244\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7738761244\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7739798150\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7739798150\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7740091536\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7740091536\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7742247612\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7742247612\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699760499,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7743491557\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7743491557\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7743820010\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7743820010\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7744500881\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7744500881\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7746006896\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7746006896\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7748421044\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7748421044\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693509565,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7752672529\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7752672529\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7758124650\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7758124650\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7760208560\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7760208560\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7763239948\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7763239948\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7772289742\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7772289742\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7773809772\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7773809772\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7775655960\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7775655960\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7782213970\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7782213970\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7788742199\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7788742199\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697648462,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7794187489\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7794187489\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7795360622\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7795360622\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7802400332\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7802400332\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7804901425\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7804901425\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7805584149\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7805584149\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7819384782\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7819384782\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698668875,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7820542710\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7820542710\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699151158,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7821370665\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7821370665\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7821811338\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7821811338\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7821875317\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7821875317\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7827297461\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7827297461\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7828193903\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7828193903\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7829456745\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7829456745\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7831969873\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7831969873\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700729575,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7832427972\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7832427972\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7835799312\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7835799312\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7838322353\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7838322353\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7839142209\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7839142209\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7841293205\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7841293205\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7845216380\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7845216380\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7847107135\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7847107135\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7848167680\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7848167680\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7848975164\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7848975164\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7849831301\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7849831301\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698222387,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7849988024\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7849988024\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7852754787\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7852754787\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7853258354\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7853258354\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7853514710\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7853514710\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7854235526\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7854235526\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7854288559\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7854288559\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7856252983\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7856252983\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7856301343\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7856301343\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7859279941\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7859279941\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7863511599\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7863511599\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7863641493\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7863641493\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7864246599\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7864246599\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7864780164\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7864780164\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7864796432\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7864796432\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695147237,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7865020191\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7865020191\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7867796641\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7867796641\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7872751431\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7872751431\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700104823,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7873990031\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7873990031\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696905883,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7881930526\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7881930526\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7882581966\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7882581966\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7882873434\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7882873434\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7883407249\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7883407249\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7883425769\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7883425769\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7884892250\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7884892250\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699262772,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7885995213\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7885995213\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7886158239\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7886158239\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7894596798\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7894596798\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7899640700\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7899640700\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7908367677\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7908367677\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699328553,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7910017356\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7910017356\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7910323746\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7910323746\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7916509152\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7916509152\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7920004051\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7920004051\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7924475094\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7924475094\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7931463251\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7931463251\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7933792440\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7933792440\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7935004142\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7935004142\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7937047670\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7937047670\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7939778002\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7939778002\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7940483102\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7940483102\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7940823833\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7940823833\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7943196334\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7943196334\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7948102945\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7948102945\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7953410222\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7953410222\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7955826088\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7955826088\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7963718443\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7963718443\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7965689513\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7965689513\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700534969,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7966350266\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7966350266\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7968032251\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7968032251\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7971745226\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7971745226\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7977523116\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7977523116\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7978095612\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7978095612\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7983666862\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7983666862\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7986340950\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7986340950\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7989321704\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7989321704\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699337701,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7992150449\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7992150449\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7999383414\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7999383414\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_7999733965\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"7999733965\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8001403844\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8001403844\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8001502447\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8001502447\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696783328,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8002441294\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8002441294\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8002908818\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8002908818\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8003800642\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8003800642\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8004543435\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8004543435\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8005444087\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8005444087\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8007107275\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8007107275\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8010325165\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8010325165\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8014326203\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8014326203\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8014370177\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8014370177\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8014785059\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8014785059\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8016586723\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8016586723\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8016920139\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8016920139\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699321188,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8019506801\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8019506801\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8019770129\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8019770129\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8024594170\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8024594170\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695147174,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8027945462\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8027945462\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8027972177\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8027972177\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8030188604\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8030188604\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8032860565\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8032860565\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8035205991\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8035205991\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8035577893\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8035577893\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8035733598\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8035733598\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8039982396\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8039982396\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8042010769\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8042010769\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700633543,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8045511039\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8045511039\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8046031043\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8046031043\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699801798,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8046251549\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8046251549\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8046375945\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8046375945\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8046583538\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8046583538\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8050675645\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8050675645\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699010472,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8052618451\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8052618451\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8053445313\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8053445313\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8054377408\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8054377408\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8054772199\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8054772199\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8055581136\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8055581136\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8058212949\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8058212949\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8059620844\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8059620844\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8062088375\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8062088375\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8063035464\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8063035464\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8067185378\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8067185378\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8073435095\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8073435095\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8075032607\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8075032607\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8084106990\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8084106990\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699249114,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8085178076\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8085178076\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8086558094\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8086558094\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8086917283\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8086917283\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8087242742\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8087242742\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697613913,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8097498221\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8097498221\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8097902004\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8097902004\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8100796382\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8100796382\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8103868360\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8103868360\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695616274,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8108968441\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8108968441\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8111508018\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8111508018\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8112346923\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8112346923\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8113999096\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8113999096\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697723331,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8120706844\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8120706844\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698807708,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8122384069\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8122384069\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8122645018\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8122645018\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8126770108\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8126770108\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8130195053\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8130195053\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8130294134\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8130294134\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8131886443\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8131886443\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8132082620\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8132082620\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698991679,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8132192086\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8132192086\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8133515450\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8133515450\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8135354869\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8135354869\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8141443295\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8141443295\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8141818865\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8141818865\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8151192752\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8151192752\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8152315569\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8152315569\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8154138523\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8154138523\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8156807776\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8156807776\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8157216998\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8157216998\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8160058880\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8160058880\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8160095492\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8160095492\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8166932809\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8166932809\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8167633898\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8167633898\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698679164,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8169511346\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8169511346\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697594593,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8170675637\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8170675637\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8172345347\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8172345347\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8180241502\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8180241502\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8182249376\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8182249376\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8186105078\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8186105078\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8187575584\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8187575584\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8189440989\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8189440989\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8190298841\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8190298841\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8193549184\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8193549184\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8197784678\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8197784678\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8203292432\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8203292432\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8207174748\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8207174748\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8210397277\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8210397277\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8211291202\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8211291202\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8211720551\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8211720551\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8213594817\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8213594817\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8215486465\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8215486465\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8216642294\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8216642294\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8217169171\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8217169171\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8217784296\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8217784296\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8219584363\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8219584363\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8220710471\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8220710471\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8222037249\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8222037249\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8222979522\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8222979522\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8223657315\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8223657315\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694627108,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8223705362\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8223705362\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8224334313\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8224334313\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8228094145\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8228094145\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8228097998\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8228097998\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8229812969\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8229812969\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8231032558\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8231032558\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699264811,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8233508874\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8233508874\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8235499624\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8235499624\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8235631682\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8235631682\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8242204929\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8242204929\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8246905074\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8246905074\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8248153723\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8248153723\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8251671425\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8251671425\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698895374,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8253692052\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8253692052\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698473456,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8257796971\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8257796971\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695238031,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8273990937\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8273990937\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693450418,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8277724734\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8277724734\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697079506,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8281432408\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8281432408\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8288812105\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8288812105\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8290926771\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8290926771\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8303454241\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8303454241\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8309118101\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8309118101\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8309865529\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8309865529\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8310010694\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8310010694\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693890144,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8310070431\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8310070431\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8311991667\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8311991667\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693199094,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8313094015\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8313094015\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8316865470\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8316865470\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8317468172\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8317468172\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8319353787\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8319353787\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8322698564\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8322698564\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8327482141\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8327482141\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8327820770\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8327820770\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8328543245\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8328543245\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8328850356\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8328850356\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8329982339\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8329982339\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8331569195\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8331569195\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8335825785\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8335825785\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8337539661\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8337539661\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8341999149\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8341999149\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8342189311\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8342189311\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8344051901\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8344051901\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8346004149\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8346004149\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8347503157\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8347503157\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8350518493\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8350518493\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8351972815\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8351972815\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8352206292\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8352206292\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8353064427\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8353064427\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8353160172\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8353160172\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698311227,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8353955233\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8353955233\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695794112,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8355159098\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8355159098\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8358518421\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8358518421\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8359082623\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8359082623\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698928487,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8366012391\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8366012391\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694211671,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8367461388\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8367461388\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8372997122\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8372997122\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8377093987\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8377093987\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699888469,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8381623910\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8381623910\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694468257,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8382061243\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8382061243\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8384057593\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8384057593\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8384689749\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8384689749\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8386666767\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8386666767\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8386793499\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8386793499\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8388063569\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8388063569\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8389624275\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8389624275\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8392406358\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8392406358\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8393853819\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8393853819\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8395917828\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8395917828\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8396980904\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8396980904\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700489899,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8398865107\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8398865107\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8399956257\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8399956257\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8400344163\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8400344163\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8404373294\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8404373294\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8407403125\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8407403125\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697445122,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8409494864\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8409494864\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8411599332\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8411599332\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8421561159\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8421561159\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700549574,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8423008156\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8423008156\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8426622833\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8426622833\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700727491,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8427634569\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8427634569\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8428572486\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8428572486\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8436024021\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8436024021\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8436643404\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8436643404\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8439362049\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8439362049\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8440760987\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8440760987\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699520123,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8442809460\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8442809460\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8443036798\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8443036798\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8443805897\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8443805897\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":true,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8445041485\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8445041485\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8445330073\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8445330073\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695518582,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8446005763\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8446005763\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8446372231\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8446372231\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8447534661\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8447534661\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8447585718\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8447585718\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8447830068\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8447830068\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8448409603\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8448409603\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697443148,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8450512511\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8450512511\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8451470030\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8451470030\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694475461,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8454189295\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8454189295\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8455239611\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8455239611\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8455935596\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8455935596\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8460084433\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8460084433\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8460784953\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8460784953\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8463876330\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8463876330\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698223193,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8472084588\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8472084588\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698374768,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8474885327\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8474885327\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8476059904\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8476059904\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8477220212\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8477220212\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8477469958\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8477469958\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8480505964\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8480505964\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8485512774\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8485512774\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698474047,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8486013399\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8486013399\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8486574742\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8486574742\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8491654430\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8491654430\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8491971056\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8491971056\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8491976474\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8491976474\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8492016735\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8492016735\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8494962468\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8494962468\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8500228563\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8500228563\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8506767167\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8506767167\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8506981030\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8506981030\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8513362072\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8513362072\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8513600314\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8513600314\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697786715,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8514393726\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8514393726\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8518800133\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8518800133\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8519918280\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8519918280\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700726429,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8521256224\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8521256224\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695176700,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8525520412\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8525520412\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8527411023\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8527411023\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8528240286\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8528240286\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8528989010\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8528989010\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694902093,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8529766319\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8529766319\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8532602548\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8532602548\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697613950,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8533102456\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8533102456\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8535351180\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8535351180\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8536119014\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8536119014\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8542303515\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8542303515\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8542573282\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8542573282\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700554971,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8544654562\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8544654562\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8550907162\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8550907162\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8551912178\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8551912178\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8552815569\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8552815569\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697513153,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8558447046\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8558447046\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8558757778\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8558757778\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8560487083\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8560487083\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8560709818\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8560709818\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8560928083\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8560928083\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8569604066\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8569604066\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8571433263\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8571433263\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8571544480\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8571544480\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8573571335\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8573571335\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8578360952\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8578360952\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8580630933\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8580630933\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8583690065\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8583690065\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8586878608\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8586878608\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698921573,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8592196566\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8592196566\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8595026997\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8595026997\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698809052,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8596140148\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8596140148\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698222295,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8596270879\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8596270879\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8602919066\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8602919066\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699328028,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8604696550\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8604696550\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8605733793\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8605733793\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8606367434\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8606367434\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8607110044\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8607110044\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8607773408\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8607773408\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8612888823\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8612888823\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8613544365\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8613544365\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8614413702\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8614413702\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8627323715\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8627323715\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8630184960\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8630184960\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8632216197\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8632216197\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8633297465\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8633297465\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8634312196\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8634312196\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8638304663\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8638304663\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697463406,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8640390697\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8640390697\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8640727499\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8640727499\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8643787495\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8643787495\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8645597251\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8645597251\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8646025601\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8646025601\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8651668431\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8651668431\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693848273,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8655191799\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8655191799\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8658174960\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8658174960\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8661722129\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8661722129\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8662971476\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8662971476\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8670587296\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8670587296\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8673764134\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8673764134\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697784917,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8674470583\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8674470583\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697699221,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8684237507\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8684237507\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8685038399\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8685038399\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8688389470\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8688389470\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8690034954\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8690034954\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8702643096\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8702643096\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8703200712\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8703200712\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693785623,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8703273727\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8703273727\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8704081460\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8704081460\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699848202,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8706087313\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8706087313\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8707396681\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8707396681\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8707676360\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8707676360\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697629524,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8710375221\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8710375221\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8710553462\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8710553462\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8713397018\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8713397018\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8715898882\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8715898882\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694457956,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8716098319\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8716098319\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8716428571\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8716428571\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700117939,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8720844433\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8720844433\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8726009685\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8726009685\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8728868295\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8728868295\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693789312,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8729072173\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8729072173\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8730568673\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8730568673\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8733936530\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8733936530\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8734166382\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8734166382\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699250840,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8737115397\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8737115397\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8742211895\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8742211895\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8742676847\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8742676847\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8744886846\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8744886846\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8745122471\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8745122471\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8747127597\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8747127597\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8749558646\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8749558646\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8753413980\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8753413980\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8754850165\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8754850165\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8755718549\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8755718549\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8756835768\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8756835768\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8759251402\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8759251402\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8760812670\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8760812670\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8762493296\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8762493296\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8763788974\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8763788974\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8770027856\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8770027856\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8772228740\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8772228740\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1691644038,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8773081922\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8773081922\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694310095,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8776392357\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8776392357\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8777730167\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8777730167\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8778175043\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8778175043\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8780182642\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8780182642\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8783516485\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8783516485\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8785536899\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8785536899\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8790335385\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8790335385\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8795307407\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8795307407\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700925765,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8804352974\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8804352974\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8804394305\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8804394305\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8808621985\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8808621985\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8810821200\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8810821200\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8811129708\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8811129708\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700186688,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8816137600\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8816137600\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700884701,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8818424284\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8818424284\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":true,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8822537455\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8822537455\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700210360,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8823387090\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8823387090\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8825966823\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8825966823\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8834765444\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8834765444\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8835887772\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8835887772\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697075042,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8837652030\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8837652030\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8838551480\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8838551480\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8842425902\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8842425902\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8843246052\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8843246052\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8844820087\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8844820087\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8845469662\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8845469662\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8849899924\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8849899924\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8854356304\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8854356304\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8856017589\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8856017589\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8861830064\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8861830064\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8862348169\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8862348169\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8864056106\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8864056106\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8864850031\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8864850031\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8866143916\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8866143916\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8867254112\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8867254112\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8867850391\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8867850391\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693451639,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8871211861\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8871211861\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8871946613\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8871946613\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8875139244\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8875139244\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700193741,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8879166186\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8879166186\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8887175905\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8887175905\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8888752880\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8888752880\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699460020,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8890058811\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8890058811\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8893611164\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8893611164\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8893615815\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8893615815\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8895487701\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8895487701\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8897379573\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8897379573\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699462718,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8900826469\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8900826469\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8902885136\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8902885136\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8903011297\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8903011297\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8904622411\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8904622411\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8906837393\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8906837393\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8909124208\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8909124208\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695383370,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8913400006\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8913400006\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8914287800\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8914287800\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8915465584\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8915465584\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8916321939\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8916321939\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695819760,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8920262959\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8920262959\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8923283070\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8923283070\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700186059,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8929623425\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8929623425\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8929662634\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8929662634\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8930133512\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8930133512\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1692732924,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8930791679\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8930791679\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8933317719\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8933317719\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8935113461\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8935113461\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8938639079\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8938639079\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8941452423\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8941452423\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8942102453\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8942102453\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8947488684\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8947488684\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8952393298\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8952393298\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8954088752\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8954088752\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8960131587\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8960131587\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8962513708\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8962513708\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695465950,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8965027422\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8965027422\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8968372134\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8968372134\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697450361,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8968471931\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8968471931\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695143981,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8970340990\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8970340990\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8970561974\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8970561974\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8973956467\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8973956467\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698054561,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8977536940\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8977536940\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8983932611\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8983932611\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8985349171\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8985349171\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8989584694\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8989584694\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8995127909\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8995127909\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700186036,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_8996361146\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"8996361146\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9000953253\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9000953253\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9003478301\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9003478301\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9003815934\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9003815934\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9007292080\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9007292080\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9010532005\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9010532005\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694715524,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9020451503\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9020451503\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9020580531\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9020580531\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9025203324\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9025203324\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9027590510\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9027590510\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9029297866\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9029297866\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695186061,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9032177660\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9032177660\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9034112568\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9034112568\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697706565,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9037074021\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9037074021\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9037264818\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9037264818\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695344927,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9040385718\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9040385718\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9040944073\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9040944073\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697450047,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9044201385\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9044201385\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9045616204\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9045616204\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700124095,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9049515564\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9049515564\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9051266058\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9051266058\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9056140426\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9056140426\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9067017669\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9067017669\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9068307497\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9068307497\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9068605463\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9068605463\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9070071192\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9070071192\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9071076459\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9071076459\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9080019804\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9080019804\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9080128965\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9080128965\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9082391908\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9082391908\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9083542109\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9083542109\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698814973,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9085091731\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9085091731\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9089447149\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9089447149\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9090358505\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9090358505\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9096135733\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9096135733\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9100792481\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9100792481\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697443774,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9103065505\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9103065505\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9105258430\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9105258430\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9107290642\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9107290642\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9112045680\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9112045680\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9114286848\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9114286848\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9116950939\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9116950939\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693874405,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9118393507\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9118393507\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9118795910\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9118795910\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9119188102\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9119188102\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9131370628\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9131370628\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699694005,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9135721405\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9135721405\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695001163,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9135822963\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9135822963\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697771653,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9141546417\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9141546417\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9145170670\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9145170670\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9147986978\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9147986978\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9149427188\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9149427188\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699262833,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9150657351\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9150657351\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1701053742,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9151446701\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9151446701\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9154529184\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9154529184\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9160100453\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9160100453\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9162279391\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9162279391\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9162422557\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9162422557\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":true,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9163061763\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9163061763\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9163773981\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9163773981\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9169530932\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9169530932\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9172155059\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9172155059\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9174875302\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9174875302\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9174916284\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9174916284\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9186029513\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9186029513\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9186764264\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9186764264\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695783416,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9187643068\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9187643068\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9192054233\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9192054233\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9194384134\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9194384134\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693432595,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9199088622\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9199088622\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9200307656\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9200307656\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9201875027\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9201875027\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9203035243\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9203035243\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9204866505\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9204866505\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9207250971\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9207250971\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9207372851\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9207372851\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9210231392\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9210231392\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9212086649\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9212086649\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9213219531\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9213219531\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9213270709\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9213270709\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9215480998\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9215480998\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9222153994\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9222153994\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699615719,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9226474938\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9226474938\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697125149,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9226621324\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9226621324\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697706374,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9230292610\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9230292610\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9232651207\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9232651207\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9232803518\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9232803518\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9235143815\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9235143815\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9236237184\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9236237184\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9239211252\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9239211252\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9241165972\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9241165972\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698043081,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9245513894\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9245513894\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9256183013\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9256183013\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700016025,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9258059350\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9258059350\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9259033011\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9259033011\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696738058,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9260806687\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9260806687\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9270676203\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9270676203\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698044372,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9278741003\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9278741003\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9279909751\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9279909751\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9284068632\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9284068632\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700210390,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9286519455\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9286519455\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9287504890\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9287504890\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9287571322\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9287571322\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9292952971\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9292952971\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693537103,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9294815765\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9294815765\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9297701491\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9297701491\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693608170,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9300628809\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9300628809\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9304736762\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9304736762\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9307746287\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9307746287\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9308608945\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9308608945\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9314613531\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9314613531\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699530359,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9314649429\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9314649429\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9319190585\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9319190585\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699951806,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9321533406\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9321533406\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696498761,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9322486252\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9322486252\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695614718,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9323583122\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9323583122\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9325103737\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9325103737\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9325129123\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9325129123\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9325990223\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9325990223\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9327284155\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9327284155\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9333402846\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9333402846\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9339787004\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9339787004\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699410723,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9340752329\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9340752329\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9341886465\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9341886465\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9344140649\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9344140649\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9346971193\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9346971193\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9352579651\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9352579651\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693607203,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9352645028\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9352645028\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693451639,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9356390327\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9356390327\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9361332642\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9361332642\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9362736373\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9362736373\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700184915,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9364103352\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9364103352\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9366122795\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9366122795\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9368797440\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9368797440\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700191420,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9372262219\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9372262219\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699598972,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9373564014\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9373564014\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9377917340\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9377917340\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9379217721\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9379217721\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9387380418\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9387380418\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9387672850\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9387672850\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697343713,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9387674715\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9387674715\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699707290,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9389457938\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9389457938\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9389885910\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9389885910\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9391314599\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9391314599\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9393341134\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9393341134\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9395180616\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9395180616\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699845900,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9397128201\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9397128201\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9397440115\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9397440115\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9397654697\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9397654697\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9398362109\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9398362109\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694217337,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9404981493\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9404981493\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9408449152\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9408449152\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9410605811\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9410605811\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9410947536\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9410947536\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9413853471\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9413853471\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9418340681\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9418340681\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9418897256\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9418897256\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9419791140\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9419791140\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9422344882\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9422344882\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9422520919\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9422520919\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9423702981\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9423702981\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9431649345\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9431649345\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9432000750\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9432000750\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9438519163\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9438519163\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9438619402\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9438619402\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9438981908\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9438981908\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9443124661\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9443124661\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9444808535\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9444808535\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9447003536\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9447003536\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693017408,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9449123364\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9449123364\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9450945642\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9450945642\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700730266,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9453001659\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9453001659\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699983369,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9454312989\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9454312989\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693951600,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9454452545\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9454452545\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698631678,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9458613234\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9458613234\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9460029109\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9460029109\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9460753612\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9460753612\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9471807266\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9471807266\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9472932551\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9472932551\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9475126952\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9475126952\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700446528,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9477456745\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9477456745\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9479262868\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9479262868\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699408089,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9480889921\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9480889921\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9482224389\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9482224389\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9486728724\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9486728724\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9486760817\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9486760817\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9489899104\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9489899104\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9490698152\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9490698152\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9494685925\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9494685925\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9499885295\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9499885295\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9503928702\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9503928702\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9504590132\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9504590132\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9510908752\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9510908752\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9511107616\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9511107616\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9511397734\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9511397734\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9515603026\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9515603026\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696762331,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9520465181\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9520465181\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9525788516\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9525788516\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9526715559\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9526715559\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697851306,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9527221323\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9527221323\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699107521,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9527412250\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9527412250\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9528720745\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9528720745\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9531540758\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9531540758\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9533255877\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9533255877\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9540077489\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9540077489\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693937163,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9543282502\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9543282502\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700190206,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9547736560\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9547736560\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9550545034\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9550545034\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9550992804\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9550992804\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9554479163\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9554479163\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698459781,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9556144042\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9556144042\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9560430025\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9560430025\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9560540812\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9560540812\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9564525723\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9564525723\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698909193,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9564624893\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9564624893\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9566846106\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9566846106\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9567110804\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9567110804\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9568064166\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9568064166\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9569742620\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9569742620\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9575344330\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9575344330\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9582809602\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9582809602\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9584879278\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9584879278\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9588309595\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9588309595\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9593910181\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9593910181\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9594595817\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9594595817\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9596530901\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9596530901\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9598993999\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9598993999\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699350137,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9600160441\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9600160441\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693467704,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9600612423\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9600612423\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9603303533\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9603303533\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700120710,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9605342546\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9605342546\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9609727061\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9609727061\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9612741669\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9612741669\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9615126029\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9615126029\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9617075837\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9617075837\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9621471724\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9621471724\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9624703660\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9624703660\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9626290005\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9626290005\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697175066,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9630683705\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9630683705\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9632964455\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9632964455\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698904585,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9633093534\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9633093534\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9636841804\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9636841804\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9640092689\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9640092689\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9640271868\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9640271868\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698055490,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9643981165\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9643981165\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9644984361\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9644984361\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9646811476\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9646811476\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9652403347\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9652403347\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696780863,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9653906508\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9653906508\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9653932291\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9653932291\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9654809682\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9654809682\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9655460349\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9655460349\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9658470863\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9658470863\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9661736644\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9661736644\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699609609,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9662422985\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9662422985\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698891873,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9665249754\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9665249754\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699190737,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9666798322\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9666798322\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9668702178\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9668702178\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9675738355\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9675738355\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696193146,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9676545595\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9676545595\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9680261978\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9680261978\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9681562907\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9681562907\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697520237,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9682481051\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9682481051\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9688178922\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9688178922\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9692122176\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9692122176\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699405500,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9694696718\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9694696718\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9701519461\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9701519461\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9701705776\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9701705776\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9702179908\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9702179908\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9702639521\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9702639521\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9704234829\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9704234829\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9705413308\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9705413308\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9715723472\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9715723472\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9716918074\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9716918074\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9719817461\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9719817461\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9720699376\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9720699376\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9721005199\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9721005199\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9726843811\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9726843811\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694627299,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9729290732\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9729290732\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9729475227\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9729475227\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700455374,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9730546629\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9730546629\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9732821029\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9732821029\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9735131442\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9735131442\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9735240223\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9735240223\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9735279232\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9735279232\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9736240141\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9736240141\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9738388188\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9738388188\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9740262193\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9740262193\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694306145,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9740640735\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9740640735\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9743886962\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9743886962\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9745952656\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9745952656\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697531872,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9751997142\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9751997142\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695902152,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9758913988\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9758913988\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9760925339\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9760925339\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9761298760\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9761298760\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9762221880\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9762221880\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9762257538\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9762257538\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9762702751\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9762702751\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698892396,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9762995627\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9762995627\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9765318831\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9765318831\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9765325563\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9765325563\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9769121468\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9769121468\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9771313310\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9771313310\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693774234,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9773300745\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9773300745\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9778520303\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9778520303\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694987291,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9783316715\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9783316715\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9783788754\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9783788754\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9784306149\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9784306149\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9786979096\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9786979096\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9789697248\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9789697248\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699351726,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9790545188\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9790545188\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9792414833\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9792414833\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9793764585\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9793764585\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9800821226\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9800821226\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9803514269\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9803514269\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9808385174\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9808385174\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9810980246\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9810980246\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698715938,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9811311058\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9811311058\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9811354776\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9811354776\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9812341763\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9812341763\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9815283232\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9815283232\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9817116271\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9817116271\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9820063434\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9820063434\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698733637,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9820372523\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9820372523\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699105669,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9827942549\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9827942549\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9829542126\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9829542126\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9833458575\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9833458575\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9835297214\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9835297214\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9840028485\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9840028485\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9840166478\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9840166478\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698044067,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9841449469\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9841449469\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698374663,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9844056821\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9844056821\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9845775616\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9845775616\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9845972476\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9845972476\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9846367663\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9846367663\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9846974241\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9846974241\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9848437402\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9848437402\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700639724,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9852576405\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9852576405\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693441809,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9852778536\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9852778536\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9859217551\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9859217551\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1691551375,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9860289710\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9860289710\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9860821940\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9860821940\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697190849,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9862545908\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9862545908\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696911201,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9863185338\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9863185338\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1694739567,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9868600919\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9868600919\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9870300498\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9870300498\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9871424491\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9871424491\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1696578722,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9871558792\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9871558792\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9874112427\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9874112427\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9874390196\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9874390196\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9875288022\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9875288022\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9875597823\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9875597823\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9879946936\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9879946936\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9883171407\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9883171407\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9885315814\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9885315814\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9889105718\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9889105718\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9893953153\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9893953153\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698821469,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9894477008\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9894477008\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9901933233\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9901933233\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9910194984\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9910194984\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698634594,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9912087463\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9912087463\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9913922612\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9913922612\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698640254,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9914300355\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9914300355\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9915273695\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9915273695\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9916361292\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9916361292\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9920591606\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9920591606\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9924223480\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9924223480\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9926873986\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9926873986\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9928589670\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9928589670\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9929919200\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9929919200\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9930623477\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9930623477\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698812519,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9932444003\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9932444003\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9935307700\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9935307700\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9939908351\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9939908351\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9940283309\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9940283309\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9940929924\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9940929924\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1693366478,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9942703170\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9942703170\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9942891463\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9942891463\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9943302646\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9943302646\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1699603568,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9945163346\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9945163346\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":true,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9947889277\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9947889277\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9951072285\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9951072285\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9956133955\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9956133955\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9959516434\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9959516434\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9960038846\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9960038846\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9962903434\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9962903434\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9970101670\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9970101670\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9970293910\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9970293910\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9970999905\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9970999905\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1695345635,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9972242149\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9972242149\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9976280245\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9976280245\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9976445095\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9976445095\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9977492096\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9977492096\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9980842418\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9980842418\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9981239412\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9981239412\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1698042028,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9984169865\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9984169865\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9987229337\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9987229337\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9989242253\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9989242253\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9990136696\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9990136696\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":0,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":0,\"latestMsgDestructTime\":-62135596800,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_9997591117\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"9997591117\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1700725117,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_openIM123456\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"openIM123456\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697186781,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_openIM654321\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"openIM654321\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1692834199,\"isMsgDestruct\":false},{\"ownerUserID\":\"1695766238\",\"conversationID\":\"si_1695766238_openIMAdmin\",\"recvMsgOpt\":0,\"conversationType\":1,\"userID\":\"openIMAdmin\",\"groupID\":\"\",\"isPinned\":false,\"attachedInfo\":\"\",\"isPrivateChat\":false,\"groupAtType\":0,\"ex\":\"\",\"burnDuration\":30,\"minSeq\":0,\"maxSeq\":0,\"msgDestructTime\":604800,\"latestMsgDestructTime\":1697186260,\"isMsgDestruct\":false}]}}"}
+2024-06-24 10:57:08.300 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/conversation/get_all_conversations", "state": "success", "cost time": "4141ms"}
+2024-06-24 10:57:08.300 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/sync.go:62] get server cost time {"operationID": "1719197817604066041", "cost time": 4.1411073, "conversation on server": [{"conversationID":"sg_1012900607","conversationType":3,"userID":"","groupID":"1012900607","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":4,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_104250651","conversationType":3,"userID":"","groupID":"104250651","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_105081877","conversationType":3,"userID":"","groupID":"105081877","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_1062802274","conversationType":3,"userID":"","groupID":"1062802274","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_1098167418","conversationType":3,"userID":"","groupID":"1098167418","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_1137299436","conversationType":3,"userID":"","groupID":"1137299436","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_1161663520","conversationType":3,"userID":"","groupID":"1161663520","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_1162405312","conversationType":3,"userID":"","groupID":"1162405312","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_1170336331","conversationType":3,"userID":"","groupID":"1170336331","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_1171979965","conversationType":3,"userID":"","groupID":"1171979965","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_1177987017","conversationType":3,"userID":"","groupID":"1177987017","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_1181175668","conversationType":3,"userID":"","groupID":"1181175668","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_1193166060","conversationType":3,"userID":"","groupID":"1193166060","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_1196923925","conversationType":3,"userID":"","groupID":"1196923925","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_1209319003","conversationType":3,"userID":"","groupID":"1209319003","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_1212532780","conversationType":3,"userID":"","groupID":"1212532780","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_1219707992","conversationType":3,"userID":"","groupID":"1219707992","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_1237366857","conversationType":3,"userID":"","groupID":"1237366857","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_1254300734","conversationType":3,"userID":"","groupID":"1254300734","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_1268986309","conversationType":3,"userID":"","groupID":"1268986309","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_1273621475","conversationType":3,"userID":"","groupID":"1273621475","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_1295978993","conversationType":3,"userID":"","groupID":"1295978993","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_129612413","conversationType":3,"userID":"","groupID":"129612413","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_1307714144","conversationType":3,"userID":"","groupID":"1307714144","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_1348263733","conversationType":3,"userID":"","groupID":"1348263733","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_1355048295","conversationType":3,"userID":"","groupID":"1355048295","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_1393169672","conversationType":3,"userID":"","groupID":"1393169672","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_1397022909","conversationType":3,"userID":"","groupID":"1397022909","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":4,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_1430191635","conversationType":3,"userID":"","groupID":"1430191635","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_1431423795","conversationType":3,"userID":"","groupID":"1431423795","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_1438747528","conversationType":3,"userID":"","groupID":"1438747528","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_1472131068","conversationType":3,"userID":"","groupID":"1472131068","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_1477824418","conversationType":3,"userID":"","groupID":"1477824418","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":4,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_1529525623","conversationType":3,"userID":"","groupID":"1529525623","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_1533379639","conversationType":3,"userID":"","groupID":"1533379639","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_1566911564","conversationType":3,"userID":"","groupID":"1566911564","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_1577882571","conversationType":3,"userID":"","groupID":"1577882571","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_1597892186","conversationType":3,"userID":"","groupID":"1597892186","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_161019322","conversationType":3,"userID":"","groupID":"161019322","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_1629977487","conversationType":3,"userID":"","groupID":"1629977487","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_1633118996","conversationType":3,"userID":"","groupID":"1633118996","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_1639333330","conversationType":3,"userID":"","groupID":"1639333330","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_1661305134","conversationType":3,"userID":"","groupID":"1661305134","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_1662278840","conversationType":3,"userID":"","groupID":"1662278840","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_1671249356","conversationType":3,"userID":"","groupID":"1671249356","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_1687917547","conversationType":3,"userID":"","groupID":"1687917547","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_1708658560","conversationType":3,"userID":"","groupID":"1708658560","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_1710171993","conversationType":3,"userID":"","groupID":"1710171993","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_1738113305","conversationType":3,"userID":"","groupID":"1738113305","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_1747585985","conversationType":3,"userID":"","groupID":"1747585985","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_1765818066","conversationType":3,"userID":"","groupID":"1765818066","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_1780190492","conversationType":3,"userID":"","groupID":"1780190492","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_1785857431","conversationType":3,"userID":"","groupID":"1785857431","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_1845606214","conversationType":3,"userID":"","groupID":"1845606214","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_1851829045","conversationType":3,"userID":"","groupID":"1851829045","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_1861322715","conversationType":3,"userID":"","groupID":"1861322715","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_1869190487","conversationType":3,"userID":"","groupID":"1869190487","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_1898996710","conversationType":3,"userID":"","groupID":"1898996710","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_192211066","conversationType":3,"userID":"","groupID":"192211066","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_19439682","conversationType":3,"userID":"","groupID":"19439682","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_1959629060","conversationType":3,"userID":"","groupID":"1959629060","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_1986908192","conversationType":3,"userID":"","groupID":"1986908192","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":4,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_1999119891","conversationType":3,"userID":"","groupID":"1999119891","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_2008565166","conversationType":3,"userID":"","groupID":"2008565166","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2048354932","conversationType":3,"userID":"","groupID":"2048354932","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":2,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2062637119","conversationType":3,"userID":"","groupID":"2062637119","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2103648114","conversationType":3,"userID":"","groupID":"2103648114","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2105177423","conversationType":3,"userID":"","groupID":"2105177423","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2138010215","conversationType":3,"userID":"","groupID":"2138010215","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_2141832100","conversationType":3,"userID":"","groupID":"2141832100","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2145904160","conversationType":3,"userID":"","groupID":"2145904160","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2156407784","conversationType":3,"userID":"","groupID":"2156407784","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_217468446","conversationType":3,"userID":"","groupID":"217468446","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2184807685","conversationType":3,"userID":"","groupID":"2184807685","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2186335908","conversationType":3,"userID":"","groupID":"2186335908","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2206344631","conversationType":3,"userID":"","groupID":"2206344631","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_22125508","conversationType":3,"userID":"","groupID":"22125508","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2264748085","conversationType":3,"userID":"","groupID":"2264748085","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2276584901","conversationType":3,"userID":"","groupID":"2276584901","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_2287005875","conversationType":3,"userID":"","groupID":"2287005875","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_2300748497","conversationType":3,"userID":"","groupID":"2300748497","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_2306232581","conversationType":3,"userID":"","groupID":"2306232581","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2311972027","conversationType":3,"userID":"","groupID":"2311972027","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2314844644","conversationType":3,"userID":"","groupID":"2314844644","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2328086176","conversationType":3,"userID":"","groupID":"2328086176","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2337816601","conversationType":3,"userID":"","groupID":"2337816601","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_2338619613","conversationType":3,"userID":"","groupID":"2338619613","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2338903916","conversationType":3,"userID":"","groupID":"2338903916","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2377136176","conversationType":3,"userID":"","groupID":"2377136176","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2386261452","conversationType":3,"userID":"","groupID":"2386261452","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2388518829","conversationType":3,"userID":"","groupID":"2388518829","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":4,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2388705044","conversationType":3,"userID":"","groupID":"2388705044","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2417467281","conversationType":3,"userID":"","groupID":"2417467281","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2438710897","conversationType":3,"userID":"","groupID":"2438710897","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_244473388","conversationType":3,"userID":"","groupID":"244473388","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_2458134291","conversationType":3,"userID":"","groupID":"2458134291","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_246329239","conversationType":3,"userID":"","groupID":"246329239","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":4,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2474039382","conversationType":3,"userID":"","groupID":"2474039382","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2479200198","conversationType":3,"userID":"","groupID":"2479200198","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2481127587","conversationType":3,"userID":"","groupID":"2481127587","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2526989903","conversationType":3,"userID":"","groupID":"2526989903","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2527119729","conversationType":3,"userID":"","groupID":"2527119729","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_254264603","conversationType":3,"userID":"","groupID":"254264603","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2546075374","conversationType":3,"userID":"","groupID":"2546075374","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_254754437","conversationType":3,"userID":"","groupID":"254754437","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_2563467770","conversationType":3,"userID":"","groupID":"2563467770","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2595610523","conversationType":3,"userID":"","groupID":"2595610523","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2599904267","conversationType":3,"userID":"","groupID":"2599904267","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2600924814","conversationType":3,"userID":"","groupID":"2600924814","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2604460151","conversationType":3,"userID":"","groupID":"2604460151","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_261042702","conversationType":3,"userID":"","groupID":"261042702","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":4,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_2625540721","conversationType":3,"userID":"","groupID":"2625540721","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2637047860","conversationType":3,"userID":"","groupID":"2637047860","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_2670578906","conversationType":3,"userID":"","groupID":"2670578906","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2677549796","conversationType":3,"userID":"","groupID":"2677549796","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2700512134","conversationType":3,"userID":"","groupID":"2700512134","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":4,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2703056345","conversationType":3,"userID":"","groupID":"2703056345","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2712739968","conversationType":3,"userID":"","groupID":"2712739968","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_2715338888","conversationType":3,"userID":"","groupID":"2715338888","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2738270862","conversationType":3,"userID":"","groupID":"2738270862","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2744603618","conversationType":3,"userID":"","groupID":"2744603618","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_2752799086","conversationType":3,"userID":"","groupID":"2752799086","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_2783925829","conversationType":3,"userID":"","groupID":"2783925829","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2806967959","conversationType":3,"userID":"","groupID":"2806967959","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2825124274","conversationType":3,"userID":"","groupID":"2825124274","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_2833552317","conversationType":3,"userID":"","groupID":"2833552317","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2836218947","conversationType":3,"userID":"","groupID":"2836218947","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2839621663","conversationType":3,"userID":"","groupID":"2839621663","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_2842792512","conversationType":3,"userID":"","groupID":"2842792512","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_28456085","conversationType":3,"userID":"","groupID":"28456085","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2864738888","conversationType":3,"userID":"","groupID":"2864738888","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_2866659389","conversationType":3,"userID":"","groupID":"2866659389","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_2889681075","conversationType":3,"userID":"","groupID":"2889681075","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2904928842","conversationType":3,"userID":"","groupID":"2904928842","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2942457817","conversationType":3,"userID":"","groupID":"2942457817","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2956229812","conversationType":3,"userID":"","groupID":"2956229812","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2958761051","conversationType":3,"userID":"","groupID":"2958761051","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_2991140459","conversationType":3,"userID":"","groupID":"2991140459","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_2991351838","conversationType":3,"userID":"","groupID":"2991351838","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_3014735116","conversationType":3,"userID":"","groupID":"3014735116","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_3069388481","conversationType":3,"userID":"","groupID":"3069388481","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_3134715281","conversationType":3,"userID":"","groupID":"3134715281","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_3158680188","conversationType":3,"userID":"","groupID":"3158680188","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":1,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_3187706596","conversationType":3,"userID":"","groupID":"3187706596","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_3204313055","conversationType":3,"userID":"","groupID":"3204313055","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":4,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_3227287827","conversationType":3,"userID":"","groupID":"3227287827","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_324253771","conversationType":3,"userID":"","groupID":"324253771","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":true,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_3253663629","conversationType":3,"userID":"","groupID":"3253663629","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_3266228942","conversationType":3,"userID":"","groupID":"3266228942","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_3269509736","conversationType":3,"userID":"","groupID":"3269509736","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_3276743019","conversationType":3,"userID":"","groupID":"3276743019","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_3295574908","conversationType":3,"userID":"","groupID":"3295574908","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_3327630005","conversationType":3,"userID":"","groupID":"3327630005","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_3369946551","conversationType":3,"userID":"","groupID":"3369946551","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_3384390386","conversationType":3,"userID":"","groupID":"3384390386","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_339303081","conversationType":3,"userID":"","groupID":"339303081","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_3416772962","conversationType":3,"userID":"","groupID":"3416772962","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_3417930724","conversationType":3,"userID":"","groupID":"3417930724","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_3430036352","conversationType":3,"userID":"","groupID":"3430036352","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_3438817431","conversationType":3,"userID":"","groupID":"3438817431","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_3456954170","conversationType":3,"userID":"","groupID":"3456954170","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_3489091446","conversationType":3,"userID":"","groupID":"3489091446","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_3504722739","conversationType":3,"userID":"","groupID":"3504722739","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_3523019119","conversationType":3,"userID":"","groupID":"3523019119","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_3560180171","conversationType":3,"userID":"","groupID":"3560180171","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_3590768919","conversationType":3,"userID":"","groupID":"3590768919","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_359361212","conversationType":3,"userID":"","groupID":"359361212","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_3595843332","conversationType":3,"userID":"","groupID":"3595843332","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_3610850870","conversationType":3,"userID":"","groupID":"3610850870","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_3634650086","conversationType":3,"userID":"","groupID":"3634650086","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_3636664095","conversationType":3,"userID":"","groupID":"3636664095","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_3652923926","conversationType":3,"userID":"","groupID":"3652923926","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_3655346906","conversationType":3,"userID":"","groupID":"3655346906","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_3693200714","conversationType":3,"userID":"","groupID":"3693200714","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_3700863541","conversationType":3,"userID":"","groupID":"3700863541","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_3703077350","conversationType":3,"userID":"","groupID":"3703077350","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_3704350375","conversationType":3,"userID":"","groupID":"3704350375","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_3704855948","conversationType":3,"userID":"","groupID":"3704855948","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_3727180154","conversationType":3,"userID":"","groupID":"3727180154","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_3750772487","conversationType":3,"userID":"","groupID":"3750772487","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_3759778360","conversationType":3,"userID":"","groupID":"3759778360","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_3809568826","conversationType":3,"userID":"","groupID":"3809568826","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_3831608740","conversationType":3,"userID":"","groupID":"3831608740","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_3845608473","conversationType":3,"userID":"","groupID":"3845608473","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_3896488295","conversationType":3,"userID":"","groupID":"3896488295","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_3901598750","conversationType":3,"userID":"","groupID":"3901598750","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_3923775376","conversationType":3,"userID":"","groupID":"3923775376","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_3926645279","conversationType":3,"userID":"","groupID":"3926645279","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_3927081813","conversationType":3,"userID":"","groupID":"3927081813","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_3953092196","conversationType":3,"userID":"","groupID":"3953092196","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_3957246617","conversationType":3,"userID":"","groupID":"3957246617","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_3969556509","conversationType":3,"userID":"","groupID":"3969556509","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_400360852","conversationType":3,"userID":"","groupID":"400360852","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":4,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_4015084780","conversationType":3,"userID":"","groupID":"4015084780","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_4018907989","conversationType":3,"userID":"","groupID":"4018907989","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_402286284","conversationType":3,"userID":"","groupID":"402286284","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_4023358894","conversationType":3,"userID":"","groupID":"4023358894","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_4034544053","conversationType":3,"userID":"","groupID":"4034544053","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_4039998258","conversationType":3,"userID":"","groupID":"4039998258","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_4040699454","conversationType":3,"userID":"","groupID":"4040699454","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_4045146473","conversationType":3,"userID":"","groupID":"4045146473","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_405867780","conversationType":3,"userID":"","groupID":"405867780","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_4070499267","conversationType":3,"userID":"","groupID":"4070499267","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":4,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_4075238610","conversationType":3,"userID":"","groupID":"4075238610","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":4,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_4089861802","conversationType":3,"userID":"","groupID":"4089861802","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":4,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_4092904375","conversationType":3,"userID":"","groupID":"4092904375","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_4094820687","conversationType":3,"userID":"","groupID":"4094820687","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_4182703673","conversationType":3,"userID":"","groupID":"4182703673","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_4220354893","conversationType":3,"userID":"","groupID":"4220354893","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_4227056539","conversationType":3,"userID":"","groupID":"4227056539","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_4253925195","conversationType":3,"userID":"","groupID":"4253925195","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":4,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_4261141770","conversationType":3,"userID":"","groupID":"4261141770","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_4265149432","conversationType":3,"userID":"","groupID":"4265149432","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_4273540010","conversationType":3,"userID":"","groupID":"4273540010","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_430333127","conversationType":3,"userID":"","groupID":"430333127","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_446768090","conversationType":3,"userID":"","groupID":"446768090","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_454437308","conversationType":3,"userID":"","groupID":"454437308","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_45636129","conversationType":3,"userID":"","groupID":"45636129","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":2,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_459143095","conversationType":3,"userID":"","groupID":"459143095","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_471852741","conversationType":3,"userID":"","groupID":"471852741","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_474494913","conversationType":3,"userID":"","groupID":"474494913","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_489539319","conversationType":3,"userID":"","groupID":"489539319","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_491010394","conversationType":3,"userID":"","groupID":"491010394","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_499550676","conversationType":3,"userID":"","groupID":"499550676","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":2,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_518546243","conversationType":3,"userID":"","groupID":"518546243","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_543925645","conversationType":3,"userID":"","groupID":"543925645","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_547125611","conversationType":3,"userID":"","groupID":"547125611","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_549432318","conversationType":3,"userID":"","groupID":"549432318","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_567855415","conversationType":3,"userID":"","groupID":"567855415","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_572273208","conversationType":3,"userID":"","groupID":"572273208","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_578214705","conversationType":3,"userID":"","groupID":"578214705","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_578691343","conversationType":3,"userID":"","groupID":"578691343","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_582136490","conversationType":3,"userID":"","groupID":"582136490","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":4,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_591858077","conversationType":3,"userID":"","groupID":"591858077","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_595536262","conversationType":3,"userID":"","groupID":"595536262","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_630329009","conversationType":3,"userID":"","groupID":"630329009","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_632811645","conversationType":3,"userID":"","groupID":"632811645","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_68265665","conversationType":3,"userID":"","groupID":"68265665","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_700804699","conversationType":3,"userID":"","groupID":"700804699","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_714498155","conversationType":3,"userID":"","groupID":"714498155","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_741425278","conversationType":3,"userID":"","groupID":"741425278","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_749544702","conversationType":3,"userID":"","groupID":"749544702","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_751776298","conversationType":3,"userID":"","groupID":"751776298","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_757454731","conversationType":3,"userID":"","groupID":"757454731","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_773702228","conversationType":3,"userID":"","groupID":"773702228","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":4,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_778158059","conversationType":3,"userID":"","groupID":"778158059","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_809953832","conversationType":3,"userID":"","groupID":"809953832","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_810698493","conversationType":3,"userID":"","groupID":"810698493","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_831402134","conversationType":3,"userID":"","groupID":"831402134","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_841314012","conversationType":3,"userID":"","groupID":"841314012","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_84614448","conversationType":3,"userID":"","groupID":"84614448","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_853658007","conversationType":3,"userID":"","groupID":"853658007","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_862487890","conversationType":3,"userID":"","groupID":"862487890","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_87742245","conversationType":3,"userID":"","groupID":"87742245","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_899043316","conversationType":3,"userID":"","groupID":"899043316","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":4,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_917923491","conversationType":3,"userID":"","groupID":"917923491","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_930244142","conversationType":3,"userID":"","groupID":"930244142","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_93606743","conversationType":3,"userID":"","groupID":"93606743","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_953210402","conversationType":3,"userID":"","groupID":"953210402","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"sg_976556305","conversationType":3,"userID":"","groupID":"976556305","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_981246811","conversationType":3,"userID":"","groupID":"981246811","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"sg_995014316","conversationType":3,"userID":"","groupID":"995014316","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1001978187_1695766238","conversationType":1,"userID":"1001978187","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1003546611_1695766238","conversationType":1,"userID":"1003546611","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1005848588_1695766238","conversationType":1,"userID":"1005848588","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1007207701_1695766238","conversationType":1,"userID":"1007207701","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1012210794_1695766238","conversationType":1,"userID":"1012210794","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1016745053_1695766238","conversationType":1,"userID":"1016745053","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1019113328_1695766238","conversationType":1,"userID":"1019113328","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1020167636_1695766238","conversationType":1,"userID":"1020167636","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1020330989_1695766238","conversationType":1,"userID":"1020330989","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1024013158_1695766238","conversationType":1,"userID":"1024013158","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1026082681_1695766238","conversationType":1,"userID":"1026082681","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1027189710_1695766238","conversationType":1,"userID":"1027189710","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1029140975_1695766238","conversationType":1,"userID":"1029140975","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1029199385_1695766238","conversationType":1,"userID":"1029199385","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1030196386_1695766238","conversationType":1,"userID":"1030196386","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1035018583_1695766238","conversationType":1,"userID":"1035018583","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1035025841_1695766238","conversationType":1,"userID":"1035025841","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1035596382_1695766238","conversationType":1,"userID":"1035596382","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1039344075_1695766238","conversationType":1,"userID":"1039344075","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1040441805_1695766238","conversationType":1,"userID":"1040441805","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1041417511_1695766238","conversationType":1,"userID":"1041417511","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1041526810_1695766238","conversationType":1,"userID":"1041526810","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1042709364_1695766238","conversationType":1,"userID":"1042709364","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1046238762_1695766238","conversationType":1,"userID":"1046238762","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1047286184_1695766238","conversationType":1,"userID":"1047286184","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1047605577_1695766238","conversationType":1,"userID":"1047605577","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1048801023_1695766238","conversationType":1,"userID":"1048801023","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1048970643_1695766238","conversationType":1,"userID":"1048970643","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1049946080_1695766238","conversationType":1,"userID":"1049946080","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1050659067_1695766238","conversationType":1,"userID":"1050659067","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1051234044_1695766238","conversationType":1,"userID":"1051234044","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1051923075_1695766238","conversationType":1,"userID":"1051923075","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1057649044_1695766238","conversationType":1,"userID":"1057649044","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1058654100_1695766238","conversationType":1,"userID":"1058654100","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1059702215_1695766238","conversationType":1,"userID":"1059702215","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1061497126_1695766238","conversationType":1,"userID":"1061497126","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1062100611_1695766238","conversationType":1,"userID":"1062100611","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1069173979_1695766238","conversationType":1,"userID":"1069173979","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1069920007_1695766238","conversationType":1,"userID":"1069920007","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1070085652_1695766238","conversationType":1,"userID":"1070085652","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1072866639_1695766238","conversationType":1,"userID":"1072866639","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1076727996_1695766238","conversationType":1,"userID":"1076727996","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1078126675_1695766238","conversationType":1,"userID":"1078126675","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1078453176_1695766238","conversationType":1,"userID":"1078453176","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1079519777_1695766238","conversationType":1,"userID":"1079519777","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1081211551_1695766238","conversationType":1,"userID":"1081211551","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1084443978_1695766238","conversationType":1,"userID":"1084443978","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1084666176_1695766238","conversationType":1,"userID":"1084666176","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1088304633_1695766238","conversationType":1,"userID":"1088304633","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1090301906_1695766238","conversationType":1,"userID":"1090301906","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1091357456_1695766238","conversationType":1,"userID":"1091357456","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1092596091_1695766238","conversationType":1,"userID":"1092596091","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1098139429_1695766238","conversationType":1,"userID":"1098139429","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1098570531_1695766238","conversationType":1,"userID":"1098570531","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1105464832_1695766238","conversationType":1,"userID":"1105464832","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1106456014_1695766238","conversationType":1,"userID":"1106456014","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1109663154_1695766238","conversationType":1,"userID":"1109663154","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1110013188_1695766238","conversationType":1,"userID":"1110013188","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1110128907_1695766238","conversationType":1,"userID":"1110128907","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1110490028_1695766238","conversationType":1,"userID":"1110490028","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1111364629_1695766238","conversationType":1,"userID":"1111364629","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1111503020_1695766238","conversationType":1,"userID":"1111503020","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1111724110_1695766238","conversationType":1,"userID":"1111724110","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1112057887_1695766238","conversationType":1,"userID":"1112057887","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1113172567_1695766238","conversationType":1,"userID":"1113172567","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1113982296_1695766238","conversationType":1,"userID":"1113982296","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1114171800_1695766238","conversationType":1,"userID":"1114171800","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1114245774_1695766238","conversationType":1,"userID":"1114245774","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1114603358_1695766238","conversationType":1,"userID":"1114603358","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1118121179_1695766238","conversationType":1,"userID":"1118121179","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1119049102_1695766238","conversationType":1,"userID":"1119049102","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1119184791_1695766238","conversationType":1,"userID":"1119184791","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1119462227_1695766238","conversationType":1,"userID":"1119462227","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1120888738_1695766238","conversationType":1,"userID":"1120888738","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1121842056_1695766238","conversationType":1,"userID":"1121842056","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1124267584_1695766238","conversationType":1,"userID":"1124267584","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1125316748_1695766238","conversationType":1,"userID":"1125316748","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1128086235_1695766238","conversationType":1,"userID":"1128086235","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1129238672_1695766238","conversationType":1,"userID":"1129238672","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1130612769_1695766238","conversationType":1,"userID":"1130612769","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1132125149_1695766238","conversationType":1,"userID":"1132125149","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1135290573_1695766238","conversationType":1,"userID":"1135290573","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1137346656_1695766238","conversationType":1,"userID":"1137346656","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1139778570_1695766238","conversationType":1,"userID":"1139778570","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1141269663_1695766238","conversationType":1,"userID":"1141269663","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1145518931_1695766238","conversationType":1,"userID":"1145518931","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1148014193_1695766238","conversationType":1,"userID":"1148014193","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1149674300_1695766238","conversationType":1,"userID":"1149674300","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1152052323_1695766238","conversationType":1,"userID":"1152052323","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1153223299_1695766238","conversationType":1,"userID":"1153223299","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1153514846_1695766238","conversationType":1,"userID":"1153514846","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1154538243_1695766238","conversationType":1,"userID":"1154538243","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1158421119_1695766238","conversationType":1,"userID":"1158421119","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1160166255_1695766238","conversationType":1,"userID":"1160166255","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1161320377_1695766238","conversationType":1,"userID":"1161320377","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1163727739_1695766238","conversationType":1,"userID":"1163727739","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1164940739_1695766238","conversationType":1,"userID":"1164940739","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1169314033_1695766238","conversationType":1,"userID":"1169314033","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1169864390_1695766238","conversationType":1,"userID":"1169864390","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1173525994_1695766238","conversationType":1,"userID":"1173525994","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1178348711_1695766238","conversationType":1,"userID":"1178348711","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1178600008_1695766238","conversationType":1,"userID":"1178600008","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1179846066_1695766238","conversationType":1,"userID":"1179846066","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1180960663_1695766238","conversationType":1,"userID":"1180960663","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1184247096_1695766238","conversationType":1,"userID":"1184247096","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1186482465_1695766238","conversationType":1,"userID":"1186482465","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1186763406_1695766238","conversationType":1,"userID":"1186763406","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1189211982_1695766238","conversationType":1,"userID":"1189211982","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1189516087_1695766238","conversationType":1,"userID":"1189516087","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1191255050_1695766238","conversationType":1,"userID":"1191255050","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1193985259_1695766238","conversationType":1,"userID":"1193985259","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1195520252_1695766238","conversationType":1,"userID":"1195520252","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1197722329_1695766238","conversationType":1,"userID":"1197722329","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1197740724_1695766238","conversationType":1,"userID":"1197740724","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1197930203_1695766238","conversationType":1,"userID":"1197930203","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1198170851_1695766238","conversationType":1,"userID":"1198170851","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1199452366_1695766238","conversationType":1,"userID":"1199452366","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1201627975_1695766238","conversationType":1,"userID":"1201627975","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1201870569_1695766238","conversationType":1,"userID":"1201870569","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1203300972_1695766238","conversationType":1,"userID":"1203300972","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1203427082_1695766238","conversationType":1,"userID":"1203427082","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1203740992_1695766238","conversationType":1,"userID":"1203740992","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1205216213_1695766238","conversationType":1,"userID":"1205216213","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1214890264_1695766238","conversationType":1,"userID":"1214890264","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1215813908_1695766238","conversationType":1,"userID":"1215813908","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1216359267_1695766238","conversationType":1,"userID":"1216359267","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1217986161_1695766238","conversationType":1,"userID":"1217986161","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1218106711_1695766238","conversationType":1,"userID":"1218106711","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1219920920_1695766238","conversationType":1,"userID":"1219920920","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1222190045_1695766238","conversationType":1,"userID":"1222190045","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1223611752_1695766238","conversationType":1,"userID":"1223611752","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1223824434_1695766238","conversationType":1,"userID":"1223824434","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1225764106_1695766238","conversationType":1,"userID":"1225764106","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1228521294_1695766238","conversationType":1,"userID":"1228521294","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1231061920_1695766238","conversationType":1,"userID":"1231061920","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1236363603_1695766238","conversationType":1,"userID":"1236363603","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1239260993_1695766238","conversationType":1,"userID":"1239260993","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1242008964_1695766238","conversationType":1,"userID":"1242008964","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1244598736_1695766238","conversationType":1,"userID":"1244598736","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1246378526_1695766238","conversationType":1,"userID":"1246378526","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1247281849_1695766238","conversationType":1,"userID":"1247281849","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1247768465_1695766238","conversationType":1,"userID":"1247768465","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1250766516_1695766238","conversationType":1,"userID":"1250766516","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1253082303_1695766238","conversationType":1,"userID":"1253082303","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1254137907_1695766238","conversationType":1,"userID":"1254137907","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1254897163_1695766238","conversationType":1,"userID":"1254897163","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1255014799_1695766238","conversationType":1,"userID":"1255014799","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1255769566_1695766238","conversationType":1,"userID":"1255769566","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1257873838_1695766238","conversationType":1,"userID":"1257873838","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1259205714_1695766238","conversationType":1,"userID":"1259205714","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1259491611_1695766238","conversationType":1,"userID":"1259491611","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1260906081_1695766238","conversationType":1,"userID":"1260906081","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1262838585_1695766238","conversationType":1,"userID":"1262838585","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1263384112_1695766238","conversationType":1,"userID":"1263384112","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1264676490_1695766238","conversationType":1,"userID":"1264676490","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1266887644_1695766238","conversationType":1,"userID":"1266887644","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1273935053_1695766238","conversationType":1,"userID":"1273935053","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1278944119_1695766238","conversationType":1,"userID":"1278944119","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1279884042_1695766238","conversationType":1,"userID":"1279884042","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1281598562_1695766238","conversationType":1,"userID":"1281598562","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1281934775_1695766238","conversationType":1,"userID":"1281934775","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1287973372_1695766238","conversationType":1,"userID":"1287973372","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1291322616_1695766238","conversationType":1,"userID":"1291322616","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1291601426_1695766238","conversationType":1,"userID":"1291601426","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1292646581_1695766238","conversationType":1,"userID":"1292646581","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1294205397_1695766238","conversationType":1,"userID":"1294205397","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1296481060_1695766238","conversationType":1,"userID":"1296481060","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1303174885_1695766238","conversationType":1,"userID":"1303174885","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1303224493_1695766238","conversationType":1,"userID":"1303224493","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1308295709_1695766238","conversationType":1,"userID":"1308295709","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1308526907_1695766238","conversationType":1,"userID":"1308526907","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1312600623_1695766238","conversationType":1,"userID":"1312600623","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1312766592_1695766238","conversationType":1,"userID":"1312766592","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1313516275_1695766238","conversationType":1,"userID":"1313516275","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1314958716_1695766238","conversationType":1,"userID":"1314958716","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1315193254_1695766238","conversationType":1,"userID":"1315193254","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1315194100_1695766238","conversationType":1,"userID":"1315194100","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1318098494_1695766238","conversationType":1,"userID":"1318098494","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1322848164_1695766238","conversationType":1,"userID":"1322848164","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1325120618_1695766238","conversationType":1,"userID":"1325120618","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1326889006_1695766238","conversationType":1,"userID":"1326889006","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1327075767_1695766238","conversationType":1,"userID":"1327075767","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1328504176_1695766238","conversationType":1,"userID":"1328504176","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1328609722_1695766238","conversationType":1,"userID":"1328609722","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1328649560_1695766238","conversationType":1,"userID":"1328649560","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1330357963_1695766238","conversationType":1,"userID":"1330357963","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1332124716_1695766238","conversationType":1,"userID":"1332124716","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1335529830_1695766238","conversationType":1,"userID":"1335529830","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1337385311_1695766238","conversationType":1,"userID":"1337385311","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1339832669_1695766238","conversationType":1,"userID":"1339832669","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1342056722_1695766238","conversationType":1,"userID":"1342056722","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1351222021_1695766238","conversationType":1,"userID":"1351222021","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1352959012_1695766238","conversationType":1,"userID":"1352959012","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1356317580_1695766238","conversationType":1,"userID":"1356317580","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1358105773_1695766238","conversationType":1,"userID":"1358105773","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1360958542_1695766238","conversationType":1,"userID":"1360958542","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1361338405_1695766238","conversationType":1,"userID":"1361338405","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1369503108_1695766238","conversationType":1,"userID":"1369503108","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1378104152_1695766238","conversationType":1,"userID":"1378104152","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1378723738_1695766238","conversationType":1,"userID":"1378723738","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1378864517_1695766238","conversationType":1,"userID":"1378864517","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1381750803_1695766238","conversationType":1,"userID":"1381750803","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1382542089_1695766238","conversationType":1,"userID":"1382542089","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1389388976_1695766238","conversationType":1,"userID":"1389388976","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1389519072_1695766238","conversationType":1,"userID":"1389519072","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1389672286_1695766238","conversationType":1,"userID":"1389672286","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1399815726_1695766238","conversationType":1,"userID":"1399815726","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1400334070_1695766238","conversationType":1,"userID":"1400334070","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1403690073_1695766238","conversationType":1,"userID":"1403690073","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1404053476_1695766238","conversationType":1,"userID":"1404053476","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1404071596_1695766238","conversationType":1,"userID":"1404071596","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1404108486_1695766238","conversationType":1,"userID":"1404108486","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1406732851_1695766238","conversationType":1,"userID":"1406732851","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1408523578_1695766238","conversationType":1,"userID":"1408523578","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1411038705_1695766238","conversationType":1,"userID":"1411038705","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1413232357_1695766238","conversationType":1,"userID":"1413232357","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1413892032_1695766238","conversationType":1,"userID":"1413892032","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1416508762_1695766238","conversationType":1,"userID":"1416508762","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1421222947_1695766238","conversationType":1,"userID":"1421222947","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1423094054_1695766238","conversationType":1,"userID":"1423094054","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1424675347_1695766238","conversationType":1,"userID":"1424675347","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1425098887_1695766238","conversationType":1,"userID":"1425098887","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1426385421_1695766238","conversationType":1,"userID":"1426385421","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1428611256_1695766238","conversationType":1,"userID":"1428611256","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1429778434_1695766238","conversationType":1,"userID":"1429778434","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1431753089_1695766238","conversationType":1,"userID":"1431753089","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1435708354_1695766238","conversationType":1,"userID":"1435708354","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1435815467_1695766238","conversationType":1,"userID":"1435815467","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1439097961_1695766238","conversationType":1,"userID":"1439097961","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1440270225_1695766238","conversationType":1,"userID":"1440270225","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1444423031_1695766238","conversationType":1,"userID":"1444423031","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1445725217_1695766238","conversationType":1,"userID":"1445725217","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1447165914_1695766238","conversationType":1,"userID":"1447165914","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1447253383_1695766238","conversationType":1,"userID":"1447253383","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1448477441_1695766238","conversationType":1,"userID":"1448477441","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1449505287_1695766238","conversationType":1,"userID":"1449505287","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1450541750_1695766238","conversationType":1,"userID":"1450541750","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1450572942_1695766238","conversationType":1,"userID":"1450572942","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1451141537_1695766238","conversationType":1,"userID":"1451141537","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1455103500_1695766238","conversationType":1,"userID":"1455103500","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1455854618_1695766238","conversationType":1,"userID":"1455854618","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1457549515_1695766238","conversationType":1,"userID":"1457549515","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1459886066_1695766238","conversationType":1,"userID":"1459886066","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1466421314_1695766238","conversationType":1,"userID":"1466421314","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1479208215_1695766238","conversationType":1,"userID":"1479208215","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1481152183_1695766238","conversationType":1,"userID":"1481152183","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1483410143_1695766238","conversationType":1,"userID":"1483410143","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1484864273_1695766238","conversationType":1,"userID":"1484864273","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1489050183_1695766238","conversationType":1,"userID":"1489050183","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1490112482_1695766238","conversationType":1,"userID":"1490112482","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1491381111_1695766238","conversationType":1,"userID":"1491381111","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1493979234_1695766238","conversationType":1,"userID":"1493979234","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1496957522_1695766238","conversationType":1,"userID":"1496957522","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1501353503_1695766238","conversationType":1,"userID":"1501353503","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1503288583_1695766238","conversationType":1,"userID":"1503288583","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1503313265_1695766238","conversationType":1,"userID":"1503313265","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1503571831_1695766238","conversationType":1,"userID":"1503571831","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1503799516_1695766238","conversationType":1,"userID":"1503799516","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1511563482_1695766238","conversationType":1,"userID":"1511563482","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1512333186_1695766238","conversationType":1,"userID":"1512333186","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1517471629_1695766238","conversationType":1,"userID":"1517471629","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1519782782_1695766238","conversationType":1,"userID":"1519782782","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1522530015_1695766238","conversationType":1,"userID":"1522530015","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1525076035_1695766238","conversationType":1,"userID":"1525076035","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1525462486_1695766238","conversationType":1,"userID":"1525462486","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1527761901_1695766238","conversationType":1,"userID":"1527761901","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1528034041_1695766238","conversationType":1,"userID":"1528034041","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1531529736_1695766238","conversationType":1,"userID":"1531529736","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1531800981_1695766238","conversationType":1,"userID":"1531800981","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1538447111_1695766238","conversationType":1,"userID":"1538447111","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1539916836_1695766238","conversationType":1,"userID":"1539916836","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1545733795_1695766238","conversationType":1,"userID":"1545733795","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1547315621_1695766238","conversationType":1,"userID":"1547315621","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1553095200_1695766238","conversationType":1,"userID":"1553095200","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1556110492_1695766238","conversationType":1,"userID":"1556110492","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1563714762_1695766238","conversationType":1,"userID":"1563714762","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1567202525_1695766238","conversationType":1,"userID":"1567202525","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1570753957_1695766238","conversationType":1,"userID":"1570753957","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1571918249_1695766238","conversationType":1,"userID":"1571918249","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1572354946_1695766238","conversationType":1,"userID":"1572354946","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1572952163_1695766238","conversationType":1,"userID":"1572952163","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1575369290_1695766238","conversationType":1,"userID":"1575369290","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1580228426_1695766238","conversationType":1,"userID":"1580228426","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1586898988_1695766238","conversationType":1,"userID":"1586898988","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1591700454_1695766238","conversationType":1,"userID":"1591700454","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1592632793_1695766238","conversationType":1,"userID":"1592632793","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1596057385_1695766238","conversationType":1,"userID":"1596057385","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1596529802_1695766238","conversationType":1,"userID":"1596529802","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1597197183_1695766238","conversationType":1,"userID":"1597197183","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1597446517_1695766238","conversationType":1,"userID":"1597446517","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1602000005_1695766238","conversationType":1,"userID":"1602000005","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1605306478_1695766238","conversationType":1,"userID":"1605306478","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1606591661_1695766238","conversationType":1,"userID":"1606591661","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1610353382_1695766238","conversationType":1,"userID":"1610353382","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1613711798_1695766238","conversationType":1,"userID":"1613711798","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1617274099_1695766238","conversationType":1,"userID":"1617274099","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1619510595_1695766238","conversationType":1,"userID":"1619510595","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1624302032_1695766238","conversationType":1,"userID":"1624302032","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1628445271_1695766238","conversationType":1,"userID":"1628445271","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1639021089_1695766238","conversationType":1,"userID":"1639021089","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1641400615_1695766238","conversationType":1,"userID":"1641400615","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1645337519_1695766238","conversationType":1,"userID":"1645337519","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1652390041_1695766238","conversationType":1,"userID":"1652390041","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1653288930_1695766238","conversationType":1,"userID":"1653288930","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1654005478_1695766238","conversationType":1,"userID":"1654005478","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1655462573_1695766238","conversationType":1,"userID":"1655462573","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1655642484_1695766238","conversationType":1,"userID":"1655642484","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1656524872_1695766238","conversationType":1,"userID":"1656524872","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1659023429_1695766238","conversationType":1,"userID":"1659023429","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1659042267_1695766238","conversationType":1,"userID":"1659042267","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1664486975_1695766238","conversationType":1,"userID":"1664486975","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1667631425_1695766238","conversationType":1,"userID":"1667631425","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1669430182_1695766238","conversationType":1,"userID":"1669430182","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1670365234_1695766238","conversationType":1,"userID":"1670365234","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1670622606_1695766238","conversationType":1,"userID":"1670622606","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1672477147_1695766238","conversationType":1,"userID":"1672477147","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1672553537_1695766238","conversationType":1,"userID":"1672553537","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1687822249_1695766238","conversationType":1,"userID":"1687822249","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1689589076_1695766238","conversationType":1,"userID":"1689589076","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1692205388_1695766238","conversationType":1,"userID":"1692205388","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1693456624_1695766238","conversationType":1,"userID":"1693456624","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1694942215_1695766238","conversationType":1,"userID":"1694942215","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1702117725","conversationType":1,"userID":"1702117725","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_1702188248","conversationType":1,"userID":"1702188248","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1703789873","conversationType":1,"userID":"1703789873","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1709215513","conversationType":1,"userID":"1709215513","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1712766650","conversationType":1,"userID":"1712766650","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1713347484","conversationType":1,"userID":"1713347484","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1717761876","conversationType":1,"userID":"1717761876","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1721395134","conversationType":1,"userID":"1721395134","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1727201413","conversationType":1,"userID":"1727201413","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_1731109771","conversationType":1,"userID":"1731109771","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_1731636962","conversationType":1,"userID":"1731636962","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1736245880","conversationType":1,"userID":"1736245880","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_1738515952","conversationType":1,"userID":"1738515952","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1742363625","conversationType":1,"userID":"1742363625","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_1742605630","conversationType":1,"userID":"1742605630","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1743177197","conversationType":1,"userID":"1743177197","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1744636404","conversationType":1,"userID":"1744636404","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1747359714","conversationType":1,"userID":"1747359714","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1748872770","conversationType":1,"userID":"1748872770","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1751282511","conversationType":1,"userID":"1751282511","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1752144503","conversationType":1,"userID":"1752144503","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1772946620","conversationType":1,"userID":"1772946620","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_1774447755","conversationType":1,"userID":"1774447755","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1774484110","conversationType":1,"userID":"1774484110","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1774642490","conversationType":1,"userID":"1774642490","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_1774777128","conversationType":1,"userID":"1774777128","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1776346921","conversationType":1,"userID":"1776346921","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1778088968","conversationType":1,"userID":"1778088968","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_1778147024","conversationType":1,"userID":"1778147024","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1778774517","conversationType":1,"userID":"1778774517","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_1780015171","conversationType":1,"userID":"1780015171","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_1780132425","conversationType":1,"userID":"1780132425","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_1786023921","conversationType":1,"userID":"1786023921","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1789628801","conversationType":1,"userID":"1789628801","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_1790308311","conversationType":1,"userID":"1790308311","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_1792420009","conversationType":1,"userID":"1792420009","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_1792779407","conversationType":1,"userID":"1792779407","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1793479516","conversationType":1,"userID":"1793479516","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1794457838","conversationType":1,"userID":"1794457838","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1799928569","conversationType":1,"userID":"1799928569","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1801012070","conversationType":1,"userID":"1801012070","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1804216069","conversationType":1,"userID":"1804216069","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1806295356","conversationType":1,"userID":"1806295356","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1807355584","conversationType":1,"userID":"1807355584","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1808739935","conversationType":1,"userID":"1808739935","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1810705917","conversationType":1,"userID":"1810705917","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1811284251","conversationType":1,"userID":"1811284251","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1814656795","conversationType":1,"userID":"1814656795","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1817747447","conversationType":1,"userID":"1817747447","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1818754282","conversationType":1,"userID":"1818754282","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_1819336215","conversationType":1,"userID":"1819336215","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1819708663","conversationType":1,"userID":"1819708663","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1820723584","conversationType":1,"userID":"1820723584","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1823386847","conversationType":1,"userID":"1823386847","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_1824275843","conversationType":1,"userID":"1824275843","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_1825528748","conversationType":1,"userID":"1825528748","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1828448298","conversationType":1,"userID":"1828448298","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_1829995445","conversationType":1,"userID":"1829995445","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1831010849","conversationType":1,"userID":"1831010849","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1831659683","conversationType":1,"userID":"1831659683","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1831904357","conversationType":1,"userID":"1831904357","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1834112002","conversationType":1,"userID":"1834112002","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1839129196","conversationType":1,"userID":"1839129196","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1839949291","conversationType":1,"userID":"1839949291","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1842076890","conversationType":1,"userID":"1842076890","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1847173569","conversationType":1,"userID":"1847173569","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_1847547134","conversationType":1,"userID":"1847547134","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1848196820","conversationType":1,"userID":"1848196820","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1854151908","conversationType":1,"userID":"1854151908","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1854239844","conversationType":1,"userID":"1854239844","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1856646576","conversationType":1,"userID":"1856646576","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1858506629","conversationType":1,"userID":"1858506629","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1860327649","conversationType":1,"userID":"1860327649","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1864342100","conversationType":1,"userID":"1864342100","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1866469672","conversationType":1,"userID":"1866469672","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_1869222509","conversationType":1,"userID":"1869222509","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1876795205","conversationType":1,"userID":"1876795205","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1876910460","conversationType":1,"userID":"1876910460","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1878877862","conversationType":1,"userID":"1878877862","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1879624691","conversationType":1,"userID":"1879624691","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1881699466","conversationType":1,"userID":"1881699466","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1894592643","conversationType":1,"userID":"1894592643","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1896037684","conversationType":1,"userID":"1896037684","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_1896201093","conversationType":1,"userID":"1896201093","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_1896406410","conversationType":1,"userID":"1896406410","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1902484337","conversationType":1,"userID":"1902484337","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1905725782","conversationType":1,"userID":"1905725782","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1906445099","conversationType":1,"userID":"1906445099","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1908218712","conversationType":1,"userID":"1908218712","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1908245713","conversationType":1,"userID":"1908245713","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_1911583328","conversationType":1,"userID":"1911583328","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_1911710742","conversationType":1,"userID":"1911710742","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_1911810093","conversationType":1,"userID":"1911810093","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1912058390","conversationType":1,"userID":"1912058390","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1913583468","conversationType":1,"userID":"1913583468","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_1919047430","conversationType":1,"userID":"1919047430","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1922087882","conversationType":1,"userID":"1922087882","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_1925254179","conversationType":1,"userID":"1925254179","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1931646522","conversationType":1,"userID":"1931646522","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1934748565","conversationType":1,"userID":"1934748565","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1938451039","conversationType":1,"userID":"1938451039","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1942179907","conversationType":1,"userID":"1942179907","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1947536099","conversationType":1,"userID":"1947536099","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1947607451","conversationType":1,"userID":"1947607451","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1948326429","conversationType":1,"userID":"1948326429","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1949451221","conversationType":1,"userID":"1949451221","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_1950195921","conversationType":1,"userID":"1950195921","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1951127248","conversationType":1,"userID":"1951127248","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1952868490","conversationType":1,"userID":"1952868490","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1958217588","conversationType":1,"userID":"1958217588","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_1958518843","conversationType":1,"userID":"1958518843","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1962711667","conversationType":1,"userID":"1962711667","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_1964147937","conversationType":1,"userID":"1964147937","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_1966124402","conversationType":1,"userID":"1966124402","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_1968770658","conversationType":1,"userID":"1968770658","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_1974192173","conversationType":1,"userID":"1974192173","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1975362624","conversationType":1,"userID":"1975362624","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_1975553123","conversationType":1,"userID":"1975553123","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1975712729","conversationType":1,"userID":"1975712729","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1977829381","conversationType":1,"userID":"1977829381","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1979754569","conversationType":1,"userID":"1979754569","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1981410842","conversationType":1,"userID":"1981410842","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1985863892","conversationType":1,"userID":"1985863892","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1985870240","conversationType":1,"userID":"1985870240","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1988963519","conversationType":1,"userID":"1988963519","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_1993324527","conversationType":1,"userID":"1993324527","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_1993900928","conversationType":1,"userID":"1993900928","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_1996969578","conversationType":1,"userID":"1996969578","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2004232076","conversationType":1,"userID":"2004232076","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2004829824","conversationType":1,"userID":"2004829824","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2007415990","conversationType":1,"userID":"2007415990","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2010453067","conversationType":1,"userID":"2010453067","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2010596235","conversationType":1,"userID":"2010596235","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2011701267","conversationType":1,"userID":"2011701267","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2014288178","conversationType":1,"userID":"2014288178","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2016410286","conversationType":1,"userID":"2016410286","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2019888097","conversationType":1,"userID":"2019888097","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2020409452","conversationType":1,"userID":"2020409452","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2021892716","conversationType":1,"userID":"2021892716","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2024007389","conversationType":1,"userID":"2024007389","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2024880531","conversationType":1,"userID":"2024880531","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2024935500","conversationType":1,"userID":"2024935500","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2030639266","conversationType":1,"userID":"2030639266","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2031934238","conversationType":1,"userID":"2031934238","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2033736816","conversationType":1,"userID":"2033736816","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2044305683","conversationType":1,"userID":"2044305683","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2051159423","conversationType":1,"userID":"2051159423","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2055552460","conversationType":1,"userID":"2055552460","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2055562411","conversationType":1,"userID":"2055562411","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2056273558","conversationType":1,"userID":"2056273558","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2058272412","conversationType":1,"userID":"2058272412","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2065312455","conversationType":1,"userID":"2065312455","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2065649737","conversationType":1,"userID":"2065649737","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2067518707","conversationType":1,"userID":"2067518707","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2067737063","conversationType":1,"userID":"2067737063","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2068776395","conversationType":1,"userID":"2068776395","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2069135616","conversationType":1,"userID":"2069135616","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2072960535","conversationType":1,"userID":"2072960535","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2074661004","conversationType":1,"userID":"2074661004","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2079144021","conversationType":1,"userID":"2079144021","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2081682065","conversationType":1,"userID":"2081682065","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2082541912","conversationType":1,"userID":"2082541912","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2089643170","conversationType":1,"userID":"2089643170","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2090630692","conversationType":1,"userID":"2090630692","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2097541846","conversationType":1,"userID":"2097541846","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2097781817","conversationType":1,"userID":"2097781817","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2100400616","conversationType":1,"userID":"2100400616","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2104195868","conversationType":1,"userID":"2104195868","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2104948837","conversationType":1,"userID":"2104948837","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2105815429","conversationType":1,"userID":"2105815429","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2106298144","conversationType":1,"userID":"2106298144","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2108107622","conversationType":1,"userID":"2108107622","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2114315169","conversationType":1,"userID":"2114315169","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2115325771","conversationType":1,"userID":"2115325771","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2116967433","conversationType":1,"userID":"2116967433","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2122535786","conversationType":1,"userID":"2122535786","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2122903572","conversationType":1,"userID":"2122903572","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2123184085","conversationType":1,"userID":"2123184085","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2130822983","conversationType":1,"userID":"2130822983","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2134502115","conversationType":1,"userID":"2134502115","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2135811730","conversationType":1,"userID":"2135811730","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2136985550","conversationType":1,"userID":"2136985550","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2141887973","conversationType":1,"userID":"2141887973","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2147178021","conversationType":1,"userID":"2147178021","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2148094530","conversationType":1,"userID":"2148094530","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2148877993","conversationType":1,"userID":"2148877993","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2158704735","conversationType":1,"userID":"2158704735","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2159393416","conversationType":1,"userID":"2159393416","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2159739643","conversationType":1,"userID":"2159739643","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2161460908","conversationType":1,"userID":"2161460908","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2161754714","conversationType":1,"userID":"2161754714","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2166930178","conversationType":1,"userID":"2166930178","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2168939271","conversationType":1,"userID":"2168939271","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2169175564","conversationType":1,"userID":"2169175564","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2172356511","conversationType":1,"userID":"2172356511","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2175053091","conversationType":1,"userID":"2175053091","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2175304326","conversationType":1,"userID":"2175304326","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2177659996","conversationType":1,"userID":"2177659996","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2177829402","conversationType":1,"userID":"2177829402","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2180660843","conversationType":1,"userID":"2180660843","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2180823601","conversationType":1,"userID":"2180823601","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2182589988","conversationType":1,"userID":"2182589988","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2184518026","conversationType":1,"userID":"2184518026","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2184902631","conversationType":1,"userID":"2184902631","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2186548040","conversationType":1,"userID":"2186548040","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2190613325","conversationType":1,"userID":"2190613325","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2193659648","conversationType":1,"userID":"2193659648","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2195170233","conversationType":1,"userID":"2195170233","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2195904688","conversationType":1,"userID":"2195904688","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2203147158","conversationType":1,"userID":"2203147158","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2203420444","conversationType":1,"userID":"2203420444","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2204485419","conversationType":1,"userID":"2204485419","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2210409049","conversationType":1,"userID":"2210409049","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2213558486","conversationType":1,"userID":"2213558486","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2215031028","conversationType":1,"userID":"2215031028","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2216649304","conversationType":1,"userID":"2216649304","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2220605266","conversationType":1,"userID":"2220605266","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2222465830","conversationType":1,"userID":"2222465830","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2226864743","conversationType":1,"userID":"2226864743","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2228082017","conversationType":1,"userID":"2228082017","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2229500075","conversationType":1,"userID":"2229500075","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2230209768","conversationType":1,"userID":"2230209768","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2241676396","conversationType":1,"userID":"2241676396","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2242408886","conversationType":1,"userID":"2242408886","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2243648531","conversationType":1,"userID":"2243648531","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2244237845","conversationType":1,"userID":"2244237845","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2247734613","conversationType":1,"userID":"2247734613","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2250230706","conversationType":1,"userID":"2250230706","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2253553088","conversationType":1,"userID":"2253553088","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2259719077","conversationType":1,"userID":"2259719077","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2262854413","conversationType":1,"userID":"2262854413","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2267320291","conversationType":1,"userID":"2267320291","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2269669873","conversationType":1,"userID":"2269669873","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2271624505","conversationType":1,"userID":"2271624505","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2275164187","conversationType":1,"userID":"2275164187","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2276632311","conversationType":1,"userID":"2276632311","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2282057245","conversationType":1,"userID":"2282057245","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2284382043","conversationType":1,"userID":"2284382043","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2287549734","conversationType":1,"userID":"2287549734","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2289445413","conversationType":1,"userID":"2289445413","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2290916297","conversationType":1,"userID":"2290916297","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2293953462","conversationType":1,"userID":"2293953462","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2294068026","conversationType":1,"userID":"2294068026","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2294606956","conversationType":1,"userID":"2294606956","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2294788609","conversationType":1,"userID":"2294788609","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2295443263","conversationType":1,"userID":"2295443263","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2298259901","conversationType":1,"userID":"2298259901","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2300236631","conversationType":1,"userID":"2300236631","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2302198630","conversationType":1,"userID":"2302198630","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2303519405","conversationType":1,"userID":"2303519405","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2304329422","conversationType":1,"userID":"2304329422","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2304731565","conversationType":1,"userID":"2304731565","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2305551097","conversationType":1,"userID":"2305551097","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2311268381","conversationType":1,"userID":"2311268381","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2315425831","conversationType":1,"userID":"2315425831","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2316549309","conversationType":1,"userID":"2316549309","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2318151329","conversationType":1,"userID":"2318151329","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2318653347","conversationType":1,"userID":"2318653347","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2320413995","conversationType":1,"userID":"2320413995","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2321445599","conversationType":1,"userID":"2321445599","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2321576079","conversationType":1,"userID":"2321576079","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2321652781","conversationType":1,"userID":"2321652781","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2324043115","conversationType":1,"userID":"2324043115","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2328434107","conversationType":1,"userID":"2328434107","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2330580373","conversationType":1,"userID":"2330580373","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2333601327","conversationType":1,"userID":"2333601327","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2334128456","conversationType":1,"userID":"2334128456","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2340903303","conversationType":1,"userID":"2340903303","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2347287674","conversationType":1,"userID":"2347287674","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2351226722","conversationType":1,"userID":"2351226722","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2352729542","conversationType":1,"userID":"2352729542","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2359475267","conversationType":1,"userID":"2359475267","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":true,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2360742959","conversationType":1,"userID":"2360742959","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2361415263","conversationType":1,"userID":"2361415263","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2363107482","conversationType":1,"userID":"2363107482","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2364621913","conversationType":1,"userID":"2364621913","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2365006326","conversationType":1,"userID":"2365006326","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2367330798","conversationType":1,"userID":"2367330798","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2372363878","conversationType":1,"userID":"2372363878","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2373768870","conversationType":1,"userID":"2373768870","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2373832029","conversationType":1,"userID":"2373832029","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2373957188","conversationType":1,"userID":"2373957188","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2376970002","conversationType":1,"userID":"2376970002","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2379157232","conversationType":1,"userID":"2379157232","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2380361192","conversationType":1,"userID":"2380361192","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2382919335","conversationType":1,"userID":"2382919335","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2384253834","conversationType":1,"userID":"2384253834","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2389045052","conversationType":1,"userID":"2389045052","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2391060935","conversationType":1,"userID":"2391060935","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2391250488","conversationType":1,"userID":"2391250488","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2397238037","conversationType":1,"userID":"2397238037","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2403026614","conversationType":1,"userID":"2403026614","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2405162268","conversationType":1,"userID":"2405162268","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2406359607","conversationType":1,"userID":"2406359607","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2408460453","conversationType":1,"userID":"2408460453","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2411591216","conversationType":1,"userID":"2411591216","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2411791668","conversationType":1,"userID":"2411791668","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2413777979","conversationType":1,"userID":"2413777979","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2418326201","conversationType":1,"userID":"2418326201","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2419735015","conversationType":1,"userID":"2419735015","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2420469244","conversationType":1,"userID":"2420469244","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2428356422","conversationType":1,"userID":"2428356422","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2435076373","conversationType":1,"userID":"2435076373","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2441535687","conversationType":1,"userID":"2441535687","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2445660151","conversationType":1,"userID":"2445660151","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2450037859","conversationType":1,"userID":"2450037859","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2455695513","conversationType":1,"userID":"2455695513","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2456610935","conversationType":1,"userID":"2456610935","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2459596184","conversationType":1,"userID":"2459596184","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2467222861","conversationType":1,"userID":"2467222861","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2467407321","conversationType":1,"userID":"2467407321","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2468662977","conversationType":1,"userID":"2468662977","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2469358242","conversationType":1,"userID":"2469358242","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2481840430","conversationType":1,"userID":"2481840430","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2484820129","conversationType":1,"userID":"2484820129","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2485271223","conversationType":1,"userID":"2485271223","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2485831627","conversationType":1,"userID":"2485831627","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2487744132","conversationType":1,"userID":"2487744132","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2491241835","conversationType":1,"userID":"2491241835","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2491509322","conversationType":1,"userID":"2491509322","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2494091274","conversationType":1,"userID":"2494091274","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2495044228","conversationType":1,"userID":"2495044228","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2499792755","conversationType":1,"userID":"2499792755","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2500499043","conversationType":1,"userID":"2500499043","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2501035310","conversationType":1,"userID":"2501035310","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2501392715","conversationType":1,"userID":"2501392715","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2509310711","conversationType":1,"userID":"2509310711","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2513608056","conversationType":1,"userID":"2513608056","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2519991844","conversationType":1,"userID":"2519991844","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2527123914","conversationType":1,"userID":"2527123914","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2529149450","conversationType":1,"userID":"2529149450","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2529173030","conversationType":1,"userID":"2529173030","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2541778634","conversationType":1,"userID":"2541778634","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2542308726","conversationType":1,"userID":"2542308726","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2543136948","conversationType":1,"userID":"2543136948","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2543151462","conversationType":1,"userID":"2543151462","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2544821957","conversationType":1,"userID":"2544821957","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2545303424","conversationType":1,"userID":"2545303424","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2546145730","conversationType":1,"userID":"2546145730","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2546997095","conversationType":1,"userID":"2546997095","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2550644812","conversationType":1,"userID":"2550644812","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2552156733","conversationType":1,"userID":"2552156733","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2553130763","conversationType":1,"userID":"2553130763","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2553226423","conversationType":1,"userID":"2553226423","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2554370645","conversationType":1,"userID":"2554370645","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2554419927","conversationType":1,"userID":"2554419927","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2554528968","conversationType":1,"userID":"2554528968","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2554845832","conversationType":1,"userID":"2554845832","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2558214548","conversationType":1,"userID":"2558214548","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2561044054","conversationType":1,"userID":"2561044054","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2562159690","conversationType":1,"userID":"2562159690","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2563542186","conversationType":1,"userID":"2563542186","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2568600958","conversationType":1,"userID":"2568600958","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2573171514","conversationType":1,"userID":"2573171514","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2575964991","conversationType":1,"userID":"2575964991","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2576541524","conversationType":1,"userID":"2576541524","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2584692046","conversationType":1,"userID":"2584692046","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2585587550","conversationType":1,"userID":"2585587550","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2591460564","conversationType":1,"userID":"2591460564","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2591851186","conversationType":1,"userID":"2591851186","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2591881637","conversationType":1,"userID":"2591881637","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2592855383","conversationType":1,"userID":"2592855383","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2594011902","conversationType":1,"userID":"2594011902","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2595508365","conversationType":1,"userID":"2595508365","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2600151896","conversationType":1,"userID":"2600151896","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2600383208","conversationType":1,"userID":"2600383208","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2601184652","conversationType":1,"userID":"2601184652","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2601366798","conversationType":1,"userID":"2601366798","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2609646737","conversationType":1,"userID":"2609646737","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2609720932","conversationType":1,"userID":"2609720932","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2610489646","conversationType":1,"userID":"2610489646","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2613277163","conversationType":1,"userID":"2613277163","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2613915887","conversationType":1,"userID":"2613915887","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2617887857","conversationType":1,"userID":"2617887857","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2626327942","conversationType":1,"userID":"2626327942","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2631401942","conversationType":1,"userID":"2631401942","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2634464933","conversationType":1,"userID":"2634464933","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2635072834","conversationType":1,"userID":"2635072834","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2636416179","conversationType":1,"userID":"2636416179","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2641033059","conversationType":1,"userID":"2641033059","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2645362757","conversationType":1,"userID":"2645362757","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2647432110","conversationType":1,"userID":"2647432110","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2647762028","conversationType":1,"userID":"2647762028","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2651221124","conversationType":1,"userID":"2651221124","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2651592493","conversationType":1,"userID":"2651592493","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2654376801","conversationType":1,"userID":"2654376801","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2657780288","conversationType":1,"userID":"2657780288","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2658782184","conversationType":1,"userID":"2658782184","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2660237167","conversationType":1,"userID":"2660237167","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2660869153","conversationType":1,"userID":"2660869153","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2661098595","conversationType":1,"userID":"2661098595","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2663585626","conversationType":1,"userID":"2663585626","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2664190009","conversationType":1,"userID":"2664190009","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2669155458","conversationType":1,"userID":"2669155458","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2669463502","conversationType":1,"userID":"2669463502","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2669522749","conversationType":1,"userID":"2669522749","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2669535307","conversationType":1,"userID":"2669535307","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2669963504","conversationType":1,"userID":"2669963504","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2671236825","conversationType":1,"userID":"2671236825","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2673947325","conversationType":1,"userID":"2673947325","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2674288701","conversationType":1,"userID":"2674288701","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2677077317","conversationType":1,"userID":"2677077317","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2680367243","conversationType":1,"userID":"2680367243","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2680629439","conversationType":1,"userID":"2680629439","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2682102921","conversationType":1,"userID":"2682102921","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2685129670","conversationType":1,"userID":"2685129670","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2693021040","conversationType":1,"userID":"2693021040","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2696721836","conversationType":1,"userID":"2696721836","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2699572576","conversationType":1,"userID":"2699572576","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2700396114","conversationType":1,"userID":"2700396114","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2703205078","conversationType":1,"userID":"2703205078","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2704233049","conversationType":1,"userID":"2704233049","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2709636845","conversationType":1,"userID":"2709636845","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2713785709","conversationType":1,"userID":"2713785709","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2715028883","conversationType":1,"userID":"2715028883","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2716096987","conversationType":1,"userID":"2716096987","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2722031875","conversationType":1,"userID":"2722031875","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2724133050","conversationType":1,"userID":"2724133050","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2725451243","conversationType":1,"userID":"2725451243","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2726215647","conversationType":1,"userID":"2726215647","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2726777258","conversationType":1,"userID":"2726777258","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2729128783","conversationType":1,"userID":"2729128783","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2731806832","conversationType":1,"userID":"2731806832","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2734901662","conversationType":1,"userID":"2734901662","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2738525736","conversationType":1,"userID":"2738525736","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2740315835","conversationType":1,"userID":"2740315835","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2742063027","conversationType":1,"userID":"2742063027","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2754162204","conversationType":1,"userID":"2754162204","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2754805926","conversationType":1,"userID":"2754805926","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2755984629","conversationType":1,"userID":"2755984629","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2756605961","conversationType":1,"userID":"2756605961","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2757252842","conversationType":1,"userID":"2757252842","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2764057746","conversationType":1,"userID":"2764057746","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2767105920","conversationType":1,"userID":"2767105920","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2767449688","conversationType":1,"userID":"2767449688","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2768044296","conversationType":1,"userID":"2768044296","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2771080861","conversationType":1,"userID":"2771080861","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2775808036","conversationType":1,"userID":"2775808036","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2776032332","conversationType":1,"userID":"2776032332","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2776179448","conversationType":1,"userID":"2776179448","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2777182895","conversationType":1,"userID":"2777182895","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2777392996","conversationType":1,"userID":"2777392996","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2780679609","conversationType":1,"userID":"2780679609","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2784365787","conversationType":1,"userID":"2784365787","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2789477856","conversationType":1,"userID":"2789477856","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2794126343","conversationType":1,"userID":"2794126343","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2797666974","conversationType":1,"userID":"2797666974","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2798938564","conversationType":1,"userID":"2798938564","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2800069016","conversationType":1,"userID":"2800069016","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2800090370","conversationType":1,"userID":"2800090370","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2800701915","conversationType":1,"userID":"2800701915","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2800889459","conversationType":1,"userID":"2800889459","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2802049271","conversationType":1,"userID":"2802049271","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2804438534","conversationType":1,"userID":"2804438534","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2809251033","conversationType":1,"userID":"2809251033","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2813681002","conversationType":1,"userID":"2813681002","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2814204296","conversationType":1,"userID":"2814204296","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2814797407","conversationType":1,"userID":"2814797407","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2815363205","conversationType":1,"userID":"2815363205","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2817294799","conversationType":1,"userID":"2817294799","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2819267901","conversationType":1,"userID":"2819267901","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2820286436","conversationType":1,"userID":"2820286436","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2820720133","conversationType":1,"userID":"2820720133","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2822906793","conversationType":1,"userID":"2822906793","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2823062805","conversationType":1,"userID":"2823062805","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2826097502","conversationType":1,"userID":"2826097502","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2827017309","conversationType":1,"userID":"2827017309","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2827279331","conversationType":1,"userID":"2827279331","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2831193585","conversationType":1,"userID":"2831193585","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2831301183","conversationType":1,"userID":"2831301183","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2832240999","conversationType":1,"userID":"2832240999","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2838302193","conversationType":1,"userID":"2838302193","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2839845469","conversationType":1,"userID":"2839845469","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2840949175","conversationType":1,"userID":"2840949175","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2844014343","conversationType":1,"userID":"2844014343","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2844833716","conversationType":1,"userID":"2844833716","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2849945986","conversationType":1,"userID":"2849945986","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2849985286","conversationType":1,"userID":"2849985286","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2854365488","conversationType":1,"userID":"2854365488","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2854451107","conversationType":1,"userID":"2854451107","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2857250700","conversationType":1,"userID":"2857250700","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2860578616","conversationType":1,"userID":"2860578616","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2863149679","conversationType":1,"userID":"2863149679","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2864156896","conversationType":1,"userID":"2864156896","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2864562820","conversationType":1,"userID":"2864562820","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2872689322","conversationType":1,"userID":"2872689322","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2876405749","conversationType":1,"userID":"2876405749","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2876517639","conversationType":1,"userID":"2876517639","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2878187113","conversationType":1,"userID":"2878187113","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2878889045","conversationType":1,"userID":"2878889045","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2879113393","conversationType":1,"userID":"2879113393","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2879577568","conversationType":1,"userID":"2879577568","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2879740664","conversationType":1,"userID":"2879740664","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2880563506","conversationType":1,"userID":"2880563506","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2881445108","conversationType":1,"userID":"2881445108","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2882899447","conversationType":1,"userID":"2882899447","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2887838678","conversationType":1,"userID":"2887838678","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2888258810","conversationType":1,"userID":"2888258810","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2890334421","conversationType":1,"userID":"2890334421","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2890713225","conversationType":1,"userID":"2890713225","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2893984568","conversationType":1,"userID":"2893984568","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2897007768","conversationType":1,"userID":"2897007768","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2900920572","conversationType":1,"userID":"2900920572","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2901569973","conversationType":1,"userID":"2901569973","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2901914165","conversationType":1,"userID":"2901914165","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2902603154","conversationType":1,"userID":"2902603154","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2903763431","conversationType":1,"userID":"2903763431","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2904203350","conversationType":1,"userID":"2904203350","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2905053077","conversationType":1,"userID":"2905053077","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2905252350","conversationType":1,"userID":"2905252350","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2912415463","conversationType":1,"userID":"2912415463","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2912423192","conversationType":1,"userID":"2912423192","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2914580370","conversationType":1,"userID":"2914580370","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2921314358","conversationType":1,"userID":"2921314358","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2925505186","conversationType":1,"userID":"2925505186","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2926374953","conversationType":1,"userID":"2926374953","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2926503784","conversationType":1,"userID":"2926503784","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2930942211","conversationType":1,"userID":"2930942211","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2933186791","conversationType":1,"userID":"2933186791","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2933595653","conversationType":1,"userID":"2933595653","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2934198637","conversationType":1,"userID":"2934198637","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2938766916","conversationType":1,"userID":"2938766916","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2940372216","conversationType":1,"userID":"2940372216","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2942822451","conversationType":1,"userID":"2942822451","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2945631149","conversationType":1,"userID":"2945631149","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2945766167","conversationType":1,"userID":"2945766167","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2951042955","conversationType":1,"userID":"2951042955","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2951333723","conversationType":1,"userID":"2951333723","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2956182974","conversationType":1,"userID":"2956182974","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2956222225","conversationType":1,"userID":"2956222225","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2958242148","conversationType":1,"userID":"2958242148","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2960809325","conversationType":1,"userID":"2960809325","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2961176761","conversationType":1,"userID":"2961176761","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2962214402","conversationType":1,"userID":"2962214402","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2962770393","conversationType":1,"userID":"2962770393","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2962834146","conversationType":1,"userID":"2962834146","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2963659057","conversationType":1,"userID":"2963659057","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2964634883","conversationType":1,"userID":"2964634883","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2965951542","conversationType":1,"userID":"2965951542","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2966958326","conversationType":1,"userID":"2966958326","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2970863091","conversationType":1,"userID":"2970863091","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2970994891","conversationType":1,"userID":"2970994891","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2974929762","conversationType":1,"userID":"2974929762","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2975162313","conversationType":1,"userID":"2975162313","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2975409554","conversationType":1,"userID":"2975409554","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2975431366","conversationType":1,"userID":"2975431366","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2975597555","conversationType":1,"userID":"2975597555","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2980893666","conversationType":1,"userID":"2980893666","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2981246162","conversationType":1,"userID":"2981246162","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2982000585","conversationType":1,"userID":"2982000585","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2984741494","conversationType":1,"userID":"2984741494","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2987214012","conversationType":1,"userID":"2987214012","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2991969100","conversationType":1,"userID":"2991969100","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2992114349","conversationType":1,"userID":"2992114349","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_2997093071","conversationType":1,"userID":"2997093071","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2997317644","conversationType":1,"userID":"2997317644","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_2998067487","conversationType":1,"userID":"2998067487","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3002397383","conversationType":1,"userID":"3002397383","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3004935297","conversationType":1,"userID":"3004935297","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3004971629","conversationType":1,"userID":"3004971629","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3007515052","conversationType":1,"userID":"3007515052","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3011324233","conversationType":1,"userID":"3011324233","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3013893349","conversationType":1,"userID":"3013893349","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3017062485","conversationType":1,"userID":"3017062485","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3020676146","conversationType":1,"userID":"3020676146","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3023379234","conversationType":1,"userID":"3023379234","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3023473057","conversationType":1,"userID":"3023473057","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3023583215","conversationType":1,"userID":"3023583215","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3025087621","conversationType":1,"userID":"3025087621","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3028489935","conversationType":1,"userID":"3028489935","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3029281130","conversationType":1,"userID":"3029281130","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3030995041","conversationType":1,"userID":"3030995041","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3037865872","conversationType":1,"userID":"3037865872","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3045192605","conversationType":1,"userID":"3045192605","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3047161541","conversationType":1,"userID":"3047161541","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3048025260","conversationType":1,"userID":"3048025260","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3049658867","conversationType":1,"userID":"3049658867","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3053433727","conversationType":1,"userID":"3053433727","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3057735982","conversationType":1,"userID":"3057735982","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3064262697","conversationType":1,"userID":"3064262697","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3067600722","conversationType":1,"userID":"3067600722","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3068103002","conversationType":1,"userID":"3068103002","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3072683488","conversationType":1,"userID":"3072683488","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3075650257","conversationType":1,"userID":"3075650257","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3079018235","conversationType":1,"userID":"3079018235","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3083415284","conversationType":1,"userID":"3083415284","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3086885146","conversationType":1,"userID":"3086885146","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3088309970","conversationType":1,"userID":"3088309970","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3089530163","conversationType":1,"userID":"3089530163","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3093774659","conversationType":1,"userID":"3093774659","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3094251676","conversationType":1,"userID":"3094251676","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3100574492","conversationType":1,"userID":"3100574492","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3100927824","conversationType":1,"userID":"3100927824","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3107511955","conversationType":1,"userID":"3107511955","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3107872821","conversationType":1,"userID":"3107872821","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3110900347","conversationType":1,"userID":"3110900347","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3114125867","conversationType":1,"userID":"3114125867","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3115019608","conversationType":1,"userID":"3115019608","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3115148556","conversationType":1,"userID":"3115148556","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3117863124","conversationType":1,"userID":"3117863124","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3117943962","conversationType":1,"userID":"3117943962","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3119418753","conversationType":1,"userID":"3119418753","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3119660813","conversationType":1,"userID":"3119660813","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3120559487","conversationType":1,"userID":"3120559487","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3121454753","conversationType":1,"userID":"3121454753","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3129026839","conversationType":1,"userID":"3129026839","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3132656179","conversationType":1,"userID":"3132656179","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3133075625","conversationType":1,"userID":"3133075625","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3134278325","conversationType":1,"userID":"3134278325","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3134537845","conversationType":1,"userID":"3134537845","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3139569060","conversationType":1,"userID":"3139569060","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3140420968","conversationType":1,"userID":"3140420968","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3140450276","conversationType":1,"userID":"3140450276","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3150135159","conversationType":1,"userID":"3150135159","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3153752108","conversationType":1,"userID":"3153752108","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3156827214","conversationType":1,"userID":"3156827214","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3162271972","conversationType":1,"userID":"3162271972","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3163653728","conversationType":1,"userID":"3163653728","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3164446436","conversationType":1,"userID":"3164446436","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3168796642","conversationType":1,"userID":"3168796642","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3169244622","conversationType":1,"userID":"3169244622","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3173403446","conversationType":1,"userID":"3173403446","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3173756579","conversationType":1,"userID":"3173756579","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3176223906","conversationType":1,"userID":"3176223906","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3177929240","conversationType":1,"userID":"3177929240","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3179190302","conversationType":1,"userID":"3179190302","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3189972504","conversationType":1,"userID":"3189972504","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3190912448","conversationType":1,"userID":"3190912448","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3192054345","conversationType":1,"userID":"3192054345","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3192218781","conversationType":1,"userID":"3192218781","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3192583468","conversationType":1,"userID":"3192583468","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3193592046","conversationType":1,"userID":"3193592046","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3196192331","conversationType":1,"userID":"3196192331","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3196958921","conversationType":1,"userID":"3196958921","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3197083869","conversationType":1,"userID":"3197083869","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3199458860","conversationType":1,"userID":"3199458860","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3199820791","conversationType":1,"userID":"3199820791","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3200133119","conversationType":1,"userID":"3200133119","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3200607575","conversationType":1,"userID":"3200607575","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3200726264","conversationType":1,"userID":"3200726264","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3204690068","conversationType":1,"userID":"3204690068","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3204832902","conversationType":1,"userID":"3204832902","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3205080439","conversationType":1,"userID":"3205080439","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3206443553","conversationType":1,"userID":"3206443553","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3206742093","conversationType":1,"userID":"3206742093","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3214502593","conversationType":1,"userID":"3214502593","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3217427070","conversationType":1,"userID":"3217427070","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3217545671","conversationType":1,"userID":"3217545671","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3218274782","conversationType":1,"userID":"3218274782","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3220549850","conversationType":1,"userID":"3220549850","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3221190872","conversationType":1,"userID":"3221190872","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3221229320","conversationType":1,"userID":"3221229320","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3224221765","conversationType":1,"userID":"3224221765","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3224719808","conversationType":1,"userID":"3224719808","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3227148059","conversationType":1,"userID":"3227148059","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3229531095","conversationType":1,"userID":"3229531095","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3233270846","conversationType":1,"userID":"3233270846","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3235316541","conversationType":1,"userID":"3235316541","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3235668582","conversationType":1,"userID":"3235668582","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3237793462","conversationType":1,"userID":"3237793462","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3238659031","conversationType":1,"userID":"3238659031","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3238674643","conversationType":1,"userID":"3238674643","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3240646453","conversationType":1,"userID":"3240646453","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3241132141","conversationType":1,"userID":"3241132141","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3249909086","conversationType":1,"userID":"3249909086","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3249918280","conversationType":1,"userID":"3249918280","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3249933654","conversationType":1,"userID":"3249933654","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3250005519","conversationType":1,"userID":"3250005519","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3250579894","conversationType":1,"userID":"3250579894","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3251649871","conversationType":1,"userID":"3251649871","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3261157334","conversationType":1,"userID":"3261157334","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3261456614","conversationType":1,"userID":"3261456614","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3263416246","conversationType":1,"userID":"3263416246","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3268693150","conversationType":1,"userID":"3268693150","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3269425301","conversationType":1,"userID":"3269425301","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3270681057","conversationType":1,"userID":"3270681057","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3276126003","conversationType":1,"userID":"3276126003","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3277113648","conversationType":1,"userID":"3277113648","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3277330401","conversationType":1,"userID":"3277330401","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3277768810","conversationType":1,"userID":"3277768810","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3279927933","conversationType":1,"userID":"3279927933","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3284080283","conversationType":1,"userID":"3284080283","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3285780245","conversationType":1,"userID":"3285780245","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3286756773","conversationType":1,"userID":"3286756773","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3290255065","conversationType":1,"userID":"3290255065","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3295857972","conversationType":1,"userID":"3295857972","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3297069764","conversationType":1,"userID":"3297069764","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3300998316","conversationType":1,"userID":"3300998316","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3305731505","conversationType":1,"userID":"3305731505","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3307929768","conversationType":1,"userID":"3307929768","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3308461087","conversationType":1,"userID":"3308461087","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3309832576","conversationType":1,"userID":"3309832576","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3311609122","conversationType":1,"userID":"3311609122","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3312811998","conversationType":1,"userID":"3312811998","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3320730621","conversationType":1,"userID":"3320730621","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3322768391","conversationType":1,"userID":"3322768391","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3324817195","conversationType":1,"userID":"3324817195","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3325246129","conversationType":1,"userID":"3325246129","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3325428510","conversationType":1,"userID":"3325428510","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3327563110","conversationType":1,"userID":"3327563110","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3328438853","conversationType":1,"userID":"3328438853","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3330044431","conversationType":1,"userID":"3330044431","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3332502663","conversationType":1,"userID":"3332502663","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3335253060","conversationType":1,"userID":"3335253060","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3335272940","conversationType":1,"userID":"3335272940","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3336527674","conversationType":1,"userID":"3336527674","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3340382285","conversationType":1,"userID":"3340382285","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3340940320","conversationType":1,"userID":"3340940320","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3348455039","conversationType":1,"userID":"3348455039","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3349762211","conversationType":1,"userID":"3349762211","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3351106700","conversationType":1,"userID":"3351106700","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3351467437","conversationType":1,"userID":"3351467437","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3352768401","conversationType":1,"userID":"3352768401","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3355860649","conversationType":1,"userID":"3355860649","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3356152522","conversationType":1,"userID":"3356152522","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3357676251","conversationType":1,"userID":"3357676251","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3360234875","conversationType":1,"userID":"3360234875","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3361047963","conversationType":1,"userID":"3361047963","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3362215269","conversationType":1,"userID":"3362215269","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3367952952","conversationType":1,"userID":"3367952952","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3370281252","conversationType":1,"userID":"3370281252","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3372906588","conversationType":1,"userID":"3372906588","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3378171880","conversationType":1,"userID":"3378171880","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3380521639","conversationType":1,"userID":"3380521639","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3384044960","conversationType":1,"userID":"3384044960","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3384056544","conversationType":1,"userID":"3384056544","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3384401195","conversationType":1,"userID":"3384401195","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3387336082","conversationType":1,"userID":"3387336082","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3390583172","conversationType":1,"userID":"3390583172","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3394129159","conversationType":1,"userID":"3394129159","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3396066359","conversationType":1,"userID":"3396066359","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3396711993","conversationType":1,"userID":"3396711993","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3397676820","conversationType":1,"userID":"3397676820","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3401196714","conversationType":1,"userID":"3401196714","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3402038544","conversationType":1,"userID":"3402038544","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3405014751","conversationType":1,"userID":"3405014751","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3405537375","conversationType":1,"userID":"3405537375","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3408547602","conversationType":1,"userID":"3408547602","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3413094703","conversationType":1,"userID":"3413094703","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3414693763","conversationType":1,"userID":"3414693763","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3417649963","conversationType":1,"userID":"3417649963","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3418101290","conversationType":1,"userID":"3418101290","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3418577436","conversationType":1,"userID":"3418577436","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3420613648","conversationType":1,"userID":"3420613648","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3423009410","conversationType":1,"userID":"3423009410","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3424164248","conversationType":1,"userID":"3424164248","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3424790937","conversationType":1,"userID":"3424790937","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3424924792","conversationType":1,"userID":"3424924792","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3427883907","conversationType":1,"userID":"3427883907","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3430278208","conversationType":1,"userID":"3430278208","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3435189401","conversationType":1,"userID":"3435189401","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3435706047","conversationType":1,"userID":"3435706047","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3441335163","conversationType":1,"userID":"3441335163","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3442471610","conversationType":1,"userID":"3442471610","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3444204020","conversationType":1,"userID":"3444204020","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3447932943","conversationType":1,"userID":"3447932943","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3451045692","conversationType":1,"userID":"3451045692","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3452044353","conversationType":1,"userID":"3452044353","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3454057246","conversationType":1,"userID":"3454057246","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3456754627","conversationType":1,"userID":"3456754627","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3463065880","conversationType":1,"userID":"3463065880","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3463544352","conversationType":1,"userID":"3463544352","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3469803158","conversationType":1,"userID":"3469803158","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3470375736","conversationType":1,"userID":"3470375736","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3470728766","conversationType":1,"userID":"3470728766","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3471363726","conversationType":1,"userID":"3471363726","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3473799316","conversationType":1,"userID":"3473799316","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3476401940","conversationType":1,"userID":"3476401940","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3479250495","conversationType":1,"userID":"3479250495","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3482885129","conversationType":1,"userID":"3482885129","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3483519033","conversationType":1,"userID":"3483519033","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3485197519","conversationType":1,"userID":"3485197519","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3485222434","conversationType":1,"userID":"3485222434","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3487505389","conversationType":1,"userID":"3487505389","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3488662042","conversationType":1,"userID":"3488662042","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3489712763","conversationType":1,"userID":"3489712763","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3489831359","conversationType":1,"userID":"3489831359","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3489929329","conversationType":1,"userID":"3489929329","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3493014269","conversationType":1,"userID":"3493014269","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3495022341","conversationType":1,"userID":"3495022341","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3502864403","conversationType":1,"userID":"3502864403","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3509756342","conversationType":1,"userID":"3509756342","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3512321008","conversationType":1,"userID":"3512321008","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3517778099","conversationType":1,"userID":"3517778099","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3521826845","conversationType":1,"userID":"3521826845","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3522449211","conversationType":1,"userID":"3522449211","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3525517047","conversationType":1,"userID":"3525517047","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3526379994","conversationType":1,"userID":"3526379994","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3528275239","conversationType":1,"userID":"3528275239","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3529802775","conversationType":1,"userID":"3529802775","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3530383327","conversationType":1,"userID":"3530383327","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3530810171","conversationType":1,"userID":"3530810171","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3532135718","conversationType":1,"userID":"3532135718","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3534795134","conversationType":1,"userID":"3534795134","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3534802796","conversationType":1,"userID":"3534802796","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3537220722","conversationType":1,"userID":"3537220722","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3538940238","conversationType":1,"userID":"3538940238","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3541443626","conversationType":1,"userID":"3541443626","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3542101940","conversationType":1,"userID":"3542101940","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3546255283","conversationType":1,"userID":"3546255283","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3547273883","conversationType":1,"userID":"3547273883","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3547752374","conversationType":1,"userID":"3547752374","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3550065953","conversationType":1,"userID":"3550065953","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3551589140","conversationType":1,"userID":"3551589140","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3554401652","conversationType":1,"userID":"3554401652","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3555750545","conversationType":1,"userID":"3555750545","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3560303364","conversationType":1,"userID":"3560303364","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3561370203","conversationType":1,"userID":"3561370203","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3564564648","conversationType":1,"userID":"3564564648","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3565888306","conversationType":1,"userID":"3565888306","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3567031924","conversationType":1,"userID":"3567031924","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3570607148","conversationType":1,"userID":"3570607148","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3570742368","conversationType":1,"userID":"3570742368","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3571074829","conversationType":1,"userID":"3571074829","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3571143305","conversationType":1,"userID":"3571143305","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3573077275","conversationType":1,"userID":"3573077275","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3574516380","conversationType":1,"userID":"3574516380","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3578633137","conversationType":1,"userID":"3578633137","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3580853228","conversationType":1,"userID":"3580853228","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3583713307","conversationType":1,"userID":"3583713307","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3583831504","conversationType":1,"userID":"3583831504","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3583855819","conversationType":1,"userID":"3583855819","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3586015547","conversationType":1,"userID":"3586015547","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3591643599","conversationType":1,"userID":"3591643599","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3593797495","conversationType":1,"userID":"3593797495","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3595322825","conversationType":1,"userID":"3595322825","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3598806139","conversationType":1,"userID":"3598806139","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3599088167","conversationType":1,"userID":"3599088167","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3602243749","conversationType":1,"userID":"3602243749","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3602775150","conversationType":1,"userID":"3602775150","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3602955381","conversationType":1,"userID":"3602955381","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3603216444","conversationType":1,"userID":"3603216444","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3603394766","conversationType":1,"userID":"3603394766","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3605112122","conversationType":1,"userID":"3605112122","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3605477209","conversationType":1,"userID":"3605477209","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3605639507","conversationType":1,"userID":"3605639507","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3611690609","conversationType":1,"userID":"3611690609","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3611757660","conversationType":1,"userID":"3611757660","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3613869101","conversationType":1,"userID":"3613869101","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3613993751","conversationType":1,"userID":"3613993751","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3617325444","conversationType":1,"userID":"3617325444","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3625321133","conversationType":1,"userID":"3625321133","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3625514157","conversationType":1,"userID":"3625514157","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3628521511","conversationType":1,"userID":"3628521511","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3633193427","conversationType":1,"userID":"3633193427","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3635232898","conversationType":1,"userID":"3635232898","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3637960024","conversationType":1,"userID":"3637960024","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3641418034","conversationType":1,"userID":"3641418034","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3643765049","conversationType":1,"userID":"3643765049","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3645011153","conversationType":1,"userID":"3645011153","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3650402223","conversationType":1,"userID":"3650402223","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3654269967","conversationType":1,"userID":"3654269967","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3655173277","conversationType":1,"userID":"3655173277","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3656425275","conversationType":1,"userID":"3656425275","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3656507690","conversationType":1,"userID":"3656507690","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3656865963","conversationType":1,"userID":"3656865963","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3668055835","conversationType":1,"userID":"3668055835","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3668313451","conversationType":1,"userID":"3668313451","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3679618679","conversationType":1,"userID":"3679618679","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3681367317","conversationType":1,"userID":"3681367317","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3682601398","conversationType":1,"userID":"3682601398","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3685670989","conversationType":1,"userID":"3685670989","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3688737567","conversationType":1,"userID":"3688737567","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3689984008","conversationType":1,"userID":"3689984008","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3693010460","conversationType":1,"userID":"3693010460","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3693972131","conversationType":1,"userID":"3693972131","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3697152375","conversationType":1,"userID":"3697152375","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3697628542","conversationType":1,"userID":"3697628542","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3701246521","conversationType":1,"userID":"3701246521","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3707971244","conversationType":1,"userID":"3707971244","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3708535808","conversationType":1,"userID":"3708535808","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3709292948","conversationType":1,"userID":"3709292948","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3710967864","conversationType":1,"userID":"3710967864","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3715277438","conversationType":0,"userID":"3715277438","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3719131896","conversationType":1,"userID":"3719131896","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3720515485","conversationType":1,"userID":"3720515485","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3724651470","conversationType":1,"userID":"3724651470","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3727425498","conversationType":1,"userID":"3727425498","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3732248827","conversationType":1,"userID":"3732248827","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3737685096","conversationType":1,"userID":"3737685096","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3739320072","conversationType":1,"userID":"3739320072","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3739899757","conversationType":1,"userID":"3739899757","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3739934262","conversationType":1,"userID":"3739934262","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3741079018","conversationType":1,"userID":"3741079018","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3748470665","conversationType":1,"userID":"3748470665","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3750772349","conversationType":1,"userID":"3750772349","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3750980145","conversationType":1,"userID":"3750980145","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3751457430","conversationType":1,"userID":"3751457430","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3755727328","conversationType":1,"userID":"3755727328","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3765484234","conversationType":1,"userID":"3765484234","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3766915245","conversationType":1,"userID":"3766915245","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3767972548","conversationType":1,"userID":"3767972548","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3768320302","conversationType":1,"userID":"3768320302","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3777699354","conversationType":1,"userID":"3777699354","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3778574807","conversationType":1,"userID":"3778574807","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3781524005","conversationType":1,"userID":"3781524005","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3782300709","conversationType":1,"userID":"3782300709","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3786464348","conversationType":1,"userID":"3786464348","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3787170103","conversationType":1,"userID":"3787170103","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3787639127","conversationType":1,"userID":"3787639127","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3788067433","conversationType":1,"userID":"3788067433","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3789077505","conversationType":1,"userID":"3789077505","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3789393466","conversationType":1,"userID":"3789393466","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3789622986","conversationType":1,"userID":"3789622986","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3790708319","conversationType":1,"userID":"3790708319","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3791452062","conversationType":1,"userID":"3791452062","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3796678904","conversationType":1,"userID":"3796678904","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3799378960","conversationType":1,"userID":"3799378960","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3800330261","conversationType":1,"userID":"3800330261","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3800799958","conversationType":1,"userID":"3800799958","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3801184840","conversationType":1,"userID":"3801184840","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3801465816","conversationType":1,"userID":"3801465816","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3802153805","conversationType":1,"userID":"3802153805","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3803355027","conversationType":1,"userID":"3803355027","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3803994837","conversationType":1,"userID":"3803994837","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3804444798","conversationType":1,"userID":"3804444798","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3805642017","conversationType":1,"userID":"3805642017","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3812987647","conversationType":1,"userID":"3812987647","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3824382983","conversationType":1,"userID":"3824382983","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3826712907","conversationType":1,"userID":"3826712907","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3832386746","conversationType":1,"userID":"3832386746","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3834703974","conversationType":1,"userID":"3834703974","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3834757485","conversationType":1,"userID":"3834757485","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3838004574","conversationType":1,"userID":"3838004574","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3839699134","conversationType":1,"userID":"3839699134","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3840194843","conversationType":1,"userID":"3840194843","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3843602112","conversationType":1,"userID":"3843602112","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3844179588","conversationType":1,"userID":"3844179588","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3844296459","conversationType":1,"userID":"3844296459","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3845663923","conversationType":1,"userID":"3845663923","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3847693332","conversationType":1,"userID":"3847693332","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3849018031","conversationType":1,"userID":"3849018031","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3851012114","conversationType":1,"userID":"3851012114","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3851727632","conversationType":1,"userID":"3851727632","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3853166116","conversationType":1,"userID":"3853166116","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3855555410","conversationType":1,"userID":"3855555410","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3859980461","conversationType":1,"userID":"3859980461","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3860769487","conversationType":1,"userID":"3860769487","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3862147424","conversationType":1,"userID":"3862147424","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3862854837","conversationType":1,"userID":"3862854837","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3868556005","conversationType":1,"userID":"3868556005","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3868811660","conversationType":1,"userID":"3868811660","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3869241646","conversationType":1,"userID":"3869241646","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3870370757","conversationType":1,"userID":"3870370757","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3872108589","conversationType":1,"userID":"3872108589","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3872601320","conversationType":1,"userID":"3872601320","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3879871786","conversationType":1,"userID":"3879871786","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3882316983","conversationType":1,"userID":"3882316983","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3894253605","conversationType":1,"userID":"3894253605","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3895447084","conversationType":1,"userID":"3895447084","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3897778874","conversationType":1,"userID":"3897778874","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3899444240","conversationType":1,"userID":"3899444240","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3902232278","conversationType":1,"userID":"3902232278","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3910602054","conversationType":1,"userID":"3910602054","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3912740754","conversationType":1,"userID":"3912740754","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3913129073","conversationType":1,"userID":"3913129073","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3919312406","conversationType":1,"userID":"3919312406","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3922682136","conversationType":1,"userID":"3922682136","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3923864156","conversationType":1,"userID":"3923864156","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3926463720","conversationType":1,"userID":"3926463720","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3927572489","conversationType":1,"userID":"3927572489","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3928216074","conversationType":1,"userID":"3928216074","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3931186398","conversationType":1,"userID":"3931186398","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3932374393","conversationType":1,"userID":"3932374393","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3932990255","conversationType":1,"userID":"3932990255","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3935071086","conversationType":1,"userID":"3935071086","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3936773930","conversationType":1,"userID":"3936773930","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3937424438","conversationType":1,"userID":"3937424438","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3939590154","conversationType":1,"userID":"3939590154","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3939999665","conversationType":1,"userID":"3939999665","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3940445356","conversationType":1,"userID":"3940445356","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3947763668","conversationType":1,"userID":"3947763668","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3950148404","conversationType":1,"userID":"3950148404","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3950757937","conversationType":1,"userID":"3950757937","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3951978865","conversationType":1,"userID":"3951978865","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3954641888","conversationType":1,"userID":"3954641888","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3958284610","conversationType":1,"userID":"3958284610","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3960310198","conversationType":1,"userID":"3960310198","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3962502361","conversationType":1,"userID":"3962502361","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3962961610","conversationType":1,"userID":"3962961610","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3963709279","conversationType":1,"userID":"3963709279","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3963875243","conversationType":1,"userID":"3963875243","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3965483986","conversationType":1,"userID":"3965483986","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3965647724","conversationType":1,"userID":"3965647724","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3971926306","conversationType":1,"userID":"3971926306","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3971967127","conversationType":1,"userID":"3971967127","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3973845314","conversationType":1,"userID":"3973845314","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3974823781","conversationType":1,"userID":"3974823781","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3974913605","conversationType":1,"userID":"3974913605","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3982399444","conversationType":1,"userID":"3982399444","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3984192272","conversationType":1,"userID":"3984192272","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3985353822","conversationType":1,"userID":"3985353822","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3985432997","conversationType":1,"userID":"3985432997","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3987941559","conversationType":1,"userID":"3987941559","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3989782521","conversationType":1,"userID":"3989782521","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3991660838","conversationType":1,"userID":"3991660838","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3992722755","conversationType":1,"userID":"3992722755","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3993861435","conversationType":1,"userID":"3993861435","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3994384158","conversationType":1,"userID":"3994384158","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3995365114","conversationType":1,"userID":"3995365114","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_3995872443","conversationType":1,"userID":"3995872443","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_3999001279","conversationType":1,"userID":"3999001279","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4000650991","conversationType":1,"userID":"4000650991","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4001754506","conversationType":1,"userID":"4001754506","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4002821549","conversationType":1,"userID":"4002821549","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4008031414","conversationType":1,"userID":"4008031414","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4009086415","conversationType":1,"userID":"4009086415","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4010963995","conversationType":1,"userID":"4010963995","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4012541644","conversationType":1,"userID":"4012541644","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4013309319","conversationType":1,"userID":"4013309319","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":true,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4015475256","conversationType":1,"userID":"4015475256","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4019194868","conversationType":1,"userID":"4019194868","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4019430612","conversationType":1,"userID":"4019430612","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4023329658","conversationType":1,"userID":"4023329658","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4023669015","conversationType":1,"userID":"4023669015","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4024116306","conversationType":1,"userID":"4024116306","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4026813737","conversationType":1,"userID":"4026813737","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4026917269","conversationType":1,"userID":"4026917269","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4031972755","conversationType":1,"userID":"4031972755","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4039256136","conversationType":1,"userID":"4039256136","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4041344265","conversationType":1,"userID":"4041344265","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4049223183","conversationType":1,"userID":"4049223183","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4049340883","conversationType":1,"userID":"4049340883","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4049517000","conversationType":1,"userID":"4049517000","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4053284890","conversationType":1,"userID":"4053284890","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4055940070","conversationType":1,"userID":"4055940070","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4057171904","conversationType":1,"userID":"4057171904","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4064402118","conversationType":1,"userID":"4064402118","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4067008127","conversationType":1,"userID":"4067008127","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4070197417","conversationType":1,"userID":"4070197417","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4072022438","conversationType":1,"userID":"4072022438","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4079084055","conversationType":1,"userID":"4079084055","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4080264659","conversationType":1,"userID":"4080264659","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4080738041","conversationType":1,"userID":"4080738041","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4082103573","conversationType":1,"userID":"4082103573","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4085376424","conversationType":1,"userID":"4085376424","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4087789327","conversationType":1,"userID":"4087789327","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4091428240","conversationType":1,"userID":"4091428240","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4091541801","conversationType":1,"userID":"4091541801","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4093701989","conversationType":1,"userID":"4093701989","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4094740281","conversationType":1,"userID":"4094740281","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4095191329","conversationType":1,"userID":"4095191329","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4096170064","conversationType":1,"userID":"4096170064","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4102041542","conversationType":1,"userID":"4102041542","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4105734635","conversationType":1,"userID":"4105734635","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4107410993","conversationType":1,"userID":"4107410993","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4111442760","conversationType":1,"userID":"4111442760","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4113687442","conversationType":1,"userID":"4113687442","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4113735582","conversationType":1,"userID":"4113735582","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4114891625","conversationType":1,"userID":"4114891625","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4116383143","conversationType":1,"userID":"4116383143","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4117212022","conversationType":1,"userID":"4117212022","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4118659143","conversationType":1,"userID":"4118659143","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4119796562","conversationType":1,"userID":"4119796562","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4121091576","conversationType":1,"userID":"4121091576","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4121196365","conversationType":1,"userID":"4121196365","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4122315779","conversationType":1,"userID":"4122315779","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4122387753","conversationType":1,"userID":"4122387753","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4124281952","conversationType":1,"userID":"4124281952","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4124733788","conversationType":1,"userID":"4124733788","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4127687270","conversationType":1,"userID":"4127687270","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4130100082","conversationType":1,"userID":"4130100082","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4134217728","conversationType":1,"userID":"4134217728","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4140617939","conversationType":1,"userID":"4140617939","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4142553143","conversationType":1,"userID":"4142553143","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4143953359","conversationType":1,"userID":"4143953359","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4152679278","conversationType":1,"userID":"4152679278","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4155714037","conversationType":1,"userID":"4155714037","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4164499789","conversationType":1,"userID":"4164499789","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4164663659","conversationType":1,"userID":"4164663659","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4167776677","conversationType":1,"userID":"4167776677","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4169162891","conversationType":1,"userID":"4169162891","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4174741233","conversationType":1,"userID":"4174741233","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4176532281","conversationType":1,"userID":"4176532281","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4178861776","conversationType":1,"userID":"4178861776","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4180249221","conversationType":1,"userID":"4180249221","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4189886690","conversationType":1,"userID":"4189886690","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4189972689","conversationType":1,"userID":"4189972689","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4193526288","conversationType":1,"userID":"4193526288","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4195435042","conversationType":1,"userID":"4195435042","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4196155498","conversationType":1,"userID":"4196155498","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4198077672","conversationType":1,"userID":"4198077672","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4201975122","conversationType":1,"userID":"4201975122","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4202803190","conversationType":1,"userID":"4202803190","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4203267238","conversationType":1,"userID":"4203267238","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4204000340","conversationType":1,"userID":"4204000340","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4204574965","conversationType":1,"userID":"4204574965","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4209534099","conversationType":1,"userID":"4209534099","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4212105657","conversationType":1,"userID":"4212105657","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4215789737","conversationType":1,"userID":"4215789737","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4216253974","conversationType":1,"userID":"4216253974","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4216644062","conversationType":1,"userID":"4216644062","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4216757974","conversationType":1,"userID":"4216757974","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4220093768","conversationType":1,"userID":"4220093768","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4221167475","conversationType":1,"userID":"4221167475","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4221194205","conversationType":1,"userID":"4221194205","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4221983701","conversationType":1,"userID":"4221983701","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4222334962","conversationType":1,"userID":"4222334962","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4223720127","conversationType":1,"userID":"4223720127","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4226213321","conversationType":1,"userID":"4226213321","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4226237813","conversationType":1,"userID":"4226237813","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4230648979","conversationType":1,"userID":"4230648979","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4231104423","conversationType":1,"userID":"4231104423","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4233310059","conversationType":1,"userID":"4233310059","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4233425493","conversationType":1,"userID":"4233425493","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4235698714","conversationType":1,"userID":"4235698714","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4240278083","conversationType":1,"userID":"4240278083","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4242533018","conversationType":1,"userID":"4242533018","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4246570603","conversationType":1,"userID":"4246570603","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4247095598","conversationType":1,"userID":"4247095598","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4247377924","conversationType":1,"userID":"4247377924","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4252484758","conversationType":1,"userID":"4252484758","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4253127832","conversationType":1,"userID":"4253127832","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4253320786","conversationType":1,"userID":"4253320786","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4254681784","conversationType":1,"userID":"4254681784","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4257335322","conversationType":1,"userID":"4257335322","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4258660302","conversationType":1,"userID":"4258660302","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4259132146","conversationType":1,"userID":"4259132146","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4261410970","conversationType":1,"userID":"4261410970","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4264539425","conversationType":1,"userID":"4264539425","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4265720132","conversationType":1,"userID":"4265720132","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4266615651","conversationType":1,"userID":"4266615651","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4275733340","conversationType":1,"userID":"4275733340","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4284653704","conversationType":1,"userID":"4284653704","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4286070689","conversationType":1,"userID":"4286070689","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4289978919","conversationType":1,"userID":"4289978919","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4293322269","conversationType":1,"userID":"4293322269","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4293913125","conversationType":1,"userID":"4293913125","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4297395201","conversationType":1,"userID":"4297395201","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4300349125","conversationType":1,"userID":"4300349125","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4300789253","conversationType":1,"userID":"4300789253","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4302380765","conversationType":1,"userID":"4302380765","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4306527503","conversationType":1,"userID":"4306527503","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4307478992","conversationType":1,"userID":"4307478992","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4308365405","conversationType":1,"userID":"4308365405","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4313249276","conversationType":1,"userID":"4313249276","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4316352542","conversationType":1,"userID":"4316352542","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4319599306","conversationType":1,"userID":"4319599306","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4323462362","conversationType":1,"userID":"4323462362","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4324879979","conversationType":1,"userID":"4324879979","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4326656042","conversationType":1,"userID":"4326656042","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4328265262","conversationType":1,"userID":"4328265262","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4328490815","conversationType":1,"userID":"4328490815","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4328997633","conversationType":1,"userID":"4328997633","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4329402013","conversationType":1,"userID":"4329402013","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4331285657","conversationType":1,"userID":"4331285657","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4331847866","conversationType":1,"userID":"4331847866","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4332427151","conversationType":1,"userID":"4332427151","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4333324598","conversationType":1,"userID":"4333324598","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4336422144","conversationType":1,"userID":"4336422144","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4337583921","conversationType":1,"userID":"4337583921","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4340810454","conversationType":1,"userID":"4340810454","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4344723150","conversationType":1,"userID":"4344723150","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4344973084","conversationType":1,"userID":"4344973084","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4346231461","conversationType":1,"userID":"4346231461","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4346543697","conversationType":1,"userID":"4346543697","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4348082955","conversationType":1,"userID":"4348082955","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4348869517","conversationType":1,"userID":"4348869517","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4351325833","conversationType":1,"userID":"4351325833","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4356312106","conversationType":1,"userID":"4356312106","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4357320975","conversationType":1,"userID":"4357320975","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4359161104","conversationType":1,"userID":"4359161104","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4359987819","conversationType":1,"userID":"4359987819","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4363081068","conversationType":1,"userID":"4363081068","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4364213352","conversationType":1,"userID":"4364213352","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4365758115","conversationType":1,"userID":"4365758115","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4366259531","conversationType":1,"userID":"4366259531","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4366431790","conversationType":1,"userID":"4366431790","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4371536904","conversationType":1,"userID":"4371536904","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4372248137","conversationType":1,"userID":"4372248137","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4372919561","conversationType":1,"userID":"4372919561","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4378913374","conversationType":1,"userID":"4378913374","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4379253236","conversationType":1,"userID":"4379253236","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4382914823","conversationType":1,"userID":"4382914823","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4385453331","conversationType":1,"userID":"4385453331","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4385686899","conversationType":1,"userID":"4385686899","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4389192475","conversationType":1,"userID":"4389192475","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4389669728","conversationType":1,"userID":"4389669728","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4393448866","conversationType":1,"userID":"4393448866","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4401936006","conversationType":1,"userID":"4401936006","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4413764571","conversationType":1,"userID":"4413764571","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4413835259","conversationType":1,"userID":"4413835259","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4415857340","conversationType":1,"userID":"4415857340","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4419129931","conversationType":1,"userID":"4419129931","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4422224754","conversationType":1,"userID":"4422224754","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4422329530","conversationType":1,"userID":"4422329530","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4423627349","conversationType":1,"userID":"4423627349","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4426459498","conversationType":1,"userID":"4426459498","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4428304728","conversationType":1,"userID":"4428304728","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4430427191","conversationType":1,"userID":"4430427191","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4436439007","conversationType":1,"userID":"4436439007","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4440450535","conversationType":1,"userID":"4440450535","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4440534964","conversationType":1,"userID":"4440534964","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4445212300","conversationType":1,"userID":"4445212300","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4448855672","conversationType":1,"userID":"4448855672","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4449558244","conversationType":1,"userID":"4449558244","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4450360727","conversationType":1,"userID":"4450360727","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4451267516","conversationType":1,"userID":"4451267516","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4453030062","conversationType":1,"userID":"4453030062","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4453849009","conversationType":1,"userID":"4453849009","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4454612664","conversationType":1,"userID":"4454612664","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4464911980","conversationType":1,"userID":"4464911980","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4467365448","conversationType":1,"userID":"4467365448","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4475835014","conversationType":1,"userID":"4475835014","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4476306361","conversationType":1,"userID":"4476306361","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4479234419","conversationType":1,"userID":"4479234419","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4480521251","conversationType":1,"userID":"4480521251","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4481379556","conversationType":1,"userID":"4481379556","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4485043552","conversationType":1,"userID":"4485043552","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4486805078","conversationType":1,"userID":"4486805078","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4488638760","conversationType":1,"userID":"4488638760","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4493065873","conversationType":1,"userID":"4493065873","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4494156274","conversationType":1,"userID":"4494156274","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4500177587","conversationType":1,"userID":"4500177587","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4501084974","conversationType":1,"userID":"4501084974","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4501771438","conversationType":1,"userID":"4501771438","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4502082928","conversationType":1,"userID":"4502082928","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4508553291","conversationType":1,"userID":"4508553291","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4509502522","conversationType":1,"userID":"4509502522","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4510059360","conversationType":1,"userID":"4510059360","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4510938314","conversationType":1,"userID":"4510938314","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4511028690","conversationType":1,"userID":"4511028690","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4512614259","conversationType":1,"userID":"4512614259","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4513939193","conversationType":1,"userID":"4513939193","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4514515621","conversationType":1,"userID":"4514515621","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4515124280","conversationType":1,"userID":"4515124280","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4518410219","conversationType":1,"userID":"4518410219","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4519437471","conversationType":1,"userID":"4519437471","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4521618779","conversationType":1,"userID":"4521618779","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4526705625","conversationType":1,"userID":"4526705625","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4530769942","conversationType":1,"userID":"4530769942","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4534383505","conversationType":1,"userID":"4534383505","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4536976003","conversationType":1,"userID":"4536976003","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4537133650","conversationType":1,"userID":"4537133650","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4539505962","conversationType":1,"userID":"4539505962","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4541622211","conversationType":1,"userID":"4541622211","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4542445708","conversationType":1,"userID":"4542445708","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4546854512","conversationType":1,"userID":"4546854512","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4547179316","conversationType":1,"userID":"4547179316","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4549986255","conversationType":1,"userID":"4549986255","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4551538686","conversationType":1,"userID":"4551538686","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4553582795","conversationType":1,"userID":"4553582795","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4554875439","conversationType":1,"userID":"4554875439","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4555507970","conversationType":1,"userID":"4555507970","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4558664801","conversationType":1,"userID":"4558664801","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4559881917","conversationType":1,"userID":"4559881917","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4560543353","conversationType":1,"userID":"4560543353","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4568092882","conversationType":1,"userID":"4568092882","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4569177198","conversationType":1,"userID":"4569177198","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4569497081","conversationType":1,"userID":"4569497081","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4576249771","conversationType":1,"userID":"4576249771","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4576673457","conversationType":1,"userID":"4576673457","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4576871044","conversationType":1,"userID":"4576871044","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4578601959","conversationType":1,"userID":"4578601959","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4583274239","conversationType":1,"userID":"4583274239","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4585412233","conversationType":1,"userID":"4585412233","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4589334066","conversationType":1,"userID":"4589334066","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4590290601","conversationType":1,"userID":"4590290601","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4591244785","conversationType":1,"userID":"4591244785","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4594001188","conversationType":1,"userID":"4594001188","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4596532610","conversationType":1,"userID":"4596532610","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4596959443","conversationType":1,"userID":"4596959443","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4597354478","conversationType":1,"userID":"4597354478","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4598359368","conversationType":1,"userID":"4598359368","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4600766877","conversationType":1,"userID":"4600766877","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4601563033","conversationType":1,"userID":"4601563033","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4601951290","conversationType":1,"userID":"4601951290","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4604489387","conversationType":1,"userID":"4604489387","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4605716056","conversationType":1,"userID":"4605716056","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4609025266","conversationType":1,"userID":"4609025266","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4610709176","conversationType":1,"userID":"4610709176","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4612931477","conversationType":1,"userID":"4612931477","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4613234206","conversationType":1,"userID":"4613234206","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4613808391","conversationType":1,"userID":"4613808391","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4614771183","conversationType":1,"userID":"4614771183","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4615063306","conversationType":1,"userID":"4615063306","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4615500844","conversationType":1,"userID":"4615500844","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4616348536","conversationType":1,"userID":"4616348536","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4617886925","conversationType":1,"userID":"4617886925","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4627372556","conversationType":1,"userID":"4627372556","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4627757948","conversationType":1,"userID":"4627757948","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4628456484","conversationType":1,"userID":"4628456484","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4631480818","conversationType":1,"userID":"4631480818","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4636565947","conversationType":1,"userID":"4636565947","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4641688133","conversationType":1,"userID":"4641688133","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4641774210","conversationType":1,"userID":"4641774210","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4644188070","conversationType":1,"userID":"4644188070","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4647156540","conversationType":1,"userID":"4647156540","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4647392322","conversationType":1,"userID":"4647392322","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4648916002","conversationType":1,"userID":"4648916002","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4650957151","conversationType":1,"userID":"4650957151","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4654851468","conversationType":1,"userID":"4654851468","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4655129542","conversationType":1,"userID":"4655129542","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4655516792","conversationType":1,"userID":"4655516792","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4662755661","conversationType":1,"userID":"4662755661","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4663715535","conversationType":1,"userID":"4663715535","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4667739897","conversationType":1,"userID":"4667739897","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4668099372","conversationType":1,"userID":"4668099372","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4671482518","conversationType":1,"userID":"4671482518","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4672885387","conversationType":1,"userID":"4672885387","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4674991198","conversationType":1,"userID":"4674991198","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4678037588","conversationType":1,"userID":"4678037588","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4681582191","conversationType":1,"userID":"4681582191","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4685588650","conversationType":1,"userID":"4685588650","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4687007131","conversationType":1,"userID":"4687007131","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4689169233","conversationType":1,"userID":"4689169233","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4689278818","conversationType":1,"userID":"4689278818","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4689925923","conversationType":1,"userID":"4689925923","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4698451133","conversationType":1,"userID":"4698451133","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4699751551","conversationType":1,"userID":"4699751551","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4700799522","conversationType":1,"userID":"4700799522","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4701844957","conversationType":1,"userID":"4701844957","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4701865718","conversationType":1,"userID":"4701865718","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4702935618","conversationType":1,"userID":"4702935618","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4704979905","conversationType":1,"userID":"4704979905","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4705713217","conversationType":1,"userID":"4705713217","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4710682050","conversationType":1,"userID":"4710682050","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4711741755","conversationType":1,"userID":"4711741755","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4714470295","conversationType":1,"userID":"4714470295","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4715090983","conversationType":1,"userID":"4715090983","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4716126862","conversationType":1,"userID":"4716126862","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4717198450","conversationType":1,"userID":"4717198450","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4718128155","conversationType":1,"userID":"4718128155","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4718771983","conversationType":1,"userID":"4718771983","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4721455080","conversationType":1,"userID":"4721455080","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4732324211","conversationType":1,"userID":"4732324211","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4732620707","conversationType":1,"userID":"4732620707","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4733304576","conversationType":1,"userID":"4733304576","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4738033186","conversationType":1,"userID":"4738033186","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4741130938","conversationType":1,"userID":"4741130938","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4742854958","conversationType":1,"userID":"4742854958","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4748156889","conversationType":1,"userID":"4748156889","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4749302175","conversationType":1,"userID":"4749302175","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4752930364","conversationType":1,"userID":"4752930364","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4754517682","conversationType":1,"userID":"4754517682","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4754852664","conversationType":1,"userID":"4754852664","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4755574168","conversationType":1,"userID":"4755574168","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4757807995","conversationType":1,"userID":"4757807995","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4764613832","conversationType":1,"userID":"4764613832","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4767981688","conversationType":1,"userID":"4767981688","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4774906057","conversationType":1,"userID":"4774906057","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4780839267","conversationType":1,"userID":"4780839267","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4785165125","conversationType":1,"userID":"4785165125","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4785606051","conversationType":1,"userID":"4785606051","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4786954344","conversationType":1,"userID":"4786954344","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4791442681","conversationType":1,"userID":"4791442681","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4794115560","conversationType":1,"userID":"4794115560","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4802965282","conversationType":1,"userID":"4802965282","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4805646202","conversationType":1,"userID":"4805646202","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4819622986","conversationType":1,"userID":"4819622986","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4821224168","conversationType":1,"userID":"4821224168","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4823617060","conversationType":1,"userID":"4823617060","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4824619122","conversationType":1,"userID":"4824619122","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4829651300","conversationType":1,"userID":"4829651300","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4832615071","conversationType":1,"userID":"4832615071","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4833342766","conversationType":1,"userID":"4833342766","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4834232511","conversationType":1,"userID":"4834232511","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4834281814","conversationType":1,"userID":"4834281814","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4834690774","conversationType":1,"userID":"4834690774","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4835033409","conversationType":1,"userID":"4835033409","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4835400415","conversationType":1,"userID":"4835400415","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4840588859","conversationType":1,"userID":"4840588859","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4846054480","conversationType":1,"userID":"4846054480","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4849669261","conversationType":1,"userID":"4849669261","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4849985881","conversationType":1,"userID":"4849985881","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4850514972","conversationType":1,"userID":"4850514972","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4857349434","conversationType":1,"userID":"4857349434","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4858487103","conversationType":1,"userID":"4858487103","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4867820065","conversationType":1,"userID":"4867820065","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4868312193","conversationType":1,"userID":"4868312193","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4870999670","conversationType":1,"userID":"4870999670","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4871183993","conversationType":1,"userID":"4871183993","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4872085821","conversationType":1,"userID":"4872085821","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4873691241","conversationType":1,"userID":"4873691241","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4875538382","conversationType":1,"userID":"4875538382","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4876217110","conversationType":1,"userID":"4876217110","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4892758656","conversationType":1,"userID":"4892758656","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4893424641","conversationType":1,"userID":"4893424641","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4893727151","conversationType":1,"userID":"4893727151","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4896388822","conversationType":1,"userID":"4896388822","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4900753426","conversationType":1,"userID":"4900753426","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4901778325","conversationType":1,"userID":"4901778325","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4902397738","conversationType":1,"userID":"4902397738","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4908904387","conversationType":1,"userID":"4908904387","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4911332544","conversationType":1,"userID":"4911332544","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4911414951","conversationType":1,"userID":"4911414951","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4911851183","conversationType":1,"userID":"4911851183","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4912844543","conversationType":1,"userID":"4912844543","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4915484479","conversationType":1,"userID":"4915484479","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4918276559","conversationType":1,"userID":"4918276559","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4918328683","conversationType":1,"userID":"4918328683","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4923873012","conversationType":1,"userID":"4923873012","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4926446021","conversationType":1,"userID":"4926446021","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4930915768","conversationType":1,"userID":"4930915768","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4934894155","conversationType":1,"userID":"4934894155","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4937209096","conversationType":1,"userID":"4937209096","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4938106565","conversationType":1,"userID":"4938106565","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4939956693","conversationType":1,"userID":"4939956693","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4940175675","conversationType":1,"userID":"4940175675","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4940249071","conversationType":1,"userID":"4940249071","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4943773015","conversationType":1,"userID":"4943773015","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4949622917","conversationType":1,"userID":"4949622917","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4950713210","conversationType":1,"userID":"4950713210","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4951801389","conversationType":1,"userID":"4951801389","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4952005760","conversationType":1,"userID":"4952005760","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4958357173","conversationType":1,"userID":"4958357173","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4958846328","conversationType":1,"userID":"4958846328","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4959913802","conversationType":1,"userID":"4959913802","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4961711537","conversationType":1,"userID":"4961711537","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4963393229","conversationType":1,"userID":"4963393229","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4975019413","conversationType":1,"userID":"4975019413","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4975337998","conversationType":1,"userID":"4975337998","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4977198622","conversationType":1,"userID":"4977198622","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4979480519","conversationType":1,"userID":"4979480519","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4979639389","conversationType":1,"userID":"4979639389","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4981130292","conversationType":1,"userID":"4981130292","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4981191121","conversationType":1,"userID":"4981191121","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4981368838","conversationType":1,"userID":"4981368838","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4985196437","conversationType":1,"userID":"4985196437","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4988969273","conversationType":1,"userID":"4988969273","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4990193480","conversationType":1,"userID":"4990193480","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4995366980","conversationType":1,"userID":"4995366980","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4995988309","conversationType":1,"userID":"4995988309","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_4999156692","conversationType":1,"userID":"4999156692","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_4999749136","conversationType":1,"userID":"4999749136","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5001599614","conversationType":1,"userID":"5001599614","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5002491660","conversationType":1,"userID":"5002491660","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5003938059","conversationType":1,"userID":"5003938059","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5007601899","conversationType":1,"userID":"5007601899","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5009769752","conversationType":1,"userID":"5009769752","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5011307721","conversationType":1,"userID":"5011307721","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5016947087","conversationType":1,"userID":"5016947087","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5017045152","conversationType":1,"userID":"5017045152","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5024780259","conversationType":1,"userID":"5024780259","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5027132489","conversationType":1,"userID":"5027132489","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5030358081","conversationType":1,"userID":"5030358081","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5033164124","conversationType":1,"userID":"5033164124","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5036254684","conversationType":1,"userID":"5036254684","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5039689203","conversationType":1,"userID":"5039689203","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5040986608","conversationType":1,"userID":"5040986608","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5044983328","conversationType":1,"userID":"5044983328","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5045959757","conversationType":1,"userID":"5045959757","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5046045029","conversationType":1,"userID":"5046045029","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5052720919","conversationType":1,"userID":"5052720919","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5054553896","conversationType":1,"userID":"5054553896","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5057316211","conversationType":1,"userID":"5057316211","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5057868990","conversationType":1,"userID":"5057868990","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5058490688","conversationType":1,"userID":"5058490688","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5059658106","conversationType":1,"userID":"5059658106","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5063708805","conversationType":1,"userID":"5063708805","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5064450025","conversationType":1,"userID":"5064450025","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5067345572","conversationType":1,"userID":"5067345572","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5067438435","conversationType":1,"userID":"5067438435","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5068449155","conversationType":1,"userID":"5068449155","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5072662873","conversationType":1,"userID":"5072662873","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5073192046","conversationType":1,"userID":"5073192046","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5074137138","conversationType":1,"userID":"5074137138","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5075042452","conversationType":1,"userID":"5075042452","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5086890922","conversationType":1,"userID":"5086890922","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5086994351","conversationType":1,"userID":"5086994351","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5087027370","conversationType":1,"userID":"5087027370","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5092290187","conversationType":1,"userID":"5092290187","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5093785048","conversationType":1,"userID":"5093785048","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5098290115","conversationType":1,"userID":"5098290115","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5098473308","conversationType":1,"userID":"5098473308","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5104021530","conversationType":1,"userID":"5104021530","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5107494273","conversationType":1,"userID":"5107494273","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5108778950","conversationType":1,"userID":"5108778950","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5109208108","conversationType":1,"userID":"5109208108","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5109328754","conversationType":1,"userID":"5109328754","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5113616736","conversationType":1,"userID":"5113616736","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5114178152","conversationType":1,"userID":"5114178152","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5115816718","conversationType":1,"userID":"5115816718","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5120891134","conversationType":1,"userID":"5120891134","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5124623407","conversationType":1,"userID":"5124623407","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5129646012","conversationType":1,"userID":"5129646012","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5131260895","conversationType":1,"userID":"5131260895","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5131548684","conversationType":1,"userID":"5131548684","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5132970330","conversationType":1,"userID":"5132970330","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5138412244","conversationType":1,"userID":"5138412244","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5139953083","conversationType":1,"userID":"5139953083","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5143564922","conversationType":1,"userID":"5143564922","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5148465784","conversationType":1,"userID":"5148465784","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5151877467","conversationType":1,"userID":"5151877467","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5152364658","conversationType":1,"userID":"5152364658","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5152367578","conversationType":1,"userID":"5152367578","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5152700528","conversationType":1,"userID":"5152700528","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5152772821","conversationType":1,"userID":"5152772821","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5159407655","conversationType":1,"userID":"5159407655","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5159666152","conversationType":1,"userID":"5159666152","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5160877753","conversationType":1,"userID":"5160877753","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5164441961","conversationType":1,"userID":"5164441961","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5165900123","conversationType":1,"userID":"5165900123","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5166465530","conversationType":1,"userID":"5166465530","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5166918125","conversationType":1,"userID":"5166918125","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5175156228","conversationType":1,"userID":"5175156228","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5175926475","conversationType":1,"userID":"5175926475","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5178916117","conversationType":1,"userID":"5178916117","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5181423157","conversationType":1,"userID":"5181423157","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5185600527","conversationType":1,"userID":"5185600527","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5189528969","conversationType":1,"userID":"5189528969","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5190651797","conversationType":1,"userID":"5190651797","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5191177805","conversationType":1,"userID":"5191177805","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5192859184","conversationType":1,"userID":"5192859184","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5200142893","conversationType":1,"userID":"5200142893","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5203162281","conversationType":1,"userID":"5203162281","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5206821177","conversationType":1,"userID":"5206821177","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5206946655","conversationType":1,"userID":"5206946655","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5207254443","conversationType":1,"userID":"5207254443","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5211251741","conversationType":1,"userID":"5211251741","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5213333820","conversationType":1,"userID":"5213333820","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5217579807","conversationType":1,"userID":"5217579807","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5221720362","conversationType":1,"userID":"5221720362","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5222516154","conversationType":1,"userID":"5222516154","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5226459880","conversationType":1,"userID":"5226459880","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5226627818","conversationType":1,"userID":"5226627818","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5233426123","conversationType":1,"userID":"5233426123","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5235308523","conversationType":1,"userID":"5235308523","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5236359243","conversationType":1,"userID":"5236359243","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5236545003","conversationType":1,"userID":"5236545003","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5237025674","conversationType":1,"userID":"5237025674","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5240408296","conversationType":1,"userID":"5240408296","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5240575339","conversationType":1,"userID":"5240575339","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5241529913","conversationType":1,"userID":"5241529913","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5244482702","conversationType":1,"userID":"5244482702","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5248071176","conversationType":1,"userID":"5248071176","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5248150745","conversationType":1,"userID":"5248150745","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5248385191","conversationType":1,"userID":"5248385191","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5249725335","conversationType":1,"userID":"5249725335","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5256311014","conversationType":1,"userID":"5256311014","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5259696013","conversationType":1,"userID":"5259696013","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5260081632","conversationType":1,"userID":"5260081632","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5262644632","conversationType":1,"userID":"5262644632","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5263712829","conversationType":1,"userID":"5263712829","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5264992214","conversationType":1,"userID":"5264992214","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5268812393","conversationType":1,"userID":"5268812393","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5280943776","conversationType":1,"userID":"5280943776","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5282627881","conversationType":1,"userID":"5282627881","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5285022981","conversationType":1,"userID":"5285022981","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5286535793","conversationType":1,"userID":"5286535793","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5288626264","conversationType":1,"userID":"5288626264","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5290454482","conversationType":1,"userID":"5290454482","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5290473735","conversationType":1,"userID":"5290473735","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5291311764","conversationType":1,"userID":"5291311764","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5291456050","conversationType":1,"userID":"5291456050","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5294929577","conversationType":1,"userID":"5294929577","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5295369982","conversationType":1,"userID":"5295369982","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5296052389","conversationType":1,"userID":"5296052389","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5296469685","conversationType":1,"userID":"5296469685","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5296644653","conversationType":1,"userID":"5296644653","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5297662536","conversationType":1,"userID":"5297662536","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5297812664","conversationType":1,"userID":"5297812664","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5304967461","conversationType":1,"userID":"5304967461","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5306710076","conversationType":1,"userID":"5306710076","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5307357041","conversationType":1,"userID":"5307357041","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5320305071","conversationType":1,"userID":"5320305071","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5321467496","conversationType":1,"userID":"5321467496","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5321587991","conversationType":1,"userID":"5321587991","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5329005553","conversationType":1,"userID":"5329005553","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5329462571","conversationType":1,"userID":"5329462571","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5329543914","conversationType":1,"userID":"5329543914","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5331279867","conversationType":1,"userID":"5331279867","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5334542905","conversationType":1,"userID":"5334542905","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5334756257","conversationType":1,"userID":"5334756257","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5336317141","conversationType":1,"userID":"5336317141","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5343195507","conversationType":1,"userID":"5343195507","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5346815324","conversationType":1,"userID":"5346815324","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5348575962","conversationType":1,"userID":"5348575962","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5349221317","conversationType":1,"userID":"5349221317","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5349634613","conversationType":1,"userID":"5349634613","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5350931457","conversationType":1,"userID":"5350931457","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5351132193","conversationType":1,"userID":"5351132193","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5352682579","conversationType":1,"userID":"5352682579","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5356113166","conversationType":1,"userID":"5356113166","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5358143052","conversationType":1,"userID":"5358143052","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5358714951","conversationType":1,"userID":"5358714951","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5358843278","conversationType":1,"userID":"5358843278","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5358983896","conversationType":1,"userID":"5358983896","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5360417820","conversationType":1,"userID":"5360417820","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5363582234","conversationType":1,"userID":"5363582234","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5363957705","conversationType":1,"userID":"5363957705","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5365048884","conversationType":1,"userID":"5365048884","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5368584236","conversationType":1,"userID":"5368584236","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5370620069","conversationType":1,"userID":"5370620069","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5373490184","conversationType":1,"userID":"5373490184","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5373710322","conversationType":1,"userID":"5373710322","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5375609152","conversationType":1,"userID":"5375609152","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5377724931","conversationType":1,"userID":"5377724931","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5381374647","conversationType":1,"userID":"5381374647","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5382734642","conversationType":1,"userID":"5382734642","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5383441189","conversationType":1,"userID":"5383441189","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5384318976","conversationType":1,"userID":"5384318976","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5390236703","conversationType":1,"userID":"5390236703","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5396639819","conversationType":1,"userID":"5396639819","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5397087982","conversationType":1,"userID":"5397087982","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5397363424","conversationType":1,"userID":"5397363424","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5398613531","conversationType":1,"userID":"5398613531","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5401562218","conversationType":1,"userID":"5401562218","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5402322052","conversationType":1,"userID":"5402322052","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5404307971","conversationType":1,"userID":"5404307971","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5405441233","conversationType":1,"userID":"5405441233","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5406159540","conversationType":1,"userID":"5406159540","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5407091476","conversationType":1,"userID":"5407091476","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5407782499","conversationType":1,"userID":"5407782499","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5409594675","conversationType":1,"userID":"5409594675","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5410098477","conversationType":1,"userID":"5410098477","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5410355545","conversationType":1,"userID":"5410355545","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5410368232","conversationType":1,"userID":"5410368232","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5410772311","conversationType":1,"userID":"5410772311","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5414128931","conversationType":1,"userID":"5414128931","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5416738193","conversationType":1,"userID":"5416738193","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5417124831","conversationType":1,"userID":"5417124831","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5420104655","conversationType":1,"userID":"5420104655","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5430821760","conversationType":1,"userID":"5430821760","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5432843240","conversationType":1,"userID":"5432843240","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5442199418","conversationType":1,"userID":"5442199418","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5446046008","conversationType":1,"userID":"5446046008","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5446567702","conversationType":1,"userID":"5446567702","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5449593636","conversationType":1,"userID":"5449593636","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5450965115","conversationType":1,"userID":"5450965115","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5452365658","conversationType":1,"userID":"5452365658","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5452450197","conversationType":1,"userID":"5452450197","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5453108500","conversationType":1,"userID":"5453108500","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5455481997","conversationType":1,"userID":"5455481997","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5480212485","conversationType":1,"userID":"5480212485","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5480713946","conversationType":1,"userID":"5480713946","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5480812632","conversationType":1,"userID":"5480812632","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5485148642","conversationType":1,"userID":"5485148642","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5496039772","conversationType":1,"userID":"5496039772","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5502486573","conversationType":1,"userID":"5502486573","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5503315300","conversationType":1,"userID":"5503315300","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5503837684","conversationType":1,"userID":"5503837684","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5512448749","conversationType":1,"userID":"5512448749","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5512868112","conversationType":1,"userID":"5512868112","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5513765615","conversationType":1,"userID":"5513765615","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5514725837","conversationType":1,"userID":"5514725837","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5525192219","conversationType":1,"userID":"5525192219","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5525995594","conversationType":1,"userID":"5525995594","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5526021912","conversationType":1,"userID":"5526021912","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5526651611","conversationType":1,"userID":"5526651611","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5535739780","conversationType":1,"userID":"5535739780","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5540563810","conversationType":1,"userID":"5540563810","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5540757722","conversationType":1,"userID":"5540757722","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5541069207","conversationType":1,"userID":"5541069207","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5542535779","conversationType":1,"userID":"5542535779","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5548591709","conversationType":1,"userID":"5548591709","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5549513683","conversationType":1,"userID":"5549513683","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5552236107","conversationType":1,"userID":"5552236107","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5553194662","conversationType":1,"userID":"5553194662","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5557876583","conversationType":1,"userID":"5557876583","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5558311156","conversationType":1,"userID":"5558311156","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5561959046","conversationType":1,"userID":"5561959046","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5566365465","conversationType":1,"userID":"5566365465","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5568853842","conversationType":1,"userID":"5568853842","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5570249193","conversationType":1,"userID":"5570249193","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5570319326","conversationType":1,"userID":"5570319326","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5576420817","conversationType":1,"userID":"5576420817","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5577874223","conversationType":1,"userID":"5577874223","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5578328451","conversationType":1,"userID":"5578328451","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5578731578","conversationType":1,"userID":"5578731578","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5581090381","conversationType":1,"userID":"5581090381","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5581435034","conversationType":1,"userID":"5581435034","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5584327976","conversationType":1,"userID":"5584327976","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5586125949","conversationType":1,"userID":"5586125949","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5586255658","conversationType":1,"userID":"5586255658","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5587098679","conversationType":1,"userID":"5587098679","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5587217057","conversationType":1,"userID":"5587217057","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5587808406","conversationType":1,"userID":"5587808406","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5594047664","conversationType":1,"userID":"5594047664","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5596279712","conversationType":1,"userID":"5596279712","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5605784685","conversationType":1,"userID":"5605784685","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5606396140","conversationType":1,"userID":"5606396140","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5610837207","conversationType":1,"userID":"5610837207","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5616569214","conversationType":1,"userID":"5616569214","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5618114098","conversationType":1,"userID":"5618114098","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5619318712","conversationType":1,"userID":"5619318712","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5619336399","conversationType":1,"userID":"5619336399","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5620768201","conversationType":1,"userID":"5620768201","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5625548410","conversationType":1,"userID":"5625548410","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5626394972","conversationType":1,"userID":"5626394972","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5629610459","conversationType":1,"userID":"5629610459","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5630216908","conversationType":1,"userID":"5630216908","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5632773822","conversationType":1,"userID":"5632773822","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5633059660","conversationType":1,"userID":"5633059660","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5633188673","conversationType":1,"userID":"5633188673","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5633378166","conversationType":1,"userID":"5633378166","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5636993626","conversationType":1,"userID":"5636993626","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5640122986","conversationType":1,"userID":"5640122986","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5643092782","conversationType":1,"userID":"5643092782","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5644765212","conversationType":1,"userID":"5644765212","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5645682170","conversationType":1,"userID":"5645682170","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5647374792","conversationType":1,"userID":"5647374792","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5653943210","conversationType":1,"userID":"5653943210","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5654578948","conversationType":1,"userID":"5654578948","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5656745158","conversationType":1,"userID":"5656745158","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5657688195","conversationType":1,"userID":"5657688195","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5658001949","conversationType":1,"userID":"5658001949","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5659165582","conversationType":1,"userID":"5659165582","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5659573503","conversationType":1,"userID":"5659573503","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5661158812","conversationType":1,"userID":"5661158812","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5665554530","conversationType":1,"userID":"5665554530","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5665605844","conversationType":1,"userID":"5665605844","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5665783096","conversationType":1,"userID":"5665783096","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5668726699","conversationType":1,"userID":"5668726699","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5668985363","conversationType":1,"userID":"5668985363","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5669416921","conversationType":1,"userID":"5669416921","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5674745391","conversationType":1,"userID":"5674745391","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5677381479","conversationType":1,"userID":"5677381479","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5693206451","conversationType":1,"userID":"5693206451","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5695116048","conversationType":1,"userID":"5695116048","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5695990734","conversationType":1,"userID":"5695990734","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5699652927","conversationType":1,"userID":"5699652927","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5708410287","conversationType":1,"userID":"5708410287","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5710168294","conversationType":1,"userID":"5710168294","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5710649058","conversationType":1,"userID":"5710649058","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5715976407","conversationType":1,"userID":"5715976407","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5717044381","conversationType":1,"userID":"5717044381","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5718405684","conversationType":1,"userID":"5718405684","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5719987926","conversationType":1,"userID":"5719987926","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5726747048","conversationType":1,"userID":"5726747048","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5728062211","conversationType":1,"userID":"5728062211","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5728220862","conversationType":1,"userID":"5728220862","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5728456517","conversationType":1,"userID":"5728456517","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5729235369","conversationType":1,"userID":"5729235369","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5730628535","conversationType":1,"userID":"5730628535","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5734504508","conversationType":1,"userID":"5734504508","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5735206330","conversationType":1,"userID":"5735206330","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5735757792","conversationType":1,"userID":"5735757792","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5741092371","conversationType":1,"userID":"5741092371","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5741564889","conversationType":1,"userID":"5741564889","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5743097181","conversationType":1,"userID":"5743097181","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5743288207","conversationType":1,"userID":"5743288207","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5745714391","conversationType":1,"userID":"5745714391","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5746670115","conversationType":1,"userID":"5746670115","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5752307329","conversationType":1,"userID":"5752307329","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5762137067","conversationType":1,"userID":"5762137067","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5763494246","conversationType":1,"userID":"5763494246","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5764725232","conversationType":1,"userID":"5764725232","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5766348077","conversationType":1,"userID":"5766348077","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5770532835","conversationType":1,"userID":"5770532835","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5775691842","conversationType":1,"userID":"5775691842","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5775768919","conversationType":1,"userID":"5775768919","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5778047866","conversationType":1,"userID":"5778047866","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5782315790","conversationType":1,"userID":"5782315790","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5784013945","conversationType":1,"userID":"5784013945","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5788143929","conversationType":1,"userID":"5788143929","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5788891525","conversationType":1,"userID":"5788891525","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5790728514","conversationType":1,"userID":"5790728514","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5794961319","conversationType":1,"userID":"5794961319","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5795637205","conversationType":1,"userID":"5795637205","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5798749721","conversationType":1,"userID":"5798749721","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5800725777","conversationType":1,"userID":"5800725777","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5803896006","conversationType":1,"userID":"5803896006","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5806188403","conversationType":1,"userID":"5806188403","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5808959084","conversationType":1,"userID":"5808959084","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5814165285","conversationType":1,"userID":"5814165285","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5816557466","conversationType":1,"userID":"5816557466","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5816946439","conversationType":1,"userID":"5816946439","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5817653065","conversationType":1,"userID":"5817653065","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5817925510","conversationType":1,"userID":"5817925510","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5818783212","conversationType":1,"userID":"5818783212","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5821718929","conversationType":1,"userID":"5821718929","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5822391747","conversationType":1,"userID":"5822391747","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5823977481","conversationType":1,"userID":"5823977481","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5832825629","conversationType":1,"userID":"5832825629","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5839682145","conversationType":1,"userID":"5839682145","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5842361658","conversationType":1,"userID":"5842361658","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5842695634","conversationType":1,"userID":"5842695634","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5843381897","conversationType":1,"userID":"5843381897","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5856396568","conversationType":1,"userID":"5856396568","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5857452412","conversationType":1,"userID":"5857452412","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5860770188","conversationType":1,"userID":"5860770188","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5863796992","conversationType":1,"userID":"5863796992","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5863894652","conversationType":1,"userID":"5863894652","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5864051915","conversationType":1,"userID":"5864051915","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5864943501","conversationType":1,"userID":"5864943501","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5871437314","conversationType":1,"userID":"5871437314","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5883787211","conversationType":1,"userID":"5883787211","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5885080003","conversationType":1,"userID":"5885080003","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5887387594","conversationType":1,"userID":"5887387594","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5890658001","conversationType":1,"userID":"5890658001","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5894974847","conversationType":1,"userID":"5894974847","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5896039030","conversationType":1,"userID":"5896039030","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5896150134","conversationType":1,"userID":"5896150134","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5896186963","conversationType":1,"userID":"5896186963","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5899173891","conversationType":1,"userID":"5899173891","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5904075897","conversationType":1,"userID":"5904075897","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5907279098","conversationType":1,"userID":"5907279098","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5908182038","conversationType":1,"userID":"5908182038","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5910546288","conversationType":1,"userID":"5910546288","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5915346182","conversationType":1,"userID":"5915346182","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5915558310","conversationType":1,"userID":"5915558310","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5918528750","conversationType":1,"userID":"5918528750","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5921376933","conversationType":1,"userID":"5921376933","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5921920938","conversationType":1,"userID":"5921920938","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5925608879","conversationType":1,"userID":"5925608879","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5928750409","conversationType":1,"userID":"5928750409","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5929046253","conversationType":1,"userID":"5929046253","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5929204367","conversationType":1,"userID":"5929204367","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5931929122","conversationType":1,"userID":"5931929122","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5932065188","conversationType":1,"userID":"5932065188","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5935225979","conversationType":1,"userID":"5935225979","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5935227089","conversationType":1,"userID":"5935227089","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5936400835","conversationType":1,"userID":"5936400835","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5937916635","conversationType":1,"userID":"5937916635","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5937972697","conversationType":1,"userID":"5937972697","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5939377886","conversationType":1,"userID":"5939377886","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5940571929","conversationType":1,"userID":"5940571929","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5945434993","conversationType":1,"userID":"5945434993","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5948016835","conversationType":1,"userID":"5948016835","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5950701783","conversationType":1,"userID":"5950701783","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5952571464","conversationType":1,"userID":"5952571464","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5954565885","conversationType":1,"userID":"5954565885","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5955203999","conversationType":1,"userID":"5955203999","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5955873566","conversationType":1,"userID":"5955873566","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5959625032","conversationType":1,"userID":"5959625032","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5967938442","conversationType":1,"userID":"5967938442","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5975439779","conversationType":1,"userID":"5975439779","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5975476723","conversationType":1,"userID":"5975476723","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5977374952","conversationType":1,"userID":"5977374952","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5981427132","conversationType":1,"userID":"5981427132","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5983902361","conversationType":1,"userID":"5983902361","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5984173458","conversationType":1,"userID":"5984173458","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5984271985","conversationType":1,"userID":"5984271985","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_5986232431","conversationType":1,"userID":"5986232431","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5996388709","conversationType":1,"userID":"5996388709","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5997395137","conversationType":1,"userID":"5997395137","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_5997701968","conversationType":1,"userID":"5997701968","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6005888406","conversationType":1,"userID":"6005888406","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6006128096","conversationType":1,"userID":"6006128096","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6006290878","conversationType":1,"userID":"6006290878","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6008066663","conversationType":1,"userID":"6008066663","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6013027606","conversationType":1,"userID":"6013027606","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6013955514","conversationType":1,"userID":"6013955514","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6015794695","conversationType":1,"userID":"6015794695","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6016147145","conversationType":1,"userID":"6016147145","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6018243921","conversationType":1,"userID":"6018243921","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6023508071","conversationType":1,"userID":"6023508071","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6026538705","conversationType":1,"userID":"6026538705","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6031134585","conversationType":1,"userID":"6031134585","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6031667349","conversationType":1,"userID":"6031667349","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6033028313","conversationType":1,"userID":"6033028313","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6034497071","conversationType":1,"userID":"6034497071","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6036151426","conversationType":1,"userID":"6036151426","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6036941107","conversationType":1,"userID":"6036941107","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6038779981","conversationType":1,"userID":"6038779981","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6048406952","conversationType":1,"userID":"6048406952","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6051177811","conversationType":1,"userID":"6051177811","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6051934668","conversationType":1,"userID":"6051934668","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6055213651","conversationType":1,"userID":"6055213651","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6060091841","conversationType":1,"userID":"6060091841","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6060319919","conversationType":1,"userID":"6060319919","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6062924771","conversationType":1,"userID":"6062924771","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6064103151","conversationType":1,"userID":"6064103151","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6065191029","conversationType":1,"userID":"6065191029","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6068497884","conversationType":1,"userID":"6068497884","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6074324251","conversationType":1,"userID":"6074324251","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6076551181","conversationType":1,"userID":"6076551181","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6078638343","conversationType":1,"userID":"6078638343","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6083577052","conversationType":1,"userID":"6083577052","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6083951309","conversationType":1,"userID":"6083951309","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6087811348","conversationType":1,"userID":"6087811348","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6088409125","conversationType":1,"userID":"6088409125","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6093808210","conversationType":1,"userID":"6093808210","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6096605449","conversationType":1,"userID":"6096605449","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6099670645","conversationType":1,"userID":"6099670645","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6104556263","conversationType":1,"userID":"6104556263","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6106775804","conversationType":1,"userID":"6106775804","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6113261132","conversationType":1,"userID":"6113261132","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6115346815","conversationType":1,"userID":"6115346815","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6116849462","conversationType":1,"userID":"6116849462","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6116896250","conversationType":1,"userID":"6116896250","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6118899713","conversationType":1,"userID":"6118899713","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6126224779","conversationType":1,"userID":"6126224779","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6128440220","conversationType":1,"userID":"6128440220","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6131489317","conversationType":1,"userID":"6131489317","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6132231740","conversationType":1,"userID":"6132231740","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6132997969","conversationType":1,"userID":"6132997969","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6133038339","conversationType":1,"userID":"6133038339","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6133543856","conversationType":1,"userID":"6133543856","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6133844467","conversationType":1,"userID":"6133844467","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6134647314","conversationType":1,"userID":"6134647314","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6135244436","conversationType":1,"userID":"6135244436","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6140652559","conversationType":1,"userID":"6140652559","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6141140222","conversationType":1,"userID":"6141140222","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6141620999","conversationType":1,"userID":"6141620999","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6142166971","conversationType":1,"userID":"6142166971","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6142186125","conversationType":1,"userID":"6142186125","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6143363837","conversationType":1,"userID":"6143363837","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6145520493","conversationType":1,"userID":"6145520493","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6149155248","conversationType":1,"userID":"6149155248","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6152830251","conversationType":1,"userID":"6152830251","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6156827373","conversationType":1,"userID":"6156827373","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6158590414","conversationType":1,"userID":"6158590414","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6161718484","conversationType":1,"userID":"6161718484","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6165380448","conversationType":1,"userID":"6165380448","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6168075727","conversationType":1,"userID":"6168075727","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6168367570","conversationType":1,"userID":"6168367570","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6171471555","conversationType":1,"userID":"6171471555","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6171560899","conversationType":1,"userID":"6171560899","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6171677006","conversationType":1,"userID":"6171677006","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6179365429","conversationType":1,"userID":"6179365429","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6182458494","conversationType":1,"userID":"6182458494","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6182903129","conversationType":1,"userID":"6182903129","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6195299101","conversationType":1,"userID":"6195299101","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6195752325","conversationType":1,"userID":"6195752325","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6201510570","conversationType":1,"userID":"6201510570","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6203470761","conversationType":1,"userID":"6203470761","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6204547412","conversationType":1,"userID":"6204547412","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6204882268","conversationType":1,"userID":"6204882268","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6205781501","conversationType":1,"userID":"6205781501","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6218720837","conversationType":1,"userID":"6218720837","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6219207142","conversationType":1,"userID":"6219207142","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6219819108","conversationType":1,"userID":"6219819108","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6224388014","conversationType":1,"userID":"6224388014","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6225512933","conversationType":1,"userID":"6225512933","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6227325792","conversationType":1,"userID":"6227325792","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6231818471","conversationType":1,"userID":"6231818471","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6232137221","conversationType":1,"userID":"6232137221","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6237905746","conversationType":1,"userID":"6237905746","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6240876322","conversationType":1,"userID":"6240876322","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6244724164","conversationType":1,"userID":"6244724164","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6246279298","conversationType":1,"userID":"6246279298","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6250904913","conversationType":1,"userID":"6250904913","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6254689070","conversationType":1,"userID":"6254689070","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6257143773","conversationType":1,"userID":"6257143773","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6261322669","conversationType":1,"userID":"6261322669","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6262174436","conversationType":1,"userID":"6262174436","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6265354518","conversationType":1,"userID":"6265354518","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6265776649","conversationType":1,"userID":"6265776649","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6266941295","conversationType":1,"userID":"6266941295","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6270795380","conversationType":1,"userID":"6270795380","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6270908929","conversationType":1,"userID":"6270908929","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6271691561","conversationType":1,"userID":"6271691561","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6273646617","conversationType":1,"userID":"6273646617","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6277147514","conversationType":1,"userID":"6277147514","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6283419580","conversationType":1,"userID":"6283419580","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6285709625","conversationType":1,"userID":"6285709625","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6287774671","conversationType":1,"userID":"6287774671","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6288096156","conversationType":1,"userID":"6288096156","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6291070602","conversationType":1,"userID":"6291070602","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6292285317","conversationType":1,"userID":"6292285317","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6302501675","conversationType":1,"userID":"6302501675","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6303051991","conversationType":1,"userID":"6303051991","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6303348015","conversationType":1,"userID":"6303348015","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6311770884","conversationType":1,"userID":"6311770884","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6312531724","conversationType":1,"userID":"6312531724","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6312576873","conversationType":1,"userID":"6312576873","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6313231245","conversationType":1,"userID":"6313231245","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6313419358","conversationType":1,"userID":"6313419358","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6317201698","conversationType":1,"userID":"6317201698","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6319015024","conversationType":1,"userID":"6319015024","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6319901751","conversationType":1,"userID":"6319901751","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6322374743","conversationType":1,"userID":"6322374743","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6326666004","conversationType":1,"userID":"6326666004","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6327876925","conversationType":1,"userID":"6327876925","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6330822619","conversationType":1,"userID":"6330822619","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6331971236","conversationType":1,"userID":"6331971236","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6334911076","conversationType":1,"userID":"6334911076","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6338240526","conversationType":1,"userID":"6338240526","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6339230517","conversationType":1,"userID":"6339230517","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6342959213","conversationType":1,"userID":"6342959213","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6346508066","conversationType":1,"userID":"6346508066","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6347103724","conversationType":1,"userID":"6347103724","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6351160254","conversationType":1,"userID":"6351160254","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6352104335","conversationType":1,"userID":"6352104335","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6352490253","conversationType":1,"userID":"6352490253","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6352839849","conversationType":1,"userID":"6352839849","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6353020967","conversationType":1,"userID":"6353020967","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6361976167","conversationType":1,"userID":"6361976167","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6362196673","conversationType":1,"userID":"6362196673","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6363109385","conversationType":1,"userID":"6363109385","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6364600020","conversationType":1,"userID":"6364600020","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6373189805","conversationType":1,"userID":"6373189805","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6378176309","conversationType":1,"userID":"6378176309","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6381244261","conversationType":1,"userID":"6381244261","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6386210375","conversationType":1,"userID":"6386210375","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6397860749","conversationType":1,"userID":"6397860749","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6398540247","conversationType":1,"userID":"6398540247","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6401239370","conversationType":1,"userID":"6401239370","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6404356222","conversationType":1,"userID":"6404356222","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6406732941","conversationType":1,"userID":"6406732941","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6410043931","conversationType":1,"userID":"6410043931","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6411073511","conversationType":1,"userID":"6411073511","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6412329187","conversationType":1,"userID":"6412329187","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6414911020","conversationType":1,"userID":"6414911020","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6416142584","conversationType":1,"userID":"6416142584","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6417602965","conversationType":1,"userID":"6417602965","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6419911901","conversationType":1,"userID":"6419911901","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6420701443","conversationType":1,"userID":"6420701443","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6421051438","conversationType":1,"userID":"6421051438","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6431088982","conversationType":1,"userID":"6431088982","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6433354761","conversationType":1,"userID":"6433354761","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6438561890","conversationType":1,"userID":"6438561890","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6441149641","conversationType":1,"userID":"6441149641","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6441650238","conversationType":1,"userID":"6441650238","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6443345562","conversationType":1,"userID":"6443345562","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6444500926","conversationType":1,"userID":"6444500926","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6444929933","conversationType":1,"userID":"6444929933","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6447835862","conversationType":1,"userID":"6447835862","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6448579919","conversationType":1,"userID":"6448579919","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6449138632","conversationType":1,"userID":"6449138632","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6449141444","conversationType":1,"userID":"6449141444","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6453774519","conversationType":1,"userID":"6453774519","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6453949619","conversationType":1,"userID":"6453949619","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6454827578","conversationType":1,"userID":"6454827578","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6458562938","conversationType":1,"userID":"6458562938","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6460025590","conversationType":1,"userID":"6460025590","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6469392278","conversationType":1,"userID":"6469392278","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6481678351","conversationType":1,"userID":"6481678351","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6483893350","conversationType":1,"userID":"6483893350","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6484797725","conversationType":1,"userID":"6484797725","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6487716839","conversationType":1,"userID":"6487716839","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6494483474","conversationType":1,"userID":"6494483474","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6496496312","conversationType":1,"userID":"6496496312","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6498376092","conversationType":1,"userID":"6498376092","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6499282212","conversationType":1,"userID":"6499282212","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6500329873","conversationType":1,"userID":"6500329873","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6501494738","conversationType":1,"userID":"6501494738","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6506881202","conversationType":1,"userID":"6506881202","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6511811241","conversationType":1,"userID":"6511811241","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6512556770","conversationType":1,"userID":"6512556770","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6513275013","conversationType":1,"userID":"6513275013","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6516498277","conversationType":1,"userID":"6516498277","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6516684062","conversationType":1,"userID":"6516684062","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6518420590","conversationType":1,"userID":"6518420590","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6519854131","conversationType":1,"userID":"6519854131","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6522084706","conversationType":1,"userID":"6522084706","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6524017485","conversationType":1,"userID":"6524017485","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6529480566","conversationType":1,"userID":"6529480566","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6531017055","conversationType":1,"userID":"6531017055","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6531826562","conversationType":1,"userID":"6531826562","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6536907751","conversationType":1,"userID":"6536907751","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6537610017","conversationType":1,"userID":"6537610017","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6538167968","conversationType":1,"userID":"6538167968","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6539096974","conversationType":1,"userID":"6539096974","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6549189747","conversationType":1,"userID":"6549189747","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6549643089","conversationType":1,"userID":"6549643089","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6551973401","conversationType":1,"userID":"6551973401","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6554716140","conversationType":1,"userID":"6554716140","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6557841892","conversationType":1,"userID":"6557841892","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6557880147","conversationType":1,"userID":"6557880147","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6559013673","conversationType":1,"userID":"6559013673","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6561826343","conversationType":1,"userID":"6561826343","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6561879012","conversationType":1,"userID":"6561879012","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6564186011","conversationType":1,"userID":"6564186011","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6566879594","conversationType":1,"userID":"6566879594","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6567751477","conversationType":1,"userID":"6567751477","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6568661215","conversationType":1,"userID":"6568661215","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6569298083","conversationType":1,"userID":"6569298083","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6571764694","conversationType":1,"userID":"6571764694","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6572366754","conversationType":1,"userID":"6572366754","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6574042397","conversationType":1,"userID":"6574042397","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6579374753","conversationType":1,"userID":"6579374753","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6582408770","conversationType":1,"userID":"6582408770","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6582718155","conversationType":1,"userID":"6582718155","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6585308853","conversationType":1,"userID":"6585308853","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6585436255","conversationType":1,"userID":"6585436255","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6587366044","conversationType":1,"userID":"6587366044","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6588136652","conversationType":1,"userID":"6588136652","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6588496447","conversationType":1,"userID":"6588496447","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6591504507","conversationType":1,"userID":"6591504507","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6592301142","conversationType":1,"userID":"6592301142","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6592334053","conversationType":1,"userID":"6592334053","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6592691219","conversationType":1,"userID":"6592691219","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6593158401","conversationType":1,"userID":"6593158401","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6593585083","conversationType":1,"userID":"6593585083","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6602728377","conversationType":1,"userID":"6602728377","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6605809249","conversationType":1,"userID":"6605809249","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6605893249","conversationType":1,"userID":"6605893249","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6606496379","conversationType":1,"userID":"6606496379","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6608487604","conversationType":1,"userID":"6608487604","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6611636445","conversationType":1,"userID":"6611636445","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6614558445","conversationType":1,"userID":"6614558445","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6616366600","conversationType":1,"userID":"6616366600","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6618248076","conversationType":1,"userID":"6618248076","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6621259604","conversationType":1,"userID":"6621259604","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6625451597","conversationType":1,"userID":"6625451597","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6627105296","conversationType":1,"userID":"6627105296","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6628117309","conversationType":1,"userID":"6628117309","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6629808721","conversationType":1,"userID":"6629808721","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6630888513","conversationType":1,"userID":"6630888513","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6631065279","conversationType":1,"userID":"6631065279","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6640200986","conversationType":1,"userID":"6640200986","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6640754016","conversationType":1,"userID":"6640754016","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6642201111","conversationType":1,"userID":"6642201111","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6644481571","conversationType":1,"userID":"6644481571","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6650213351","conversationType":1,"userID":"6650213351","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6655870493","conversationType":1,"userID":"6655870493","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6658903475","conversationType":1,"userID":"6658903475","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6662856855","conversationType":1,"userID":"6662856855","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6663129968","conversationType":1,"userID":"6663129968","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6663875174","conversationType":1,"userID":"6663875174","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6665134423","conversationType":1,"userID":"6665134423","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6667078727","conversationType":1,"userID":"6667078727","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6670339193","conversationType":1,"userID":"6670339193","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6670746810","conversationType":1,"userID":"6670746810","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6670760760","conversationType":1,"userID":"6670760760","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6675598583","conversationType":1,"userID":"6675598583","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6676873258","conversationType":1,"userID":"6676873258","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6677772576","conversationType":1,"userID":"6677772576","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6683875714","conversationType":1,"userID":"6683875714","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6685902642","conversationType":1,"userID":"6685902642","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6686526228","conversationType":1,"userID":"6686526228","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6686846215","conversationType":1,"userID":"6686846215","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6687633010","conversationType":1,"userID":"6687633010","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6688995137","conversationType":1,"userID":"6688995137","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6689518881","conversationType":1,"userID":"6689518881","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6691071198","conversationType":1,"userID":"6691071198","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6691486515","conversationType":1,"userID":"6691486515","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6692484993","conversationType":1,"userID":"6692484993","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6693315961","conversationType":1,"userID":"6693315961","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6699224388","conversationType":1,"userID":"6699224388","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6699700239","conversationType":1,"userID":"6699700239","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6700192964","conversationType":1,"userID":"6700192964","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6700296582","conversationType":1,"userID":"6700296582","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6700520119","conversationType":1,"userID":"6700520119","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6703162622","conversationType":1,"userID":"6703162622","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6704991652","conversationType":1,"userID":"6704991652","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6712048605","conversationType":1,"userID":"6712048605","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6719767483","conversationType":1,"userID":"6719767483","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6720463717","conversationType":1,"userID":"6720463717","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6723382158","conversationType":1,"userID":"6723382158","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6723843756","conversationType":1,"userID":"6723843756","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6726134118","conversationType":1,"userID":"6726134118","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6740911583","conversationType":1,"userID":"6740911583","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6741909723","conversationType":1,"userID":"6741909723","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6742265687","conversationType":1,"userID":"6742265687","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6742554919","conversationType":1,"userID":"6742554919","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6746838054","conversationType":1,"userID":"6746838054","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6753861572","conversationType":1,"userID":"6753861572","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6754011874","conversationType":1,"userID":"6754011874","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6754137880","conversationType":1,"userID":"6754137880","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6754912650","conversationType":1,"userID":"6754912650","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6755720200","conversationType":1,"userID":"6755720200","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6760352680","conversationType":1,"userID":"6760352680","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6761468459","conversationType":1,"userID":"6761468459","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6761872625","conversationType":1,"userID":"6761872625","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6763043356","conversationType":1,"userID":"6763043356","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6765773509","conversationType":1,"userID":"6765773509","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6765812585","conversationType":1,"userID":"6765812585","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6767809967","conversationType":1,"userID":"6767809967","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6767821294","conversationType":1,"userID":"6767821294","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6768590754","conversationType":1,"userID":"6768590754","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6770102525","conversationType":1,"userID":"6770102525","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6772352172","conversationType":1,"userID":"6772352172","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6773909696","conversationType":1,"userID":"6773909696","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6778602686","conversationType":1,"userID":"6778602686","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6784987176","conversationType":1,"userID":"6784987176","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6786364682","conversationType":1,"userID":"6786364682","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6787283652","conversationType":1,"userID":"6787283652","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6791203959","conversationType":1,"userID":"6791203959","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6802380858","conversationType":1,"userID":"6802380858","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6806887201","conversationType":1,"userID":"6806887201","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6806913128","conversationType":1,"userID":"6806913128","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6808160177","conversationType":1,"userID":"6808160177","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6811700180","conversationType":1,"userID":"6811700180","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6814913395","conversationType":1,"userID":"6814913395","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6814929287","conversationType":1,"userID":"6814929287","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6816903047","conversationType":1,"userID":"6816903047","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6817618499","conversationType":1,"userID":"6817618499","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6818425876","conversationType":1,"userID":"6818425876","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6820141548","conversationType":1,"userID":"6820141548","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6820503013","conversationType":1,"userID":"6820503013","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6821762379","conversationType":1,"userID":"6821762379","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6829726306","conversationType":1,"userID":"6829726306","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6830551855","conversationType":1,"userID":"6830551855","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6832510780","conversationType":1,"userID":"6832510780","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6833055175","conversationType":1,"userID":"6833055175","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6838907936","conversationType":1,"userID":"6838907936","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6839612396","conversationType":1,"userID":"6839612396","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6840115382","conversationType":1,"userID":"6840115382","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6845692313","conversationType":1,"userID":"6845692313","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6845749447","conversationType":1,"userID":"6845749447","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6845802743","conversationType":1,"userID":"6845802743","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6848013573","conversationType":1,"userID":"6848013573","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6848660331","conversationType":1,"userID":"6848660331","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6850614360","conversationType":1,"userID":"6850614360","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6857178107","conversationType":1,"userID":"6857178107","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6858024107","conversationType":1,"userID":"6858024107","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6859717785","conversationType":1,"userID":"6859717785","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6863876045","conversationType":1,"userID":"6863876045","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6864422826","conversationType":1,"userID":"6864422826","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6868678037","conversationType":1,"userID":"6868678037","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6871533486","conversationType":1,"userID":"6871533486","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6871953976","conversationType":1,"userID":"6871953976","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6875431039","conversationType":1,"userID":"6875431039","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6875498620","conversationType":1,"userID":"6875498620","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6878072504","conversationType":1,"userID":"6878072504","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6880909295","conversationType":1,"userID":"6880909295","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6881072860","conversationType":1,"userID":"6881072860","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6881124784","conversationType":1,"userID":"6881124784","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6881765283","conversationType":1,"userID":"6881765283","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6891659611","conversationType":1,"userID":"6891659611","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6892010385","conversationType":1,"userID":"6892010385","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6893239717","conversationType":1,"userID":"6893239717","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6895745083","conversationType":1,"userID":"6895745083","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6897470526","conversationType":1,"userID":"6897470526","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6897615973","conversationType":1,"userID":"6897615973","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6900099844","conversationType":1,"userID":"6900099844","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6901714518","conversationType":1,"userID":"6901714518","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6902718642","conversationType":1,"userID":"6902718642","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6904613543","conversationType":1,"userID":"6904613543","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6908614794","conversationType":1,"userID":"6908614794","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6912850481","conversationType":1,"userID":"6912850481","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6913797339","conversationType":1,"userID":"6913797339","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6919005317","conversationType":1,"userID":"6919005317","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6920562819","conversationType":1,"userID":"6920562819","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6921798228","conversationType":1,"userID":"6921798228","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6923431604","conversationType":1,"userID":"6923431604","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6924019193","conversationType":1,"userID":"6924019193","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6924749515","conversationType":1,"userID":"6924749515","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6926376717","conversationType":1,"userID":"6926376717","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6926553569","conversationType":1,"userID":"6926553569","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6928564866","conversationType":1,"userID":"6928564866","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6932367570","conversationType":1,"userID":"6932367570","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6933150383","conversationType":1,"userID":"6933150383","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6935877903","conversationType":1,"userID":"6935877903","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6937796198","conversationType":1,"userID":"6937796198","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6937921006","conversationType":1,"userID":"6937921006","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6938235669","conversationType":1,"userID":"6938235669","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6945956112","conversationType":1,"userID":"6945956112","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6947004749","conversationType":1,"userID":"6947004749","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6947312143","conversationType":1,"userID":"6947312143","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6949156540","conversationType":1,"userID":"6949156540","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6953173171","conversationType":1,"userID":"6953173171","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6955315855","conversationType":1,"userID":"6955315855","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6955901539","conversationType":1,"userID":"6955901539","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6957081032","conversationType":1,"userID":"6957081032","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6960387254","conversationType":1,"userID":"6960387254","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6965419526","conversationType":1,"userID":"6965419526","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6966123174","conversationType":1,"userID":"6966123174","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6966528341","conversationType":1,"userID":"6966528341","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6968350970","conversationType":1,"userID":"6968350970","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6975622953","conversationType":1,"userID":"6975622953","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6976438725","conversationType":1,"userID":"6976438725","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6977731474","conversationType":1,"userID":"6977731474","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6981901637","conversationType":1,"userID":"6981901637","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6982573684","conversationType":1,"userID":"6982573684","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6982682917","conversationType":1,"userID":"6982682917","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6985501517","conversationType":1,"userID":"6985501517","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_6986682620","conversationType":1,"userID":"6986682620","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6986974936","conversationType":1,"userID":"6986974936","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6987095163","conversationType":1,"userID":"6987095163","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6995831660","conversationType":1,"userID":"6995831660","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_6996870296","conversationType":1,"userID":"6996870296","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7001714127","conversationType":1,"userID":"7001714127","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7004255923","conversationType":1,"userID":"7004255923","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7004902560","conversationType":1,"userID":"7004902560","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7005397943","conversationType":1,"userID":"7005397943","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7007140315","conversationType":1,"userID":"7007140315","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7009038964","conversationType":1,"userID":"7009038964","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7009965934","conversationType":1,"userID":"7009965934","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7015565477","conversationType":1,"userID":"7015565477","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7017747629","conversationType":1,"userID":"7017747629","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7020398872","conversationType":1,"userID":"7020398872","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7020890145","conversationType":1,"userID":"7020890145","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7024387472","conversationType":1,"userID":"7024387472","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7030017741","conversationType":1,"userID":"7030017741","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7030029150","conversationType":1,"userID":"7030029150","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7030053653","conversationType":1,"userID":"7030053653","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7032035559","conversationType":1,"userID":"7032035559","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7033422792","conversationType":1,"userID":"7033422792","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7033712582","conversationType":1,"userID":"7033712582","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7034540317","conversationType":1,"userID":"7034540317","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7036122900","conversationType":1,"userID":"7036122900","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7043986051","conversationType":1,"userID":"7043986051","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7044261595","conversationType":1,"userID":"7044261595","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7047604147","conversationType":1,"userID":"7047604147","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7050217790","conversationType":1,"userID":"7050217790","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7050707914","conversationType":1,"userID":"7050707914","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7051996866","conversationType":1,"userID":"7051996866","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7052078762","conversationType":1,"userID":"7052078762","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7059211536","conversationType":1,"userID":"7059211536","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7059286958","conversationType":1,"userID":"7059286958","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7059354914","conversationType":1,"userID":"7059354914","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7060900658","conversationType":1,"userID":"7060900658","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7061967847","conversationType":1,"userID":"7061967847","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7062785586","conversationType":1,"userID":"7062785586","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7063162002","conversationType":1,"userID":"7063162002","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7065253893","conversationType":1,"userID":"7065253893","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7066654553","conversationType":1,"userID":"7066654553","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7075754042","conversationType":1,"userID":"7075754042","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7081432967","conversationType":1,"userID":"7081432967","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7087139357","conversationType":1,"userID":"7087139357","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7092131990","conversationType":1,"userID":"7092131990","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7095536673","conversationType":1,"userID":"7095536673","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7100149191","conversationType":1,"userID":"7100149191","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7102401732","conversationType":1,"userID":"7102401732","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7102928206","conversationType":1,"userID":"7102928206","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7103047524","conversationType":1,"userID":"7103047524","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7104903347","conversationType":1,"userID":"7104903347","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7109035547","conversationType":1,"userID":"7109035547","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7113374792","conversationType":1,"userID":"7113374792","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7113648606","conversationType":1,"userID":"7113648606","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7115019432","conversationType":1,"userID":"7115019432","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7121367305","conversationType":1,"userID":"7121367305","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7122229636","conversationType":1,"userID":"7122229636","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7135884608","conversationType":1,"userID":"7135884608","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7138502039","conversationType":1,"userID":"7138502039","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7140502744","conversationType":1,"userID":"7140502744","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7146687293","conversationType":1,"userID":"7146687293","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7147058580","conversationType":1,"userID":"7147058580","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7147685522","conversationType":1,"userID":"7147685522","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7147734002","conversationType":1,"userID":"7147734002","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7149811761","conversationType":1,"userID":"7149811761","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7151327021","conversationType":1,"userID":"7151327021","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7151680921","conversationType":1,"userID":"7151680921","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7152114427","conversationType":1,"userID":"7152114427","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7156262588","conversationType":1,"userID":"7156262588","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7158015552","conversationType":1,"userID":"7158015552","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7158302033","conversationType":1,"userID":"7158302033","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7159773067","conversationType":1,"userID":"7159773067","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7160106831","conversationType":1,"userID":"7160106831","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7162252799","conversationType":1,"userID":"7162252799","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7169497233","conversationType":1,"userID":"7169497233","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7169812899","conversationType":1,"userID":"7169812899","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7175306389","conversationType":1,"userID":"7175306389","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7175450468","conversationType":1,"userID":"7175450468","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7179657685","conversationType":1,"userID":"7179657685","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7182741443","conversationType":1,"userID":"7182741443","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7184761084","conversationType":1,"userID":"7184761084","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7204234695","conversationType":1,"userID":"7204234695","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7205422956","conversationType":1,"userID":"7205422956","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7207090799","conversationType":1,"userID":"7207090799","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7207940426","conversationType":1,"userID":"7207940426","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7213865012","conversationType":1,"userID":"7213865012","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7218786842","conversationType":1,"userID":"7218786842","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7218943329","conversationType":1,"userID":"7218943329","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7219300529","conversationType":1,"userID":"7219300529","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7221656928","conversationType":1,"userID":"7221656928","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7222221088","conversationType":1,"userID":"7222221088","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7225662708","conversationType":1,"userID":"7225662708","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7226539074","conversationType":1,"userID":"7226539074","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7233905359","conversationType":1,"userID":"7233905359","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7235831415","conversationType":1,"userID":"7235831415","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7236965387","conversationType":1,"userID":"7236965387","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7238628207","conversationType":1,"userID":"7238628207","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7240565210","conversationType":1,"userID":"7240565210","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7244572239","conversationType":1,"userID":"7244572239","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7256209079","conversationType":1,"userID":"7256209079","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7259365264","conversationType":1,"userID":"7259365264","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7260321633","conversationType":1,"userID":"7260321633","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7261912754","conversationType":1,"userID":"7261912754","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7262156914","conversationType":1,"userID":"7262156914","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7263485679","conversationType":1,"userID":"7263485679","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7264586802","conversationType":1,"userID":"7264586802","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7265842354","conversationType":1,"userID":"7265842354","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7268355749","conversationType":1,"userID":"7268355749","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7269047472","conversationType":1,"userID":"7269047472","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7271132643","conversationType":1,"userID":"7271132643","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7272954153","conversationType":1,"userID":"7272954153","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7275425646","conversationType":1,"userID":"7275425646","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7275557315","conversationType":1,"userID":"7275557315","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7276122859","conversationType":1,"userID":"7276122859","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7276333667","conversationType":1,"userID":"7276333667","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7276945407","conversationType":1,"userID":"7276945407","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7277603401","conversationType":1,"userID":"7277603401","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7283174825","conversationType":1,"userID":"7283174825","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7283356015","conversationType":1,"userID":"7283356015","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7285011959","conversationType":1,"userID":"7285011959","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7288601605","conversationType":1,"userID":"7288601605","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7291159326","conversationType":1,"userID":"7291159326","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7291327778","conversationType":1,"userID":"7291327778","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7291693120","conversationType":1,"userID":"7291693120","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7295332773","conversationType":1,"userID":"7295332773","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7296742515","conversationType":1,"userID":"7296742515","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7297734806","conversationType":1,"userID":"7297734806","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7298268529","conversationType":1,"userID":"7298268529","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7302196202","conversationType":1,"userID":"7302196202","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7306283423","conversationType":1,"userID":"7306283423","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7307615373","conversationType":1,"userID":"7307615373","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7310569328","conversationType":1,"userID":"7310569328","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7315198048","conversationType":1,"userID":"7315198048","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7319360351","conversationType":1,"userID":"7319360351","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7319611102","conversationType":1,"userID":"7319611102","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7319695659","conversationType":1,"userID":"7319695659","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7320145013","conversationType":1,"userID":"7320145013","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7325441690","conversationType":1,"userID":"7325441690","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7327635605","conversationType":1,"userID":"7327635605","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7332567178","conversationType":1,"userID":"7332567178","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7335137190","conversationType":1,"userID":"7335137190","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7337859180","conversationType":1,"userID":"7337859180","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7342127502","conversationType":1,"userID":"7342127502","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7343731800","conversationType":1,"userID":"7343731800","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7345483146","conversationType":1,"userID":"7345483146","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7347440370","conversationType":1,"userID":"7347440370","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7348642114","conversationType":1,"userID":"7348642114","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7351077360","conversationType":1,"userID":"7351077360","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7351810180","conversationType":1,"userID":"7351810180","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7353212978","conversationType":1,"userID":"7353212978","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7357465056","conversationType":1,"userID":"7357465056","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7360686805","conversationType":1,"userID":"7360686805","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7363109030","conversationType":1,"userID":"7363109030","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7363253608","conversationType":1,"userID":"7363253608","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7363948441","conversationType":1,"userID":"7363948441","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7364897573","conversationType":1,"userID":"7364897573","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7366211705","conversationType":1,"userID":"7366211705","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7368376836","conversationType":1,"userID":"7368376836","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7372422050","conversationType":1,"userID":"7372422050","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7376958320","conversationType":1,"userID":"7376958320","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7377769800","conversationType":1,"userID":"7377769800","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7378315752","conversationType":1,"userID":"7378315752","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7380309120","conversationType":1,"userID":"7380309120","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7383684265","conversationType":1,"userID":"7383684265","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7386489423","conversationType":1,"userID":"7386489423","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7387576608","conversationType":1,"userID":"7387576608","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7387723009","conversationType":1,"userID":"7387723009","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7388505150","conversationType":1,"userID":"7388505150","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7390780798","conversationType":1,"userID":"7390780798","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7390960328","conversationType":1,"userID":"7390960328","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7401184711","conversationType":1,"userID":"7401184711","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7401733669","conversationType":1,"userID":"7401733669","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7405212428","conversationType":1,"userID":"7405212428","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7410291177","conversationType":1,"userID":"7410291177","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7410632813","conversationType":1,"userID":"7410632813","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7412034038","conversationType":1,"userID":"7412034038","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7412111847","conversationType":1,"userID":"7412111847","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7413274712","conversationType":1,"userID":"7413274712","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7417541042","conversationType":1,"userID":"7417541042","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7420437735","conversationType":1,"userID":"7420437735","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7421821939","conversationType":1,"userID":"7421821939","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7421889399","conversationType":1,"userID":"7421889399","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7428005405","conversationType":1,"userID":"7428005405","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7434856012","conversationType":1,"userID":"7434856012","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7435508463","conversationType":1,"userID":"7435508463","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7436833627","conversationType":1,"userID":"7436833627","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7437040692","conversationType":1,"userID":"7437040692","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7439021681","conversationType":1,"userID":"7439021681","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7439714986","conversationType":1,"userID":"7439714986","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7440672921","conversationType":1,"userID":"7440672921","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7451137864","conversationType":1,"userID":"7451137864","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7453584800","conversationType":1,"userID":"7453584800","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7455859973","conversationType":1,"userID":"7455859973","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7457097377","conversationType":1,"userID":"7457097377","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7457544036","conversationType":1,"userID":"7457544036","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7460559805","conversationType":1,"userID":"7460559805","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7464954417","conversationType":1,"userID":"7464954417","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7466050106","conversationType":1,"userID":"7466050106","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7471550680","conversationType":1,"userID":"7471550680","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7472541978","conversationType":1,"userID":"7472541978","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7475442514","conversationType":1,"userID":"7475442514","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7482603409","conversationType":1,"userID":"7482603409","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7493990096","conversationType":1,"userID":"7493990096","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7497299557","conversationType":1,"userID":"7497299557","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7497605401","conversationType":1,"userID":"7497605401","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7497646189","conversationType":1,"userID":"7497646189","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7498515000","conversationType":1,"userID":"7498515000","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7498542248","conversationType":1,"userID":"7498542248","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7498920587","conversationType":1,"userID":"7498920587","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7503981720","conversationType":1,"userID":"7503981720","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7505224623","conversationType":1,"userID":"7505224623","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7507197097","conversationType":1,"userID":"7507197097","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7516710182","conversationType":1,"userID":"7516710182","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7520656744","conversationType":1,"userID":"7520656744","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7522269845","conversationType":1,"userID":"7522269845","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7523266932","conversationType":1,"userID":"7523266932","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7526687004","conversationType":1,"userID":"7526687004","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7528402713","conversationType":1,"userID":"7528402713","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7529372532","conversationType":1,"userID":"7529372532","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7530200728","conversationType":1,"userID":"7530200728","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7531814579","conversationType":1,"userID":"7531814579","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7534564044","conversationType":1,"userID":"7534564044","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7537628670","conversationType":1,"userID":"7537628670","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7537715718","conversationType":1,"userID":"7537715718","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7537716241","conversationType":1,"userID":"7537716241","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7540355701","conversationType":1,"userID":"7540355701","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7542365341","conversationType":1,"userID":"7542365341","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7546299014","conversationType":1,"userID":"7546299014","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7546355222","conversationType":1,"userID":"7546355222","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7547312758","conversationType":1,"userID":"7547312758","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7548971598","conversationType":1,"userID":"7548971598","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7548985362","conversationType":1,"userID":"7548985362","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7551761509","conversationType":1,"userID":"7551761509","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7552860065","conversationType":1,"userID":"7552860065","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7552997387","conversationType":1,"userID":"7552997387","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7563312911","conversationType":1,"userID":"7563312911","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7564012880","conversationType":1,"userID":"7564012880","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7567294877","conversationType":1,"userID":"7567294877","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7568242587","conversationType":1,"userID":"7568242587","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7569247517","conversationType":1,"userID":"7569247517","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7580742612","conversationType":1,"userID":"7580742612","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7583295966","conversationType":1,"userID":"7583295966","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7586062692","conversationType":1,"userID":"7586062692","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7587745030","conversationType":1,"userID":"7587745030","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7588612675","conversationType":1,"userID":"7588612675","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7589005247","conversationType":1,"userID":"7589005247","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7591217919","conversationType":1,"userID":"7591217919","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7592899422","conversationType":1,"userID":"7592899422","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7594017872","conversationType":1,"userID":"7594017872","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7595717000","conversationType":1,"userID":"7595717000","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7595722240","conversationType":1,"userID":"7595722240","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7597673862","conversationType":1,"userID":"7597673862","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7597689214","conversationType":1,"userID":"7597689214","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7598489536","conversationType":1,"userID":"7598489536","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7598799824","conversationType":1,"userID":"7598799824","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7601958347","conversationType":1,"userID":"7601958347","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7605980080","conversationType":1,"userID":"7605980080","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7608360478","conversationType":1,"userID":"7608360478","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7609581785","conversationType":1,"userID":"7609581785","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7614636349","conversationType":1,"userID":"7614636349","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7614708020","conversationType":1,"userID":"7614708020","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7616246303","conversationType":1,"userID":"7616246303","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7617553749","conversationType":1,"userID":"7617553749","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7618202429","conversationType":1,"userID":"7618202429","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7619603154","conversationType":1,"userID":"7619603154","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7620665389","conversationType":1,"userID":"7620665389","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7622429074","conversationType":1,"userID":"7622429074","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7623650329","conversationType":1,"userID":"7623650329","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7625288814","conversationType":1,"userID":"7625288814","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7626760720","conversationType":1,"userID":"7626760720","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7626981398","conversationType":1,"userID":"7626981398","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7638046648","conversationType":1,"userID":"7638046648","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7638679939","conversationType":1,"userID":"7638679939","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7640096597","conversationType":1,"userID":"7640096597","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7643653997","conversationType":1,"userID":"7643653997","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7644290746","conversationType":1,"userID":"7644290746","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7645589134","conversationType":1,"userID":"7645589134","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7646760743","conversationType":1,"userID":"7646760743","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7650768661","conversationType":1,"userID":"7650768661","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7651888817","conversationType":1,"userID":"7651888817","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7652778337","conversationType":1,"userID":"7652778337","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7656755258","conversationType":1,"userID":"7656755258","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7657717068","conversationType":1,"userID":"7657717068","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7663168591","conversationType":1,"userID":"7663168591","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7664966167","conversationType":1,"userID":"7664966167","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7666852933","conversationType":1,"userID":"7666852933","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7668827828","conversationType":1,"userID":"7668827828","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7671876973","conversationType":1,"userID":"7671876973","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7672451658","conversationType":1,"userID":"7672451658","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7672563564","conversationType":1,"userID":"7672563564","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7673707661","conversationType":1,"userID":"7673707661","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7674566777","conversationType":1,"userID":"7674566777","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7681112296","conversationType":1,"userID":"7681112296","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7681600518","conversationType":1,"userID":"7681600518","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7683585131","conversationType":1,"userID":"7683585131","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7686286348","conversationType":1,"userID":"7686286348","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7687164838","conversationType":1,"userID":"7687164838","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7687371321","conversationType":1,"userID":"7687371321","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7687657759","conversationType":1,"userID":"7687657759","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7688471458","conversationType":1,"userID":"7688471458","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7690669440","conversationType":1,"userID":"7690669440","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7690891476","conversationType":1,"userID":"7690891476","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7690907701","conversationType":1,"userID":"7690907701","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7692607035","conversationType":1,"userID":"7692607035","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7693122919","conversationType":1,"userID":"7693122919","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7695096009","conversationType":1,"userID":"7695096009","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7700927556","conversationType":1,"userID":"7700927556","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7705431741","conversationType":1,"userID":"7705431741","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7706735929","conversationType":1,"userID":"7706735929","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7706881098","conversationType":1,"userID":"7706881098","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7713778154","conversationType":1,"userID":"7713778154","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7718471566","conversationType":1,"userID":"7718471566","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7720758526","conversationType":1,"userID":"7720758526","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7723567114","conversationType":1,"userID":"7723567114","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7724890013","conversationType":1,"userID":"7724890013","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7725196248","conversationType":1,"userID":"7725196248","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7735663030","conversationType":1,"userID":"7735663030","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7735805334","conversationType":1,"userID":"7735805334","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7738761244","conversationType":1,"userID":"7738761244","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7739798150","conversationType":1,"userID":"7739798150","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7740091536","conversationType":1,"userID":"7740091536","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7742247612","conversationType":1,"userID":"7742247612","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7743491557","conversationType":1,"userID":"7743491557","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7743820010","conversationType":1,"userID":"7743820010","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7744500881","conversationType":1,"userID":"7744500881","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7746006896","conversationType":1,"userID":"7746006896","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7748421044","conversationType":1,"userID":"7748421044","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7752672529","conversationType":1,"userID":"7752672529","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7758124650","conversationType":1,"userID":"7758124650","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7760208560","conversationType":1,"userID":"7760208560","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7763239948","conversationType":1,"userID":"7763239948","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7772289742","conversationType":1,"userID":"7772289742","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7773809772","conversationType":1,"userID":"7773809772","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7775655960","conversationType":1,"userID":"7775655960","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7782213970","conversationType":1,"userID":"7782213970","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7788742199","conversationType":1,"userID":"7788742199","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7794187489","conversationType":1,"userID":"7794187489","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7795360622","conversationType":1,"userID":"7795360622","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7802400332","conversationType":1,"userID":"7802400332","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7804901425","conversationType":1,"userID":"7804901425","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7805584149","conversationType":1,"userID":"7805584149","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7819384782","conversationType":1,"userID":"7819384782","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7820542710","conversationType":1,"userID":"7820542710","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7821370665","conversationType":1,"userID":"7821370665","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7821811338","conversationType":1,"userID":"7821811338","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7821875317","conversationType":1,"userID":"7821875317","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7827297461","conversationType":1,"userID":"7827297461","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7828193903","conversationType":1,"userID":"7828193903","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7829456745","conversationType":1,"userID":"7829456745","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7831969873","conversationType":1,"userID":"7831969873","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7832427972","conversationType":1,"userID":"7832427972","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7835799312","conversationType":1,"userID":"7835799312","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7838322353","conversationType":1,"userID":"7838322353","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7839142209","conversationType":1,"userID":"7839142209","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7841293205","conversationType":1,"userID":"7841293205","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7845216380","conversationType":1,"userID":"7845216380","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7847107135","conversationType":1,"userID":"7847107135","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7848167680","conversationType":1,"userID":"7848167680","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7848975164","conversationType":1,"userID":"7848975164","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7849831301","conversationType":1,"userID":"7849831301","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7849988024","conversationType":1,"userID":"7849988024","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7852754787","conversationType":1,"userID":"7852754787","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7853258354","conversationType":1,"userID":"7853258354","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7853514710","conversationType":1,"userID":"7853514710","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7854235526","conversationType":1,"userID":"7854235526","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7854288559","conversationType":1,"userID":"7854288559","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7856252983","conversationType":1,"userID":"7856252983","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7856301343","conversationType":1,"userID":"7856301343","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7859279941","conversationType":1,"userID":"7859279941","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7863511599","conversationType":1,"userID":"7863511599","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7863641493","conversationType":1,"userID":"7863641493","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7864246599","conversationType":1,"userID":"7864246599","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7864780164","conversationType":1,"userID":"7864780164","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7864796432","conversationType":1,"userID":"7864796432","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7865020191","conversationType":1,"userID":"7865020191","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7867796641","conversationType":1,"userID":"7867796641","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7872751431","conversationType":1,"userID":"7872751431","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7873990031","conversationType":1,"userID":"7873990031","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7881930526","conversationType":1,"userID":"7881930526","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7882581966","conversationType":1,"userID":"7882581966","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7882873434","conversationType":1,"userID":"7882873434","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7883407249","conversationType":1,"userID":"7883407249","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7883425769","conversationType":1,"userID":"7883425769","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7884892250","conversationType":1,"userID":"7884892250","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7885995213","conversationType":1,"userID":"7885995213","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7886158239","conversationType":1,"userID":"7886158239","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7894596798","conversationType":1,"userID":"7894596798","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7899640700","conversationType":1,"userID":"7899640700","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7908367677","conversationType":1,"userID":"7908367677","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7910017356","conversationType":1,"userID":"7910017356","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7910323746","conversationType":1,"userID":"7910323746","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7916509152","conversationType":1,"userID":"7916509152","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7920004051","conversationType":1,"userID":"7920004051","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7924475094","conversationType":1,"userID":"7924475094","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7931463251","conversationType":1,"userID":"7931463251","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7933792440","conversationType":1,"userID":"7933792440","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7935004142","conversationType":1,"userID":"7935004142","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7937047670","conversationType":1,"userID":"7937047670","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7939778002","conversationType":1,"userID":"7939778002","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7940483102","conversationType":1,"userID":"7940483102","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7940823833","conversationType":1,"userID":"7940823833","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7943196334","conversationType":1,"userID":"7943196334","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7948102945","conversationType":1,"userID":"7948102945","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7953410222","conversationType":1,"userID":"7953410222","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7955826088","conversationType":1,"userID":"7955826088","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7963718443","conversationType":1,"userID":"7963718443","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7965689513","conversationType":1,"userID":"7965689513","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7966350266","conversationType":1,"userID":"7966350266","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7968032251","conversationType":1,"userID":"7968032251","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7971745226","conversationType":1,"userID":"7971745226","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7977523116","conversationType":1,"userID":"7977523116","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7978095612","conversationType":1,"userID":"7978095612","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7983666862","conversationType":1,"userID":"7983666862","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7986340950","conversationType":1,"userID":"7986340950","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7989321704","conversationType":1,"userID":"7989321704","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_7992150449","conversationType":1,"userID":"7992150449","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7999383414","conversationType":1,"userID":"7999383414","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_7999733965","conversationType":1,"userID":"7999733965","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8001403844","conversationType":1,"userID":"8001403844","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8001502447","conversationType":1,"userID":"8001502447","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8002441294","conversationType":1,"userID":"8002441294","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8002908818","conversationType":1,"userID":"8002908818","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8003800642","conversationType":1,"userID":"8003800642","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8004543435","conversationType":1,"userID":"8004543435","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8005444087","conversationType":1,"userID":"8005444087","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8007107275","conversationType":1,"userID":"8007107275","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8010325165","conversationType":1,"userID":"8010325165","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8014326203","conversationType":1,"userID":"8014326203","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8014370177","conversationType":1,"userID":"8014370177","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8014785059","conversationType":1,"userID":"8014785059","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8016586723","conversationType":1,"userID":"8016586723","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8016920139","conversationType":1,"userID":"8016920139","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8019506801","conversationType":1,"userID":"8019506801","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8019770129","conversationType":1,"userID":"8019770129","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8024594170","conversationType":1,"userID":"8024594170","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8027945462","conversationType":1,"userID":"8027945462","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8027972177","conversationType":1,"userID":"8027972177","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8030188604","conversationType":1,"userID":"8030188604","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8032860565","conversationType":1,"userID":"8032860565","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8035205991","conversationType":1,"userID":"8035205991","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8035577893","conversationType":1,"userID":"8035577893","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8035733598","conversationType":1,"userID":"8035733598","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8039982396","conversationType":1,"userID":"8039982396","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8042010769","conversationType":1,"userID":"8042010769","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8045511039","conversationType":1,"userID":"8045511039","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8046031043","conversationType":1,"userID":"8046031043","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8046251549","conversationType":1,"userID":"8046251549","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8046375945","conversationType":1,"userID":"8046375945","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8046583538","conversationType":1,"userID":"8046583538","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8050675645","conversationType":1,"userID":"8050675645","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8052618451","conversationType":1,"userID":"8052618451","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8053445313","conversationType":1,"userID":"8053445313","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8054377408","conversationType":1,"userID":"8054377408","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8054772199","conversationType":1,"userID":"8054772199","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8055581136","conversationType":1,"userID":"8055581136","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8058212949","conversationType":1,"userID":"8058212949","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8059620844","conversationType":1,"userID":"8059620844","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8062088375","conversationType":1,"userID":"8062088375","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8063035464","conversationType":1,"userID":"8063035464","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8067185378","conversationType":1,"userID":"8067185378","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8073435095","conversationType":1,"userID":"8073435095","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8075032607","conversationType":1,"userID":"8075032607","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8084106990","conversationType":1,"userID":"8084106990","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8085178076","conversationType":1,"userID":"8085178076","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8086558094","conversationType":1,"userID":"8086558094","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8086917283","conversationType":1,"userID":"8086917283","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8087242742","conversationType":1,"userID":"8087242742","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8097498221","conversationType":1,"userID":"8097498221","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8097902004","conversationType":1,"userID":"8097902004","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8100796382","conversationType":1,"userID":"8100796382","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8103868360","conversationType":1,"userID":"8103868360","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8108968441","conversationType":1,"userID":"8108968441","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8111508018","conversationType":1,"userID":"8111508018","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8112346923","conversationType":1,"userID":"8112346923","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8113999096","conversationType":1,"userID":"8113999096","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8120706844","conversationType":1,"userID":"8120706844","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8122384069","conversationType":1,"userID":"8122384069","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8122645018","conversationType":1,"userID":"8122645018","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8126770108","conversationType":1,"userID":"8126770108","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8130195053","conversationType":1,"userID":"8130195053","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8130294134","conversationType":1,"userID":"8130294134","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8131886443","conversationType":1,"userID":"8131886443","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8132082620","conversationType":1,"userID":"8132082620","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8132192086","conversationType":1,"userID":"8132192086","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8133515450","conversationType":1,"userID":"8133515450","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8135354869","conversationType":1,"userID":"8135354869","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8141443295","conversationType":1,"userID":"8141443295","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8141818865","conversationType":1,"userID":"8141818865","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8151192752","conversationType":1,"userID":"8151192752","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8152315569","conversationType":1,"userID":"8152315569","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8154138523","conversationType":1,"userID":"8154138523","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8156807776","conversationType":1,"userID":"8156807776","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8157216998","conversationType":1,"userID":"8157216998","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8160058880","conversationType":1,"userID":"8160058880","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8160095492","conversationType":1,"userID":"8160095492","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8166932809","conversationType":1,"userID":"8166932809","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8167633898","conversationType":1,"userID":"8167633898","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8169511346","conversationType":1,"userID":"8169511346","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8170675637","conversationType":1,"userID":"8170675637","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8172345347","conversationType":1,"userID":"8172345347","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8180241502","conversationType":1,"userID":"8180241502","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8182249376","conversationType":1,"userID":"8182249376","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8186105078","conversationType":1,"userID":"8186105078","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8187575584","conversationType":1,"userID":"8187575584","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8189440989","conversationType":1,"userID":"8189440989","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8190298841","conversationType":1,"userID":"8190298841","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8193549184","conversationType":1,"userID":"8193549184","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8197784678","conversationType":1,"userID":"8197784678","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8203292432","conversationType":1,"userID":"8203292432","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8207174748","conversationType":1,"userID":"8207174748","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8210397277","conversationType":1,"userID":"8210397277","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8211291202","conversationType":1,"userID":"8211291202","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8211720551","conversationType":1,"userID":"8211720551","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8213594817","conversationType":1,"userID":"8213594817","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8215486465","conversationType":1,"userID":"8215486465","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8216642294","conversationType":1,"userID":"8216642294","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8217169171","conversationType":1,"userID":"8217169171","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8217784296","conversationType":1,"userID":"8217784296","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8219584363","conversationType":1,"userID":"8219584363","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8220710471","conversationType":1,"userID":"8220710471","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8222037249","conversationType":1,"userID":"8222037249","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8222979522","conversationType":1,"userID":"8222979522","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8223657315","conversationType":1,"userID":"8223657315","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8223705362","conversationType":1,"userID":"8223705362","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8224334313","conversationType":1,"userID":"8224334313","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8228094145","conversationType":1,"userID":"8228094145","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8228097998","conversationType":1,"userID":"8228097998","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8229812969","conversationType":1,"userID":"8229812969","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8231032558","conversationType":1,"userID":"8231032558","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8233508874","conversationType":1,"userID":"8233508874","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8235499624","conversationType":1,"userID":"8235499624","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8235631682","conversationType":1,"userID":"8235631682","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8242204929","conversationType":1,"userID":"8242204929","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8246905074","conversationType":1,"userID":"8246905074","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8248153723","conversationType":1,"userID":"8248153723","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8251671425","conversationType":1,"userID":"8251671425","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8253692052","conversationType":1,"userID":"8253692052","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8257796971","conversationType":1,"userID":"8257796971","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8273990937","conversationType":1,"userID":"8273990937","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8277724734","conversationType":1,"userID":"8277724734","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8281432408","conversationType":1,"userID":"8281432408","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8288812105","conversationType":1,"userID":"8288812105","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8290926771","conversationType":1,"userID":"8290926771","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8303454241","conversationType":1,"userID":"8303454241","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8309118101","conversationType":1,"userID":"8309118101","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8309865529","conversationType":1,"userID":"8309865529","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8310010694","conversationType":1,"userID":"8310010694","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8310070431","conversationType":1,"userID":"8310070431","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8311991667","conversationType":1,"userID":"8311991667","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8313094015","conversationType":1,"userID":"8313094015","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8316865470","conversationType":1,"userID":"8316865470","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8317468172","conversationType":1,"userID":"8317468172","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8319353787","conversationType":1,"userID":"8319353787","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8322698564","conversationType":1,"userID":"8322698564","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8327482141","conversationType":1,"userID":"8327482141","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8327820770","conversationType":1,"userID":"8327820770","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8328543245","conversationType":1,"userID":"8328543245","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8328850356","conversationType":1,"userID":"8328850356","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8329982339","conversationType":1,"userID":"8329982339","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8331569195","conversationType":1,"userID":"8331569195","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8335825785","conversationType":1,"userID":"8335825785","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8337539661","conversationType":1,"userID":"8337539661","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8341999149","conversationType":1,"userID":"8341999149","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8342189311","conversationType":1,"userID":"8342189311","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8344051901","conversationType":1,"userID":"8344051901","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8346004149","conversationType":1,"userID":"8346004149","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8347503157","conversationType":1,"userID":"8347503157","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8350518493","conversationType":1,"userID":"8350518493","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8351972815","conversationType":1,"userID":"8351972815","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8352206292","conversationType":1,"userID":"8352206292","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8353064427","conversationType":1,"userID":"8353064427","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8353160172","conversationType":1,"userID":"8353160172","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8353955233","conversationType":1,"userID":"8353955233","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8355159098","conversationType":1,"userID":"8355159098","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8358518421","conversationType":1,"userID":"8358518421","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8359082623","conversationType":1,"userID":"8359082623","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8366012391","conversationType":1,"userID":"8366012391","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8367461388","conversationType":1,"userID":"8367461388","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8372997122","conversationType":1,"userID":"8372997122","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8377093987","conversationType":1,"userID":"8377093987","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8381623910","conversationType":1,"userID":"8381623910","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8382061243","conversationType":1,"userID":"8382061243","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8384057593","conversationType":1,"userID":"8384057593","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8384689749","conversationType":1,"userID":"8384689749","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8386666767","conversationType":1,"userID":"8386666767","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8386793499","conversationType":1,"userID":"8386793499","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8388063569","conversationType":1,"userID":"8388063569","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8389624275","conversationType":1,"userID":"8389624275","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8392406358","conversationType":1,"userID":"8392406358","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8393853819","conversationType":1,"userID":"8393853819","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8395917828","conversationType":1,"userID":"8395917828","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8396980904","conversationType":1,"userID":"8396980904","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8398865107","conversationType":1,"userID":"8398865107","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8399956257","conversationType":1,"userID":"8399956257","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8400344163","conversationType":1,"userID":"8400344163","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8404373294","conversationType":1,"userID":"8404373294","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8407403125","conversationType":1,"userID":"8407403125","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8409494864","conversationType":1,"userID":"8409494864","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8411599332","conversationType":1,"userID":"8411599332","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8421561159","conversationType":1,"userID":"8421561159","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8423008156","conversationType":1,"userID":"8423008156","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8426622833","conversationType":1,"userID":"8426622833","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8427634569","conversationType":1,"userID":"8427634569","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8428572486","conversationType":1,"userID":"8428572486","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8436024021","conversationType":1,"userID":"8436024021","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8436643404","conversationType":1,"userID":"8436643404","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8439362049","conversationType":1,"userID":"8439362049","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8440760987","conversationType":1,"userID":"8440760987","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8442809460","conversationType":1,"userID":"8442809460","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8443036798","conversationType":1,"userID":"8443036798","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8443805897","conversationType":1,"userID":"8443805897","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":true,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8445041485","conversationType":1,"userID":"8445041485","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8445330073","conversationType":1,"userID":"8445330073","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8446005763","conversationType":1,"userID":"8446005763","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8446372231","conversationType":1,"userID":"8446372231","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8447534661","conversationType":1,"userID":"8447534661","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8447585718","conversationType":1,"userID":"8447585718","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8447830068","conversationType":1,"userID":"8447830068","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8448409603","conversationType":1,"userID":"8448409603","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8450512511","conversationType":1,"userID":"8450512511","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8451470030","conversationType":1,"userID":"8451470030","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8454189295","conversationType":1,"userID":"8454189295","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8455239611","conversationType":1,"userID":"8455239611","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8455935596","conversationType":1,"userID":"8455935596","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8460084433","conversationType":1,"userID":"8460084433","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8460784953","conversationType":1,"userID":"8460784953","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8463876330","conversationType":1,"userID":"8463876330","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8472084588","conversationType":1,"userID":"8472084588","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8474885327","conversationType":1,"userID":"8474885327","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8476059904","conversationType":1,"userID":"8476059904","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8477220212","conversationType":1,"userID":"8477220212","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8477469958","conversationType":1,"userID":"8477469958","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8480505964","conversationType":1,"userID":"8480505964","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8485512774","conversationType":1,"userID":"8485512774","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8486013399","conversationType":1,"userID":"8486013399","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8486574742","conversationType":1,"userID":"8486574742","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8491654430","conversationType":1,"userID":"8491654430","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8491971056","conversationType":1,"userID":"8491971056","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8491976474","conversationType":1,"userID":"8491976474","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8492016735","conversationType":1,"userID":"8492016735","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8494962468","conversationType":1,"userID":"8494962468","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8500228563","conversationType":1,"userID":"8500228563","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8506767167","conversationType":1,"userID":"8506767167","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8506981030","conversationType":1,"userID":"8506981030","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8513362072","conversationType":1,"userID":"8513362072","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8513600314","conversationType":1,"userID":"8513600314","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8514393726","conversationType":1,"userID":"8514393726","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8518800133","conversationType":1,"userID":"8518800133","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8519918280","conversationType":1,"userID":"8519918280","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8521256224","conversationType":1,"userID":"8521256224","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8525520412","conversationType":1,"userID":"8525520412","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8527411023","conversationType":1,"userID":"8527411023","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8528240286","conversationType":1,"userID":"8528240286","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8528989010","conversationType":1,"userID":"8528989010","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8529766319","conversationType":1,"userID":"8529766319","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8532602548","conversationType":1,"userID":"8532602548","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8533102456","conversationType":1,"userID":"8533102456","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8535351180","conversationType":1,"userID":"8535351180","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8536119014","conversationType":1,"userID":"8536119014","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8542303515","conversationType":1,"userID":"8542303515","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8542573282","conversationType":1,"userID":"8542573282","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8544654562","conversationType":1,"userID":"8544654562","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8550907162","conversationType":1,"userID":"8550907162","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8551912178","conversationType":1,"userID":"8551912178","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8552815569","conversationType":1,"userID":"8552815569","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8558447046","conversationType":1,"userID":"8558447046","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8558757778","conversationType":1,"userID":"8558757778","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8560487083","conversationType":1,"userID":"8560487083","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8560709818","conversationType":1,"userID":"8560709818","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8560928083","conversationType":1,"userID":"8560928083","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8569604066","conversationType":1,"userID":"8569604066","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8571433263","conversationType":1,"userID":"8571433263","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8571544480","conversationType":1,"userID":"8571544480","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8573571335","conversationType":1,"userID":"8573571335","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8578360952","conversationType":1,"userID":"8578360952","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8580630933","conversationType":1,"userID":"8580630933","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8583690065","conversationType":1,"userID":"8583690065","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8586878608","conversationType":1,"userID":"8586878608","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8592196566","conversationType":1,"userID":"8592196566","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8595026997","conversationType":1,"userID":"8595026997","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8596140148","conversationType":1,"userID":"8596140148","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8596270879","conversationType":1,"userID":"8596270879","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8602919066","conversationType":1,"userID":"8602919066","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8604696550","conversationType":1,"userID":"8604696550","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8605733793","conversationType":1,"userID":"8605733793","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8606367434","conversationType":1,"userID":"8606367434","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8607110044","conversationType":1,"userID":"8607110044","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8607773408","conversationType":1,"userID":"8607773408","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8612888823","conversationType":1,"userID":"8612888823","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8613544365","conversationType":1,"userID":"8613544365","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8614413702","conversationType":1,"userID":"8614413702","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8627323715","conversationType":1,"userID":"8627323715","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8630184960","conversationType":1,"userID":"8630184960","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8632216197","conversationType":1,"userID":"8632216197","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8633297465","conversationType":1,"userID":"8633297465","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8634312196","conversationType":1,"userID":"8634312196","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8638304663","conversationType":1,"userID":"8638304663","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8640390697","conversationType":1,"userID":"8640390697","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8640727499","conversationType":1,"userID":"8640727499","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8643787495","conversationType":1,"userID":"8643787495","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8645597251","conversationType":1,"userID":"8645597251","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8646025601","conversationType":1,"userID":"8646025601","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8651668431","conversationType":1,"userID":"8651668431","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8655191799","conversationType":1,"userID":"8655191799","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8658174960","conversationType":1,"userID":"8658174960","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8661722129","conversationType":1,"userID":"8661722129","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8662971476","conversationType":1,"userID":"8662971476","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8670587296","conversationType":1,"userID":"8670587296","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8673764134","conversationType":1,"userID":"8673764134","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8674470583","conversationType":1,"userID":"8674470583","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8684237507","conversationType":1,"userID":"8684237507","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8685038399","conversationType":1,"userID":"8685038399","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8688389470","conversationType":1,"userID":"8688389470","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8690034954","conversationType":1,"userID":"8690034954","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8702643096","conversationType":1,"userID":"8702643096","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8703200712","conversationType":1,"userID":"8703200712","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8703273727","conversationType":1,"userID":"8703273727","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8704081460","conversationType":1,"userID":"8704081460","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8706087313","conversationType":1,"userID":"8706087313","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8707396681","conversationType":1,"userID":"8707396681","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8707676360","conversationType":1,"userID":"8707676360","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8710375221","conversationType":1,"userID":"8710375221","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8710553462","conversationType":1,"userID":"8710553462","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8713397018","conversationType":1,"userID":"8713397018","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8715898882","conversationType":1,"userID":"8715898882","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8716098319","conversationType":1,"userID":"8716098319","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8716428571","conversationType":1,"userID":"8716428571","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8720844433","conversationType":1,"userID":"8720844433","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8726009685","conversationType":1,"userID":"8726009685","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8728868295","conversationType":1,"userID":"8728868295","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8729072173","conversationType":1,"userID":"8729072173","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8730568673","conversationType":1,"userID":"8730568673","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8733936530","conversationType":1,"userID":"8733936530","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8734166382","conversationType":1,"userID":"8734166382","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8737115397","conversationType":1,"userID":"8737115397","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8742211895","conversationType":1,"userID":"8742211895","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8742676847","conversationType":1,"userID":"8742676847","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8744886846","conversationType":1,"userID":"8744886846","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8745122471","conversationType":1,"userID":"8745122471","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8747127597","conversationType":1,"userID":"8747127597","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8749558646","conversationType":1,"userID":"8749558646","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8753413980","conversationType":1,"userID":"8753413980","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8754850165","conversationType":1,"userID":"8754850165","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8755718549","conversationType":1,"userID":"8755718549","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8756835768","conversationType":1,"userID":"8756835768","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8759251402","conversationType":1,"userID":"8759251402","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8760812670","conversationType":1,"userID":"8760812670","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8762493296","conversationType":1,"userID":"8762493296","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8763788974","conversationType":1,"userID":"8763788974","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8770027856","conversationType":1,"userID":"8770027856","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8772228740","conversationType":1,"userID":"8772228740","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8773081922","conversationType":1,"userID":"8773081922","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8776392357","conversationType":1,"userID":"8776392357","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8777730167","conversationType":1,"userID":"8777730167","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8778175043","conversationType":1,"userID":"8778175043","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8780182642","conversationType":1,"userID":"8780182642","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8783516485","conversationType":1,"userID":"8783516485","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8785536899","conversationType":1,"userID":"8785536899","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8790335385","conversationType":1,"userID":"8790335385","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8795307407","conversationType":1,"userID":"8795307407","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8804352974","conversationType":1,"userID":"8804352974","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8804394305","conversationType":1,"userID":"8804394305","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8808621985","conversationType":1,"userID":"8808621985","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8810821200","conversationType":1,"userID":"8810821200","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8811129708","conversationType":1,"userID":"8811129708","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8816137600","conversationType":1,"userID":"8816137600","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8818424284","conversationType":1,"userID":"8818424284","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":true,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8822537455","conversationType":1,"userID":"8822537455","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8823387090","conversationType":1,"userID":"8823387090","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8825966823","conversationType":1,"userID":"8825966823","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8834765444","conversationType":1,"userID":"8834765444","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8835887772","conversationType":1,"userID":"8835887772","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8837652030","conversationType":1,"userID":"8837652030","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8838551480","conversationType":1,"userID":"8838551480","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8842425902","conversationType":1,"userID":"8842425902","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8843246052","conversationType":1,"userID":"8843246052","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8844820087","conversationType":1,"userID":"8844820087","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8845469662","conversationType":1,"userID":"8845469662","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8849899924","conversationType":1,"userID":"8849899924","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8854356304","conversationType":1,"userID":"8854356304","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8856017589","conversationType":1,"userID":"8856017589","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8861830064","conversationType":1,"userID":"8861830064","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8862348169","conversationType":1,"userID":"8862348169","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8864056106","conversationType":1,"userID":"8864056106","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8864850031","conversationType":1,"userID":"8864850031","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8866143916","conversationType":1,"userID":"8866143916","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8867254112","conversationType":1,"userID":"8867254112","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8867850391","conversationType":1,"userID":"8867850391","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8871211861","conversationType":1,"userID":"8871211861","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8871946613","conversationType":1,"userID":"8871946613","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8875139244","conversationType":1,"userID":"8875139244","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8879166186","conversationType":1,"userID":"8879166186","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8887175905","conversationType":1,"userID":"8887175905","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8888752880","conversationType":1,"userID":"8888752880","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8890058811","conversationType":1,"userID":"8890058811","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8893611164","conversationType":1,"userID":"8893611164","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8893615815","conversationType":1,"userID":"8893615815","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8895487701","conversationType":1,"userID":"8895487701","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8897379573","conversationType":1,"userID":"8897379573","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8900826469","conversationType":1,"userID":"8900826469","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8902885136","conversationType":1,"userID":"8902885136","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8903011297","conversationType":1,"userID":"8903011297","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8904622411","conversationType":1,"userID":"8904622411","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8906837393","conversationType":1,"userID":"8906837393","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8909124208","conversationType":1,"userID":"8909124208","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8913400006","conversationType":1,"userID":"8913400006","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8914287800","conversationType":1,"userID":"8914287800","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8915465584","conversationType":1,"userID":"8915465584","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8916321939","conversationType":1,"userID":"8916321939","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8920262959","conversationType":1,"userID":"8920262959","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8923283070","conversationType":1,"userID":"8923283070","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8929623425","conversationType":1,"userID":"8929623425","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8929662634","conversationType":1,"userID":"8929662634","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8930133512","conversationType":1,"userID":"8930133512","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8930791679","conversationType":1,"userID":"8930791679","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8933317719","conversationType":1,"userID":"8933317719","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8935113461","conversationType":1,"userID":"8935113461","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8938639079","conversationType":1,"userID":"8938639079","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8941452423","conversationType":1,"userID":"8941452423","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8942102453","conversationType":1,"userID":"8942102453","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8947488684","conversationType":1,"userID":"8947488684","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8952393298","conversationType":1,"userID":"8952393298","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8954088752","conversationType":1,"userID":"8954088752","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8960131587","conversationType":1,"userID":"8960131587","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8962513708","conversationType":1,"userID":"8962513708","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8965027422","conversationType":1,"userID":"8965027422","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8968372134","conversationType":1,"userID":"8968372134","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8968471931","conversationType":1,"userID":"8968471931","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8970340990","conversationType":1,"userID":"8970340990","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8970561974","conversationType":1,"userID":"8970561974","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8973956467","conversationType":1,"userID":"8973956467","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8977536940","conversationType":1,"userID":"8977536940","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8983932611","conversationType":1,"userID":"8983932611","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8985349171","conversationType":1,"userID":"8985349171","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8989584694","conversationType":1,"userID":"8989584694","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_8995127909","conversationType":1,"userID":"8995127909","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_8996361146","conversationType":1,"userID":"8996361146","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9000953253","conversationType":1,"userID":"9000953253","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9003478301","conversationType":1,"userID":"9003478301","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9003815934","conversationType":1,"userID":"9003815934","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9007292080","conversationType":1,"userID":"9007292080","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9010532005","conversationType":1,"userID":"9010532005","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9020451503","conversationType":1,"userID":"9020451503","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9020580531","conversationType":1,"userID":"9020580531","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9025203324","conversationType":1,"userID":"9025203324","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9027590510","conversationType":1,"userID":"9027590510","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9029297866","conversationType":1,"userID":"9029297866","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9032177660","conversationType":1,"userID":"9032177660","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9034112568","conversationType":1,"userID":"9034112568","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9037074021","conversationType":1,"userID":"9037074021","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9037264818","conversationType":1,"userID":"9037264818","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9040385718","conversationType":1,"userID":"9040385718","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9040944073","conversationType":1,"userID":"9040944073","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9044201385","conversationType":1,"userID":"9044201385","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9045616204","conversationType":1,"userID":"9045616204","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9049515564","conversationType":1,"userID":"9049515564","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9051266058","conversationType":1,"userID":"9051266058","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9056140426","conversationType":1,"userID":"9056140426","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9067017669","conversationType":1,"userID":"9067017669","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9068307497","conversationType":1,"userID":"9068307497","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9068605463","conversationType":1,"userID":"9068605463","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9070071192","conversationType":1,"userID":"9070071192","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9071076459","conversationType":1,"userID":"9071076459","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9080019804","conversationType":1,"userID":"9080019804","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9080128965","conversationType":1,"userID":"9080128965","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9082391908","conversationType":1,"userID":"9082391908","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9083542109","conversationType":1,"userID":"9083542109","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9085091731","conversationType":1,"userID":"9085091731","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9089447149","conversationType":1,"userID":"9089447149","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9090358505","conversationType":1,"userID":"9090358505","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9096135733","conversationType":1,"userID":"9096135733","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9100792481","conversationType":1,"userID":"9100792481","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9103065505","conversationType":1,"userID":"9103065505","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9105258430","conversationType":1,"userID":"9105258430","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9107290642","conversationType":1,"userID":"9107290642","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9112045680","conversationType":1,"userID":"9112045680","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9114286848","conversationType":1,"userID":"9114286848","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9116950939","conversationType":1,"userID":"9116950939","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9118393507","conversationType":1,"userID":"9118393507","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9118795910","conversationType":1,"userID":"9118795910","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9119188102","conversationType":1,"userID":"9119188102","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9131370628","conversationType":1,"userID":"9131370628","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9135721405","conversationType":1,"userID":"9135721405","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9135822963","conversationType":1,"userID":"9135822963","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9141546417","conversationType":1,"userID":"9141546417","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9145170670","conversationType":1,"userID":"9145170670","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9147986978","conversationType":1,"userID":"9147986978","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9149427188","conversationType":1,"userID":"9149427188","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9150657351","conversationType":1,"userID":"9150657351","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9151446701","conversationType":1,"userID":"9151446701","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9154529184","conversationType":1,"userID":"9154529184","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9160100453","conversationType":1,"userID":"9160100453","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9162279391","conversationType":1,"userID":"9162279391","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9162422557","conversationType":1,"userID":"9162422557","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":true,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9163061763","conversationType":1,"userID":"9163061763","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9163773981","conversationType":1,"userID":"9163773981","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9169530932","conversationType":1,"userID":"9169530932","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9172155059","conversationType":1,"userID":"9172155059","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9174875302","conversationType":1,"userID":"9174875302","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9174916284","conversationType":1,"userID":"9174916284","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9186029513","conversationType":1,"userID":"9186029513","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9186764264","conversationType":1,"userID":"9186764264","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9187643068","conversationType":1,"userID":"9187643068","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9192054233","conversationType":1,"userID":"9192054233","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9194384134","conversationType":1,"userID":"9194384134","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9199088622","conversationType":1,"userID":"9199088622","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9200307656","conversationType":1,"userID":"9200307656","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9201875027","conversationType":1,"userID":"9201875027","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9203035243","conversationType":1,"userID":"9203035243","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9204866505","conversationType":1,"userID":"9204866505","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9207250971","conversationType":1,"userID":"9207250971","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9207372851","conversationType":1,"userID":"9207372851","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9210231392","conversationType":1,"userID":"9210231392","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9212086649","conversationType":1,"userID":"9212086649","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9213219531","conversationType":1,"userID":"9213219531","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9213270709","conversationType":1,"userID":"9213270709","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9215480998","conversationType":1,"userID":"9215480998","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9222153994","conversationType":1,"userID":"9222153994","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9226474938","conversationType":1,"userID":"9226474938","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9226621324","conversationType":1,"userID":"9226621324","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9230292610","conversationType":1,"userID":"9230292610","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9232651207","conversationType":1,"userID":"9232651207","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9232803518","conversationType":1,"userID":"9232803518","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9235143815","conversationType":1,"userID":"9235143815","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9236237184","conversationType":1,"userID":"9236237184","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9239211252","conversationType":1,"userID":"9239211252","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9241165972","conversationType":1,"userID":"9241165972","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9245513894","conversationType":1,"userID":"9245513894","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9256183013","conversationType":1,"userID":"9256183013","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9258059350","conversationType":1,"userID":"9258059350","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9259033011","conversationType":1,"userID":"9259033011","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9260806687","conversationType":1,"userID":"9260806687","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9270676203","conversationType":1,"userID":"9270676203","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9278741003","conversationType":1,"userID":"9278741003","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9279909751","conversationType":1,"userID":"9279909751","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9284068632","conversationType":1,"userID":"9284068632","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9286519455","conversationType":1,"userID":"9286519455","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9287504890","conversationType":1,"userID":"9287504890","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9287571322","conversationType":1,"userID":"9287571322","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9292952971","conversationType":1,"userID":"9292952971","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9294815765","conversationType":1,"userID":"9294815765","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9297701491","conversationType":1,"userID":"9297701491","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9300628809","conversationType":1,"userID":"9300628809","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9304736762","conversationType":1,"userID":"9304736762","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9307746287","conversationType":1,"userID":"9307746287","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9308608945","conversationType":1,"userID":"9308608945","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9314613531","conversationType":1,"userID":"9314613531","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9314649429","conversationType":1,"userID":"9314649429","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9319190585","conversationType":1,"userID":"9319190585","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9321533406","conversationType":1,"userID":"9321533406","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9322486252","conversationType":1,"userID":"9322486252","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9323583122","conversationType":1,"userID":"9323583122","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9325103737","conversationType":1,"userID":"9325103737","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9325129123","conversationType":1,"userID":"9325129123","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9325990223","conversationType":1,"userID":"9325990223","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9327284155","conversationType":1,"userID":"9327284155","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9333402846","conversationType":1,"userID":"9333402846","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9339787004","conversationType":1,"userID":"9339787004","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9340752329","conversationType":1,"userID":"9340752329","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9341886465","conversationType":1,"userID":"9341886465","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9344140649","conversationType":1,"userID":"9344140649","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9346971193","conversationType":1,"userID":"9346971193","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9352579651","conversationType":1,"userID":"9352579651","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9352645028","conversationType":1,"userID":"9352645028","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9356390327","conversationType":1,"userID":"9356390327","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9361332642","conversationType":1,"userID":"9361332642","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9362736373","conversationType":1,"userID":"9362736373","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9364103352","conversationType":1,"userID":"9364103352","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9366122795","conversationType":1,"userID":"9366122795","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9368797440","conversationType":1,"userID":"9368797440","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9372262219","conversationType":1,"userID":"9372262219","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9373564014","conversationType":1,"userID":"9373564014","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9377917340","conversationType":1,"userID":"9377917340","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9379217721","conversationType":1,"userID":"9379217721","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9387380418","conversationType":1,"userID":"9387380418","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9387672850","conversationType":1,"userID":"9387672850","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9387674715","conversationType":1,"userID":"9387674715","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9389457938","conversationType":1,"userID":"9389457938","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9389885910","conversationType":1,"userID":"9389885910","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9391314599","conversationType":1,"userID":"9391314599","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9393341134","conversationType":1,"userID":"9393341134","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9395180616","conversationType":1,"userID":"9395180616","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9397128201","conversationType":1,"userID":"9397128201","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9397440115","conversationType":1,"userID":"9397440115","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9397654697","conversationType":1,"userID":"9397654697","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9398362109","conversationType":1,"userID":"9398362109","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9404981493","conversationType":1,"userID":"9404981493","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9408449152","conversationType":1,"userID":"9408449152","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9410605811","conversationType":1,"userID":"9410605811","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9410947536","conversationType":1,"userID":"9410947536","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9413853471","conversationType":1,"userID":"9413853471","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9418340681","conversationType":1,"userID":"9418340681","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9418897256","conversationType":1,"userID":"9418897256","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9419791140","conversationType":1,"userID":"9419791140","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9422344882","conversationType":1,"userID":"9422344882","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9422520919","conversationType":1,"userID":"9422520919","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9423702981","conversationType":1,"userID":"9423702981","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9431649345","conversationType":1,"userID":"9431649345","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9432000750","conversationType":1,"userID":"9432000750","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9438519163","conversationType":1,"userID":"9438519163","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9438619402","conversationType":1,"userID":"9438619402","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9438981908","conversationType":1,"userID":"9438981908","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9443124661","conversationType":1,"userID":"9443124661","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9444808535","conversationType":1,"userID":"9444808535","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9447003536","conversationType":1,"userID":"9447003536","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9449123364","conversationType":1,"userID":"9449123364","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9450945642","conversationType":1,"userID":"9450945642","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9453001659","conversationType":1,"userID":"9453001659","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9454312989","conversationType":1,"userID":"9454312989","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9454452545","conversationType":1,"userID":"9454452545","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9458613234","conversationType":1,"userID":"9458613234","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9460029109","conversationType":1,"userID":"9460029109","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9460753612","conversationType":1,"userID":"9460753612","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9471807266","conversationType":1,"userID":"9471807266","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9472932551","conversationType":1,"userID":"9472932551","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9475126952","conversationType":1,"userID":"9475126952","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9477456745","conversationType":1,"userID":"9477456745","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9479262868","conversationType":1,"userID":"9479262868","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9480889921","conversationType":1,"userID":"9480889921","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9482224389","conversationType":1,"userID":"9482224389","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9486728724","conversationType":1,"userID":"9486728724","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9486760817","conversationType":1,"userID":"9486760817","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9489899104","conversationType":1,"userID":"9489899104","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9490698152","conversationType":1,"userID":"9490698152","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9494685925","conversationType":1,"userID":"9494685925","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9499885295","conversationType":1,"userID":"9499885295","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9503928702","conversationType":1,"userID":"9503928702","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9504590132","conversationType":1,"userID":"9504590132","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9510908752","conversationType":1,"userID":"9510908752","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9511107616","conversationType":1,"userID":"9511107616","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9511397734","conversationType":1,"userID":"9511397734","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9515603026","conversationType":1,"userID":"9515603026","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9520465181","conversationType":1,"userID":"9520465181","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9525788516","conversationType":1,"userID":"9525788516","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9526715559","conversationType":1,"userID":"9526715559","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9527221323","conversationType":1,"userID":"9527221323","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9527412250","conversationType":1,"userID":"9527412250","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9528720745","conversationType":1,"userID":"9528720745","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9531540758","conversationType":1,"userID":"9531540758","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9533255877","conversationType":1,"userID":"9533255877","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9540077489","conversationType":1,"userID":"9540077489","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9543282502","conversationType":1,"userID":"9543282502","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9547736560","conversationType":1,"userID":"9547736560","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9550545034","conversationType":1,"userID":"9550545034","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9550992804","conversationType":1,"userID":"9550992804","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9554479163","conversationType":1,"userID":"9554479163","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9556144042","conversationType":1,"userID":"9556144042","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9560430025","conversationType":1,"userID":"9560430025","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9560540812","conversationType":1,"userID":"9560540812","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9564525723","conversationType":1,"userID":"9564525723","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9564624893","conversationType":1,"userID":"9564624893","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9566846106","conversationType":1,"userID":"9566846106","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9567110804","conversationType":1,"userID":"9567110804","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9568064166","conversationType":1,"userID":"9568064166","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9569742620","conversationType":1,"userID":"9569742620","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9575344330","conversationType":1,"userID":"9575344330","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9582809602","conversationType":1,"userID":"9582809602","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9584879278","conversationType":1,"userID":"9584879278","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9588309595","conversationType":1,"userID":"9588309595","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9593910181","conversationType":1,"userID":"9593910181","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9594595817","conversationType":1,"userID":"9594595817","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9596530901","conversationType":1,"userID":"9596530901","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9598993999","conversationType":1,"userID":"9598993999","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9600160441","conversationType":1,"userID":"9600160441","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9600612423","conversationType":1,"userID":"9600612423","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9603303533","conversationType":1,"userID":"9603303533","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9605342546","conversationType":1,"userID":"9605342546","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9609727061","conversationType":1,"userID":"9609727061","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9612741669","conversationType":1,"userID":"9612741669","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9615126029","conversationType":1,"userID":"9615126029","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9617075837","conversationType":1,"userID":"9617075837","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9621471724","conversationType":1,"userID":"9621471724","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9624703660","conversationType":1,"userID":"9624703660","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9626290005","conversationType":1,"userID":"9626290005","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9630683705","conversationType":1,"userID":"9630683705","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9632964455","conversationType":1,"userID":"9632964455","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9633093534","conversationType":1,"userID":"9633093534","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9636841804","conversationType":1,"userID":"9636841804","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9640092689","conversationType":1,"userID":"9640092689","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9640271868","conversationType":1,"userID":"9640271868","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9643981165","conversationType":1,"userID":"9643981165","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9644984361","conversationType":1,"userID":"9644984361","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9646811476","conversationType":1,"userID":"9646811476","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9652403347","conversationType":1,"userID":"9652403347","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9653906508","conversationType":1,"userID":"9653906508","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9653932291","conversationType":1,"userID":"9653932291","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9654809682","conversationType":1,"userID":"9654809682","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9655460349","conversationType":1,"userID":"9655460349","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9658470863","conversationType":1,"userID":"9658470863","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9661736644","conversationType":1,"userID":"9661736644","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9662422985","conversationType":1,"userID":"9662422985","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9665249754","conversationType":1,"userID":"9665249754","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9666798322","conversationType":1,"userID":"9666798322","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9668702178","conversationType":1,"userID":"9668702178","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9675738355","conversationType":1,"userID":"9675738355","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9676545595","conversationType":1,"userID":"9676545595","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9680261978","conversationType":1,"userID":"9680261978","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9681562907","conversationType":1,"userID":"9681562907","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9682481051","conversationType":1,"userID":"9682481051","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9688178922","conversationType":1,"userID":"9688178922","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9692122176","conversationType":1,"userID":"9692122176","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9694696718","conversationType":1,"userID":"9694696718","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9701519461","conversationType":1,"userID":"9701519461","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9701705776","conversationType":1,"userID":"9701705776","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9702179908","conversationType":1,"userID":"9702179908","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9702639521","conversationType":1,"userID":"9702639521","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9704234829","conversationType":1,"userID":"9704234829","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9705413308","conversationType":1,"userID":"9705413308","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9715723472","conversationType":1,"userID":"9715723472","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9716918074","conversationType":1,"userID":"9716918074","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9719817461","conversationType":1,"userID":"9719817461","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9720699376","conversationType":1,"userID":"9720699376","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9721005199","conversationType":1,"userID":"9721005199","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9726843811","conversationType":1,"userID":"9726843811","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9729290732","conversationType":1,"userID":"9729290732","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9729475227","conversationType":1,"userID":"9729475227","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9730546629","conversationType":1,"userID":"9730546629","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9732821029","conversationType":1,"userID":"9732821029","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9735131442","conversationType":1,"userID":"9735131442","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9735240223","conversationType":1,"userID":"9735240223","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9735279232","conversationType":1,"userID":"9735279232","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9736240141","conversationType":1,"userID":"9736240141","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9738388188","conversationType":1,"userID":"9738388188","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9740262193","conversationType":1,"userID":"9740262193","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9740640735","conversationType":1,"userID":"9740640735","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9743886962","conversationType":1,"userID":"9743886962","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9745952656","conversationType":1,"userID":"9745952656","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9751997142","conversationType":1,"userID":"9751997142","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9758913988","conversationType":1,"userID":"9758913988","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9760925339","conversationType":1,"userID":"9760925339","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9761298760","conversationType":1,"userID":"9761298760","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9762221880","conversationType":1,"userID":"9762221880","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9762257538","conversationType":1,"userID":"9762257538","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9762702751","conversationType":1,"userID":"9762702751","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9762995627","conversationType":1,"userID":"9762995627","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9765318831","conversationType":1,"userID":"9765318831","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9765325563","conversationType":1,"userID":"9765325563","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9769121468","conversationType":1,"userID":"9769121468","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9771313310","conversationType":1,"userID":"9771313310","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9773300745","conversationType":1,"userID":"9773300745","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9778520303","conversationType":1,"userID":"9778520303","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9783316715","conversationType":1,"userID":"9783316715","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9783788754","conversationType":1,"userID":"9783788754","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9784306149","conversationType":1,"userID":"9784306149","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9786979096","conversationType":1,"userID":"9786979096","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9789697248","conversationType":1,"userID":"9789697248","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9790545188","conversationType":1,"userID":"9790545188","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9792414833","conversationType":1,"userID":"9792414833","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9793764585","conversationType":1,"userID":"9793764585","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9800821226","conversationType":1,"userID":"9800821226","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9803514269","conversationType":1,"userID":"9803514269","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9808385174","conversationType":1,"userID":"9808385174","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9810980246","conversationType":1,"userID":"9810980246","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9811311058","conversationType":1,"userID":"9811311058","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9811354776","conversationType":1,"userID":"9811354776","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9812341763","conversationType":1,"userID":"9812341763","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9815283232","conversationType":1,"userID":"9815283232","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9817116271","conversationType":1,"userID":"9817116271","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9820063434","conversationType":1,"userID":"9820063434","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9820372523","conversationType":1,"userID":"9820372523","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9827942549","conversationType":1,"userID":"9827942549","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9829542126","conversationType":1,"userID":"9829542126","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9833458575","conversationType":1,"userID":"9833458575","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9835297214","conversationType":1,"userID":"9835297214","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9840028485","conversationType":1,"userID":"9840028485","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9840166478","conversationType":1,"userID":"9840166478","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9841449469","conversationType":1,"userID":"9841449469","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9844056821","conversationType":1,"userID":"9844056821","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9845775616","conversationType":1,"userID":"9845775616","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9845972476","conversationType":1,"userID":"9845972476","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9846367663","conversationType":1,"userID":"9846367663","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9846974241","conversationType":1,"userID":"9846974241","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9848437402","conversationType":1,"userID":"9848437402","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9852576405","conversationType":1,"userID":"9852576405","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9852778536","conversationType":1,"userID":"9852778536","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9859217551","conversationType":1,"userID":"9859217551","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9860289710","conversationType":1,"userID":"9860289710","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9860821940","conversationType":1,"userID":"9860821940","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9862545908","conversationType":1,"userID":"9862545908","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9863185338","conversationType":1,"userID":"9863185338","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9868600919","conversationType":1,"userID":"9868600919","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9870300498","conversationType":1,"userID":"9870300498","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9871424491","conversationType":1,"userID":"9871424491","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9871558792","conversationType":1,"userID":"9871558792","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9874112427","conversationType":1,"userID":"9874112427","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9874390196","conversationType":1,"userID":"9874390196","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9875288022","conversationType":1,"userID":"9875288022","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9875597823","conversationType":1,"userID":"9875597823","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9879946936","conversationType":1,"userID":"9879946936","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9883171407","conversationType":1,"userID":"9883171407","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9885315814","conversationType":1,"userID":"9885315814","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9889105718","conversationType":1,"userID":"9889105718","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9893953153","conversationType":1,"userID":"9893953153","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9894477008","conversationType":1,"userID":"9894477008","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9901933233","conversationType":1,"userID":"9901933233","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9910194984","conversationType":1,"userID":"9910194984","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9912087463","conversationType":1,"userID":"9912087463","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9913922612","conversationType":1,"userID":"9913922612","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9914300355","conversationType":1,"userID":"9914300355","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9915273695","conversationType":1,"userID":"9915273695","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9916361292","conversationType":1,"userID":"9916361292","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9920591606","conversationType":1,"userID":"9920591606","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9924223480","conversationType":1,"userID":"9924223480","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9926873986","conversationType":1,"userID":"9926873986","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9928589670","conversationType":1,"userID":"9928589670","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9929919200","conversationType":1,"userID":"9929919200","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9930623477","conversationType":1,"userID":"9930623477","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9932444003","conversationType":1,"userID":"9932444003","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9935307700","conversationType":1,"userID":"9935307700","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9939908351","conversationType":1,"userID":"9939908351","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9940283309","conversationType":1,"userID":"9940283309","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9940929924","conversationType":1,"userID":"9940929924","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9942703170","conversationType":1,"userID":"9942703170","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9942891463","conversationType":1,"userID":"9942891463","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9943302646","conversationType":1,"userID":"9943302646","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9945163346","conversationType":1,"userID":"9945163346","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":true,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9947889277","conversationType":1,"userID":"9947889277","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9951072285","conversationType":1,"userID":"9951072285","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9956133955","conversationType":1,"userID":"9956133955","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9959516434","conversationType":1,"userID":"9959516434","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9960038846","conversationType":1,"userID":"9960038846","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9962903434","conversationType":1,"userID":"9962903434","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9970101670","conversationType":1,"userID":"9970101670","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9970293910","conversationType":1,"userID":"9970293910","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9970999905","conversationType":1,"userID":"9970999905","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9972242149","conversationType":1,"userID":"9972242149","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9976280245","conversationType":1,"userID":"9976280245","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9976445095","conversationType":1,"userID":"9976445095","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9977492096","conversationType":1,"userID":"9977492096","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9980842418","conversationType":1,"userID":"9980842418","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9981239412","conversationType":1,"userID":"9981239412","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_9984169865","conversationType":1,"userID":"9984169865","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9987229337","conversationType":1,"userID":"9987229337","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9989242253","conversationType":1,"userID":"9989242253","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9990136696","conversationType":1,"userID":"9990136696","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false},{"conversationID":"si_1695766238_9997591117","conversationType":1,"userID":"9997591117","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_openIM123456","conversationType":1,"userID":"openIM123456","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_openIM654321","conversationType":1,"userID":"openIM654321","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false},{"conversationID":"si_1695766238_openIMAdmin","conversationType":1,"userID":"openIMAdmin","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}]}
+2024-06-24 10:57:08.911 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/user/get_users_info", "body": "{\"userIDs\":[\"1001978187\",\"1003546611\",\"1007207701\",\"1012210794\",\"1016745053\",\"1019113328\",\"1020167636\",\"1020330989\",\"1024013158\",\"1026082681\",\"1027189710\",\"1029140975\",\"1029199385\",\"1030196386\",\"1035018583\",\"1035025841\",\"1035596382\",\"1039344075\",\"1040441805\",\"1041417511\",\"1041526810\",\"1042709364\",\"1046238762\",\"1047286184\",\"1047605577\",\"1048801023\",\"1048970643\",\"1049946080\",\"1050659067\",\"1051234044\",\"1051923075\",\"1057649044\",\"1058654100\",\"1059702215\",\"1061497126\",\"1062100611\",\"1069173979\",\"1069920007\",\"1070085652\",\"1072866639\",\"1076727996\",\"1078126675\",\"1078453176\",\"1079519777\",\"1081211551\",\"1084443978\",\"1084666176\",\"1088304633\",\"1090301906\",\"1091357456\",\"1092596091\",\"1098139429\",\"1098570531\",\"1105464832\",\"1106456014\",\"1109663154\",\"1110013188\",\"1110128907\",\"1110490028\",\"1111364629\",\"1111503020\",\"1111724110\",\"1112057887\",\"1113172567\",\"1113982296\",\"1114171800\",\"1114245774\",\"1114603358\",\"1118121179\",\"1119049102\",\"1119184791\",\"1120888738\",\"1121842056\",\"1124267584\",\"1125316748\",\"1128086235\",\"1129238672\",\"1130612769\",\"1135290573\",\"1137346656\",\"1139778570\",\"1141269663\",\"1145518931\",\"1148014193\",\"1149674300\",\"1152052323\",\"1153223299\",\"1153514846\",\"1154538243\",\"1158421119\",\"1160166255\",\"1161320377\",\"1163727739\",\"1164940739\",\"1169314033\",\"1169864390\",\"1173525994\",\"1178348711\",\"1178600008\",\"1179846066\",\"1180960663\",\"1184247096\",\"1186482465\",\"1186763406\",\"1189211982\",\"1189516087\",\"1191255050\",\"1193985259\",\"1195520252\",\"1197722329\",\"1197740724\",\"1197930203\",\"1198170851\",\"1199452366\",\"1201627975\",\"1201870569\",\"1203300972\",\"1203427082\",\"1203740992\",\"1205216213\",\"1214890264\",\"1215813908\",\"1216359267\",\"1217986161\",\"1218106711\",\"1222190045\",\"1223611752\",\"1223824434\",\"1225764106\",\"1228521294\",\"1231061920\",\"1236363603\",\"1239260993\",\"1242008964\",\"1244598736\",\"1246378526\",\"1247281849\",\"1247768465\",\"1250766516\",\"1253082303\",\"1254137907\",\"1254897163\",\"1255014799\",\"1255769566\",\"1257873838\",\"1259205714\",\"1259491611\",\"1260906081\",\"1262838585\",\"1263384112\",\"1264676490\",\"1266887644\",\"1273935053\",\"1278944119\",\"1279884042\",\"1281598562\",\"1281934775\",\"1287973372\",\"1291322616\",\"1291601426\",\"1292646581\",\"1294205397\",\"1296481060\",\"1303174885\",\"1303224493\",\"1308295709\",\"1308526907\",\"1312600623\",\"1312766592\",\"1313516275\",\"1314958716\",\"1315193254\",\"1315194100\",\"1318098494\",\"1322848164\",\"1325120618\",\"1326889006\",\"1327075767\",\"1328504176\",\"1328609722\",\"1328649560\",\"1330357963\",\"1332124716\",\"1335529830\",\"1337385311\",\"1339832669\",\"1342056722\",\"1351222021\",\"1352959012\",\"1356317580\",\"1358105773\",\"1360958542\",\"1361338405\",\"1369503108\",\"1378104152\",\"1378723738\",\"1378864517\",\"1381750803\",\"1382542089\",\"1389388976\",\"1389519072\",\"1389672286\",\"1399815726\",\"1400334070\",\"1403690073\",\"1404053476\",\"1404071596\",\"1404108486\",\"1406732851\",\"1408523578\",\"1411038705\",\"1413232357\",\"1413892032\",\"1416508762\",\"1421222947\",\"1423094054\",\"1424675347\",\"1425098887\",\"1426385421\",\"1428611256\",\"1429778434\",\"1431753089\",\"1435708354\",\"1435815467\",\"1439097961\",\"1440270225\",\"1444423031\",\"1445725217\",\"1447165914\",\"1447253383\",\"1448477441\",\"1449505287\",\"1450541750\",\"1450572942\",\"1451141537\",\"1455103500\",\"1455854618\",\"1457549515\",\"1459886066\",\"1466421314\",\"1479208215\",\"1481152183\",\"1483410143\",\"1484864273\",\"1489050183\",\"1490112482\",\"1491381111\",\"1493979234\",\"1496957522\",\"1501353503\",\"1503288583\",\"1503313265\",\"1503571831\",\"1503799516\",\"1511563482\",\"1512333186\",\"1517471629\",\"1519782782\",\"1522530015\",\"1525076035\",\"1525462486\",\"1527761901\",\"1528034041\",\"1531529736\",\"1531800981\",\"1538447111\",\"1539916836\",\"1545733795\",\"1547315621\",\"1553095200\",\"1556110492\",\"1563714762\",\"1567202525\",\"1570753957\",\"1571918249\",\"1572354946\",\"1572952163\",\"1575369290\",\"1580228426\",\"1586898988\",\"1591700454\",\"1592632793\",\"1596057385\",\"1596529802\",\"1597197183\",\"1597446517\",\"1602000005\",\"1605306478\",\"1606591661\",\"1610353382\",\"1613711798\",\"1617274099\",\"1619510595\",\"1624302032\",\"1628445271\",\"1639021089\",\"1641400615\",\"1645337519\",\"1652390041\",\"1653288930\",\"1654005478\",\"1655462573\",\"1655642484\",\"1656524872\",\"1659023429\",\"1659042267\",\"1664486975\",\"1667631425\",\"1669430182\",\"1670365234\",\"1670622606\",\"1672477147\",\"1672553537\",\"1687822249\",\"1689589076\",\"1692205388\",\"1693456624\",\"1694942215\",\"1702117725\",\"1702188248\",\"1703789873\",\"1709215513\",\"1712766650\",\"1713347484\",\"1717761876\",\"1721395134\",\"1727201413\",\"1731109771\",\"1731636962\",\"1736245880\",\"1738515952\",\"1742363625\",\"1742605630\",\"1743177197\",\"1744636404\",\"1747359714\",\"1748872770\",\"1751282511\",\"1752144503\",\"1772946620\",\"1774447755\",\"1774484110\",\"1774642490\",\"1774777128\",\"1776346921\",\"1778088968\",\"1778147024\",\"1778774517\",\"1780015171\",\"1780132425\",\"1786023921\",\"1789628801\",\"1790308311\",\"1792420009\",\"1792779407\",\"1793479516\",\"1794457838\",\"1799928569\",\"1801012070\",\"1804216069\",\"1806295356\",\"1807355584\",\"1808739935\",\"1810705917\",\"1811284251\",\"1814656795\",\"1817747447\",\"1818754282\",\"1819336215\",\"1819708663\",\"1823386847\",\"1824275843\",\"1825528748\",\"1828448298\",\"1829995445\",\"1831010849\",\"1831904357\",\"1834112002\",\"1839129196\",\"1839949291\",\"1842076890\",\"1847173569\",\"1847547134\",\"1848196820\",\"1854151908\",\"1854239844\",\"1856646576\",\"1858506629\",\"1860327649\",\"1864342100\",\"1866469672\",\"1869222509\",\"1876795205\",\"1876910460\",\"1878877862\",\"1879624691\",\"1881699466\",\"1894592643\",\"1896037684\",\"1896201093\",\"1896406410\",\"1902484337\",\"1905725782\",\"1906445099\",\"1908218712\",\"1908245713\",\"1911583328\",\"1911710742\",\"1911810093\",\"1912058390\",\"1913583468\",\"1919047430\",\"1922087882\",\"1925254179\",\"1931646522\",\"1934748565\",\"1938451039\",\"1942179907\",\"1947536099\",\"1947607451\",\"1948326429\",\"1949451221\",\"1950195921\",\"1952868490\",\"1958217588\",\"1958518843\",\"1962711667\",\"1964147937\",\"1966124402\",\"1968770658\",\"1974192173\",\"1975362624\",\"1975553123\",\"1975712729\",\"1977829381\",\"1979754569\",\"1981410842\",\"1985863892\",\"1985870240\",\"1988963519\",\"1993324527\",\"1993900928\",\"1996969578\",\"2004232076\",\"2004829824\",\"2007415990\",\"2010453067\",\"2010596235\",\"2011701267\",\"2014288178\",\"2016410286\",\"2019888097\",\"2020409452\",\"2021892716\",\"2024007389\",\"2024880531\",\"2024935500\",\"2030639266\",\"2031934238\",\"2033736816\",\"2044305683\",\"2051159423\",\"2055552460\",\"2055562411\",\"2056273558\",\"2058272412\",\"2065312455\",\"2065649737\",\"2067518707\",\"2067737063\",\"2068776395\",\"2069135616\",\"2072960535\",\"2074661004\",\"2079144021\",\"2082541912\",\"2089643170\",\"2090630692\",\"2097541846\",\"2097781817\",\"2100400616\",\"2104195868\",\"2104948837\",\"2105815429\",\"2106298144\",\"2108107622\",\"2114315169\",\"2116967433\",\"2122535786\",\"2122903572\",\"2123184085\",\"2130822983\",\"2134502115\",\"2135811730\",\"2136985550\",\"2141887973\",\"2147178021\",\"2148094530\",\"2148877993\",\"2158704735\",\"2159393416\",\"2159739643\",\"2161460908\",\"2166930178\",\"2168939271\",\"2169175564\",\"2172356511\",\"2175053091\",\"2175304326\",\"2177659996\",\"2177829402\",\"2180660843\",\"2180823601\",\"2182589988\",\"2184518026\",\"2184902631\",\"2186548040\",\"2193659648\",\"2195170233\",\"2195904688\",\"2203147158\",\"2203420444\",\"2204485419\",\"2210409049\",\"2215031028\",\"2216649304\",\"2220605266\",\"2222465830\",\"2226864743\",\"2228082017\",\"2229500075\",\"2230209768\",\"2241676396\",\"2242408886\",\"2243648531\",\"2244237845\",\"2247734613\",\"2250230706\",\"2253553088\",\"2259719077\",\"2262854413\",\"2267320291\",\"2269669873\",\"2271624505\",\"2276632311\",\"2282057245\",\"2284382043\",\"2287549734\",\"2289445413\",\"2290916297\",\"2293953462\",\"2294068026\",\"2294606956\",\"2295443263\",\"2298259901\",\"2300236631\",\"2302198630\",\"2303519405\",\"2304329422\",\"2304731565\",\"2305551097\",\"2311268381\",\"2315425831\",\"2316549309\",\"2318151329\",\"2318653347\",\"2320413995\",\"2321445599\",\"2321576079\",\"2321652781\",\"2324043115\",\"2328434107\",\"2330580373\",\"2333601327\",\"2334128456\",\"2340903303\",\"2347287674\",\"2351226722\",\"2352729542\",\"2359475267\",\"2360742959\",\"2361415263\",\"2363107482\",\"2364621913\",\"2365006326\",\"2367330798\",\"2372363878\",\"2373768870\",\"2373832029\",\"2373957188\",\"2376970002\",\"2379157232\",\"2380361192\",\"2382919335\",\"2384253834\",\"2391060935\",\"2391250488\",\"2397238037\",\"2403026614\",\"2405162268\",\"2406359607\",\"2408460453\",\"2411591216\",\"2411791668\",\"2413777979\",\"2418326201\",\"2419735015\",\"2420469244\",\"2428356422\",\"2435076373\",\"2441535687\",\"2445660151\",\"2450037859\",\"2455695513\",\"2456610935\",\"2459596184\",\"2467222861\",\"2467407321\",\"2468662977\",\"2469358242\",\"2481840430\",\"2484820129\",\"2485271223\",\"2485831627\",\"2487744132\",\"2491241835\",\"2491509322\",\"2494091274\",\"2495044228\",\"2499792755\",\"2500499043\",\"2501035310\",\"2501392715\",\"2509310711\",\"2513608056\",\"2519991844\",\"2527123914\",\"2529149450\",\"2541778634\",\"2542308726\",\"2543136948\",\"2543151462\",\"2544821957\",\"2545303424\",\"2546145730\",\"2546997095\",\"2550644812\",\"2552156733\",\"2553130763\",\"2553226423\",\"2554370645\",\"2554419927\",\"2554528968\",\"2554845832\",\"2558214548\",\"2561044054\",\"2562159690\",\"2563542186\",\"2568600958\",\"2573171514\",\"2575964991\",\"2576541524\",\"2584692046\",\"2585587550\",\"2591460564\",\"2591851186\",\"2591881637\",\"2592855383\",\"2594011902\",\"2595508365\",\"2600151896\",\"2600383208\",\"2601184652\",\"2601366798\",\"2609646737\",\"2609720932\",\"2610489646\",\"2613277163\",\"2613915887\",\"2617887857\",\"2626327942\",\"2634464933\",\"2635072834\",\"2636416179\",\"2641033059\",\"2645362757\",\"2647432110\",\"2647762028\",\"2651221124\",\"2651592493\",\"2654376801\",\"2657780288\",\"2658782184\",\"2660237167\",\"2660869153\",\"2661098595\",\"2663585626\",\"2664190009\",\"2669155458\",\"2669463502\",\"2669522749\",\"2669535307\",\"2669963504\",\"2671236825\",\"2673947325\",\"2674288701\",\"2677077317\",\"2680367243\",\"2680629439\",\"2682102921\",\"2685129670\",\"2693021040\",\"2696721836\",\"2699572576\",\"2700396114\",\"2703205078\",\"2704233049\",\"2709636845\",\"2713785709\",\"2715028883\",\"2716096987\",\"2722031875\",\"2724133050\",\"2725451243\",\"2726215647\",\"2726777258\",\"2729128783\",\"2731806832\",\"2734901662\",\"2738525736\",\"2740315835\",\"2742063027\",\"2754162204\",\"2754805926\",\"2755984629\",\"2756605961\",\"2757252842\",\"2764057746\",\"2767105920\",\"2767449688\",\"2768044296\",\"2771080861\",\"2775808036\",\"2776032332\",\"2776179448\",\"2777182895\",\"2777392996\",\"2780679609\",\"2784365787\",\"2789477856\",\"2794126343\",\"2797666974\",\"2798938564\",\"2800069016\",\"2800090370\",\"2800701915\",\"2800889459\",\"2802049271\",\"2804438534\",\"2809251033\",\"2813681002\",\"2814204296\",\"2814797407\",\"2815363205\",\"2817294799\",\"2819267901\",\"2820286436\",\"2820720133\",\"2822906793\",\"2826097502\",\"2827017309\",\"2827279331\",\"2831193585\",\"2831301183\",\"2832240999\",\"2838302193\",\"2839845469\",\"2840949175\",\"2844014343\",\"2844833716\",\"2849945986\",\"2849985286\",\"2854365488\",\"2854451107\",\"2860578616\",\"2863149679\",\"2864156896\",\"2864562820\",\"2872689322\",\"2876405749\",\"2876517639\",\"2878187113\",\"2878889045\",\"2879113393\",\"2879577568\",\"2879740664\",\"2880563506\",\"2881445108\",\"2882899447\",\"2887838678\",\"2888258810\",\"2890334421\",\"2890713225\",\"2893984568\",\"2897007768\",\"2900920572\",\"2901569973\",\"2901914165\",\"2902603154\",\"2903763431\",\"2904203350\",\"2905053077\",\"2905252350\",\"2912415463\",\"2912423192\",\"2914580370\",\"2921314358\",\"2925505186\",\"2926374953\",\"2926503784\",\"2930942211\",\"2933186791\",\"2933595653\",\"2934198637\",\"2938766916\",\"2940372216\",\"2942822451\",\"2945631149\",\"2945766167\",\"2951042955\",\"2951333723\",\"2956182974\",\"2956222225\",\"2958242148\",\"2960809325\",\"2961176761\",\"2962214402\",\"2962834146\",\"2963659057\",\"2965951542\",\"2966958326\",\"2970863091\",\"2970994891\",\"2974929762\",\"2975162313\",\"2975409554\",\"2975431366\",\"2975597555\",\"2980893666\",\"2981246162\",\"2982000585\",\"2984741494\",\"2987214012\",\"2991969100\",\"2992114349\",\"2997093071\",\"2997317644\",\"2998067487\",\"3002397383\",\"3004935297\",\"3004971629\",\"3007515052\",\"3011324233\",\"3013893349\",\"3017062485\",\"3023379234\",\"3023473057\",\"3023583215\",\"3025087621\",\"3028489935\",\"3029281130\",\"3030995041\",\"3037865872\",\"3045192605\",\"3047161541\",\"3048025260\",\"3049658867\",\"3053433727\",\"3057735982\",\"3064262697\",\"3067600722\",\"3068103002\",\"3072683488\",\"3075650257\",\"3079018235\",\"3083415284\",\"3086885146\",\"3088309970\",\"3093774659\",\"3094251676\",\"3100574492\",\"3100927824\",\"3107511955\",\"3107872821\",\"3110900347\",\"3114125867\",\"3115019608\",\"3115148556\",\"3117863124\",\"3119418753\",\"3119660813\",\"3120559487\",\"3121454753\",\"3129026839\",\"3132656179\",\"3133075625\",\"3134278325\",\"3134537845\",\"3139569060\",\"3140420968\",\"3150135159\",\"3156827214\",\"3162271972\",\"3163653728\",\"3164446436\",\"3168796642\",\"3173403446\",\"3173756579\",\"3176223906\",\"3177929240\",\"3179190302\",\"3189972504\",\"3190912448\",\"3192054345\",\"3192218781\",\"3192583468\",\"3193592046\",\"3196192331\",\"3196958921\",\"3197083869\",\"3199458860\",\"3199820791\",\"3200133119\",\"3200607575\",\"3200726264\",\"3204690068\",\"3204832902\",\"3205080439\",\"3206443553\",\"3206742093\",\"3214502593\",\"3217427070\",\"3217545671\",\"3218274782\",\"3220549850\",\"3221190872\",\"3221229320\",\"3224221765\",\"3224719808\",\"3227148059\",\"3229531095\",\"3233270846\",\"3235316541\",\"3235668582\",\"3237793462\",\"3238659031\",\"3238674643\",\"3240646453\",\"3241132141\",\"3249909086\",\"3249918280\",\"3249933654\",\"3250005519\",\"3250579894\",\"3251649871\",\"3261157334\",\"3261456614\",\"3263416246\",\"3268693150\",\"3269425301\",\"3270681057\",\"3276126003\",\"3277113648\",\"3277330401\",\"3277768810\",\"3279927933\",\"3284080283\",\"3285780245\",\"3286756773\",\"3290255065\",\"3295857972\",\"3297069764\",\"3300998316\",\"3305731505\",\"3307929768\",\"3308461087\",\"3309832576\",\"3311609122\",\"3312811998\",\"3320730621\",\"3322768391\",\"3324817195\",\"3325246129\",\"3325428510\",\"3327563110\",\"3328438853\",\"3330044431\",\"3332502663\",\"3335253060\",\"3335272940\",\"3336527674\",\"3340382285\",\"3340940320\",\"3348455039\",\"3349762211\",\"3351106700\",\"3351467437\",\"3352768401\",\"3355860649\",\"3356152522\",\"3357676251\",\"3360234875\",\"3361047963\",\"3362215269\",\"3367952952\",\"3370281252\",\"3372906588\",\"3378171880\",\"3380521639\",\"3384044960\",\"3384056544\",\"3384401195\",\"3387336082\",\"3390583172\",\"3394129159\",\"3396066359\",\"3396711993\",\"3397676820\",\"3401196714\",\"3402038544\",\"3405014751\",\"3405537375\",\"3408547602\",\"3413094703\",\"3414693763\",\"3417649963\",\"3418101290\",\"3418577436\",\"3420613648\",\"3423009410\",\"3424164248\",\"3424790937\",\"3424924792\",\"3427883907\",\"3430278208\",\"3435189401\",\"3435706047\",\"3441335163\",\"3442471610\",\"3444204020\",\"3447932943\",\"3451045692\",\"3452044353\",\"3454057246\",\"3456754627\",\"3463065880\",\"3463544352\",\"3469803158\",\"3470375736\",\"3470728766\",\"3471363726\",\"3473799316\",\"3476401940\",\"3479250495\",\"3482885129\",\"3483519033\",\"3485197519\",\"3485222434\",\"3487505389\",\"3488662042\",\"3489712763\",\"3489831359\",\"3489929329\",\"3493014269\",\"3495022341\",\"3502864403\",\"3509756342\",\"3512321008\",\"3517778099\",\"3521826845\",\"3522449211\",\"3525517047\",\"3526379994\",\"3528275239\",\"3529802775\",\"3530383327\",\"3530810171\",\"3532135718\",\"3534795134\",\"3534802796\",\"3537220722\",\"3538940238\",\"3541443626\",\"3542101940\",\"3546255283\",\"3547273883\",\"3547752374\",\"3550065953\",\"3551589140\",\"3554401652\",\"3555750545\",\"3560303364\",\"3561370203\",\"3564564648\",\"3565888306\",\"3567031924\",\"3570607148\",\"3570742368\",\"3571074829\",\"3571143305\",\"3573077275\",\"3574516380\",\"3578633137\",\"3580853228\",\"3583713307\",\"3583831504\",\"3583855819\",\"3586015547\",\"3591643599\",\"3593797495\",\"3595322825\",\"3598806139\",\"3599088167\",\"3602243749\",\"3602775150\",\"3602955381\",\"3603216444\",\"3603394766\",\"3605112122\",\"3605477209\",\"3605639507\",\"3611690609\",\"3611757660\",\"3613869101\",\"3613993751\",\"3617325444\",\"3625321133\",\"3625514157\",\"3628521511\",\"3633193427\",\"3635232898\",\"3637960024\",\"3641418034\",\"3643765049\",\"3645011153\",\"3650402223\",\"3654269967\",\"3655173277\",\"3656425275\",\"3656507690\",\"3656865963\",\"3668055835\",\"3668313451\",\"3679618679\",\"3681367317\",\"3682601398\",\"3685670989\",\"3688737567\",\"3689984008\",\"3693010460\",\"3693972131\",\"3697152375\",\"3697628542\",\"3701246521\",\"3707971244\",\"3708535808\",\"3709292948\",\"3710967864\",\"3719131896\",\"3720515485\",\"3724651470\",\"3727425498\",\"3732248827\",\"3737685096\",\"3739320072\",\"3739899757\",\"3739934262\",\"3741079018\",\"3748470665\",\"3750772349\",\"3750980145\",\"3751457430\",\"3755727328\",\"3765484234\",\"3766915245\",\"3767972548\",\"3768320302\",\"3777699354\",\"3778574807\",\"3781524005\",\"3782300709\",\"3786464348\",\"3787170103\",\"3787639127\",\"3788067433\",\"3789077505\",\"3789393466\",\"3789622986\",\"3790708319\",\"3791452062\",\"3796678904\",\"3799378960\",\"3800330261\",\"3800799958\",\"3801184840\",\"3801465816\",\"3802153805\",\"3803355027\",\"3803994837\",\"3804444798\",\"3805642017\",\"3812987647\",\"3824382983\",\"3826712907\",\"3832386746\",\"3834703974\",\"3834757485\",\"3838004574\",\"3839699134\",\"3840194843\",\"3843602112\",\"3844179588\",\"3844296459\",\"3845663923\",\"3847693332\",\"3849018031\",\"3851012114\",\"3851727632\",\"3853166116\",\"3855555410\",\"3859980461\",\"3860769487\",\"3862147424\",\"3862854837\",\"3868811660\",\"3869241646\",\"3870370757\",\"3872108589\",\"3872601320\",\"3879871786\",\"3882316983\",\"3894253605\",\"3895447084\",\"3897778874\",\"3899444240\",\"3902232278\",\"3910602054\",\"3912740754\",\"3913129073\",\"3919312406\",\"3922682136\",\"3923864156\",\"3926463720\",\"3927572489\",\"3928216074\",\"3931186398\",\"3932374393\",\"3932990255\",\"3935071086\",\"3936773930\",\"3937424438\",\"3939590154\",\"3939999665\",\"3940445356\",\"3947763668\",\"3950757937\",\"3951978865\",\"3954641888\",\"3958284610\",\"3960310198\",\"3962502361\",\"3962961610\",\"3963709279\",\"3963875243\",\"3965483986\",\"3965647724\",\"3971926306\",\"3971967127\",\"3973845314\",\"3974823781\",\"3974913605\",\"3982399444\",\"3984192272\",\"3985353822\",\"3985432997\",\"3987941559\",\"3989782521\",\"3991660838\",\"3992722755\",\"3993861435\",\"3994384158\",\"3995365114\",\"3995872443\",\"3999001279\",\"4000650991\",\"4001754506\",\"4002821549\",\"4008031414\",\"4009086415\",\"4010963995\",\"4012541644\",\"4013309319\",\"4015475256\",\"4019194868\",\"4019430612\",\"4023329658\",\"4023669015\",\"4024116306\",\"4026813737\",\"4026917269\",\"4031972755\",\"4039256136\",\"4049223183\",\"4049340883\",\"4049517000\",\"4053284890\",\"4055940070\",\"4057171904\",\"4064402118\",\"4067008127\",\"4070197417\",\"4072022438\",\"4079084055\",\"4080264659\",\"4080738041\",\"4082103573\",\"4085376424\",\"4087789327\",\"4091428240\",\"4091541801\",\"4093701989\",\"4094740281\",\"4095191329\",\"4096170064\",\"4102041542\",\"4105734635\",\"4107410993\",\"4111442760\",\"4113687442\",\"4113735582\",\"4114891625\",\"4116383143\",\"4117212022\",\"4118659143\",\"4119796562\",\"4121091576\",\"4121196365\",\"4122315779\",\"4122387753\",\"4124281952\",\"4124733788\",\"4127687270\",\"4130100082\",\"4134217728\",\"4143953359\",\"4152679278\",\"4155714037\",\"4164499789\",\"4164663659\",\"4167776677\",\"4169162891\",\"4176532281\",\"4178861776\",\"4180249221\",\"4189886690\",\"4189972689\",\"4193526288\",\"4195435042\",\"4196155498\",\"4198077672\",\"4201975122\",\"4202803190\",\"4203267238\",\"4204000340\",\"4204574965\",\"4209534099\",\"4212105657\",\"4215789737\",\"4216253974\",\"4216644062\",\"4216757974\",\"4220093768\",\"4221167475\",\"4221194205\",\"4221983701\",\"4222334962\",\"4223720127\",\"4226213321\",\"4226237813\",\"4230648979\",\"4231104423\",\"4233310059\",\"4233425493\",\"4235698714\",\"4240278083\",\"4242533018\",\"4246570603\",\"4247095598\",\"4247377924\",\"4252484758\",\"4253127832\",\"4254681784\",\"4257335322\",\"4258660302\",\"4259132146\",\"4264539425\",\"4265720132\",\"4266615651\",\"4275733340\",\"4284653704\",\"4286070689\",\"4289978919\",\"4293322269\",\"4293913125\",\"4297395201\",\"4300349125\",\"4300789253\",\"4302380765\",\"4306527503\",\"4307478992\",\"4308365405\",\"4313249276\",\"4316352542\",\"4319599306\",\"4323462362\",\"4324879979\",\"4326656042\",\"4328265262\",\"4328490815\",\"4328997633\",\"4329402013\",\"4331285657\",\"4331847866\",\"4332427151\",\"4333324598\",\"4336422144\",\"4337583921\",\"4340810454\",\"4344723150\",\"4344973084\",\"4346231461\",\"4346543697\",\"4348082955\",\"4348869517\",\"4351325833\",\"4356312106\",\"4357320975\",\"4359161104\",\"4359987819\",\"4363081068\",\"4364213352\",\"4365758115\",\"4366259531\",\"4366431790\",\"4371536904\",\"4372248137\",\"4372919561\",\"4379253236\",\"4382914823\",\"4385453331\",\"4385686899\",\"4389669728\",\"4401936006\",\"4413764571\",\"4413835259\",\"4415857340\",\"4419129931\",\"4422224754\",\"4422329530\",\"4423627349\",\"4426459498\",\"4428304728\",\"4430427191\",\"4436439007\",\"4440450535\",\"4440534964\",\"4445212300\",\"4448855672\",\"4449558244\",\"4450360727\",\"4451267516\",\"4453030062\",\"4453849009\",\"4454612664\",\"4464911980\",\"4467365448\",\"4475835014\",\"4476306361\",\"4479234419\",\"4480521251\",\"4481379556\",\"4485043552\",\"4486805078\",\"4488638760\",\"4493065873\",\"4494156274\",\"4500177587\",\"4501084974\",\"4501771438\",\"4502082928\",\"4508553291\",\"4509502522\",\"4510059360\",\"4510938314\",\"4511028690\",\"4512614259\",\"4513939193\",\"4514515621\",\"4515124280\",\"4518410219\",\"4519437471\",\"4521618779\",\"4526705625\",\"4530769942\",\"4534383505\",\"4536976003\",\"4537133650\",\"4539505962\",\"4541622211\",\"4542445708\",\"4546854512\",\"4547179316\",\"4549986255\",\"4551538686\",\"4553582795\",\"4554875439\",\"4555507970\",\"4558664801\",\"4559881917\",\"4560543353\",\"4568092882\",\"4569177198\",\"4569497081\",\"4576249771\",\"4576673457\",\"4576871044\",\"4578601959\",\"4583274239\",\"4585412233\",\"4589334066\",\"4590290601\",\"4591244785\",\"4594001188\",\"4596532610\",\"4596959443\",\"4597354478\",\"4598359368\",\"4600766877\",\"4601563033\",\"4601951290\",\"4604489387\",\"4605716056\",\"4609025266\",\"4610709176\",\"4612931477\",\"4613234206\",\"4613808391\",\"4614771183\",\"4615063306\",\"4615500844\",\"4616348536\",\"4617886925\",\"4627372556\",\"4627757948\",\"4628456484\",\"4631480818\",\"4636565947\",\"4641688133\",\"4641774210\",\"4644188070\",\"4647156540\",\"4647392322\",\"4648916002\",\"4654851468\",\"4655129542\",\"4655516792\",\"4662755661\",\"4663715535\",\"4667739897\",\"4668099372\",\"4671482518\",\"4672885387\",\"4678037588\",\"4681582191\",\"4685588650\",\"4687007131\",\"4689169233\",\"4689278818\",\"4689925923\",\"4698451133\",\"4699751551\",\"4700799522\",\"4701844957\",\"4701865718\",\"4702935618\",\"4704979905\",\"4705713217\",\"4710682050\",\"4711741755\",\"4714470295\",\"4715090983\",\"4716126862\",\"4717198450\",\"4718128155\",\"4718771983\",\"4721455080\",\"4732324211\",\"4732620707\",\"4733304576\",\"4738033186\",\"4741130938\",\"4742854958\",\"4748156889\",\"4749302175\",\"4754517682\",\"4754852664\",\"4755574168\",\"4757807995\",\"4764613832\",\"4767981688\",\"4774906057\",\"4780839267\",\"4785165125\",\"4785606051\",\"4786954344\",\"4791442681\",\"4794115560\",\"4802965282\",\"4805646202\",\"4819622986\",\"4821224168\",\"4823617060\",\"4824619122\",\"4829651300\",\"4832615071\",\"4833342766\",\"4834232511\",\"4834281814\",\"4834690774\",\"4835033409\",\"4835400415\",\"4840588859\",\"4846054480\",\"4849669261\",\"4849985881\",\"4850514972\",\"4857349434\",\"4858487103\",\"4867820065\",\"4868312193\",\"4870999670\",\"4871183993\",\"4872085821\",\"4873691241\",\"4875538382\",\"4876217110\",\"4892758656\",\"4893424641\",\"4893727151\",\"4896388822\",\"4900753426\",\"4901778325\",\"4902397738\",\"4908904387\",\"4911332544\",\"4911414951\",\"4911851183\",\"4912844543\",\"4915484479\",\"4918276559\",\"4918328683\",\"4923873012\",\"4926446021\",\"4930915768\",\"4934894155\",\"4937209096\",\"4938106565\",\"4940175675\",\"4940249071\",\"4943773015\",\"4949622917\",\"4950713210\",\"4951801389\",\"4952005760\",\"4958357173\",\"4958846328\",\"4959913802\",\"4961711537\",\"4963393229\",\"4975019413\",\"4975337998\",\"4977198622\",\"4979480519\",\"4979639389\",\"4981191121\",\"4981368838\",\"4985196437\",\"4988969273\",\"4990193480\",\"4995366980\",\"4995988309\",\"4999156692\",\"4999749136\",\"5001599614\",\"5002491660\",\"5003938059\",\"5007601899\",\"5009769752\",\"5011307721\",\"5016947087\",\"5017045152\",\"5024780259\",\"5027132489\",\"5030358081\",\"5033164124\",\"5036254684\",\"5039689203\",\"5040986608\",\"5044983328\",\"5045959757\",\"5052720919\",\"5054553896\",\"5057316211\",\"5057868990\",\"5058490688\",\"5059658106\",\"5063708805\",\"5064450025\",\"5067345572\",\"5067438435\",\"5068449155\",\"5072662873\",\"5073192046\",\"5074137138\",\"5075042452\",\"5086890922\",\"5086994351\",\"5087027370\",\"5092290187\",\"5093785048\",\"5098290115\",\"5098473308\",\"5104021530\",\"5107494273\",\"5108778950\",\"5109208108\",\"5109328754\",\"5113616736\",\"5114178152\",\"5115816718\",\"5120891134\",\"5124623407\",\"5129646012\",\"5131260895\",\"5131548684\",\"5132970330\",\"5138412244\",\"5139953083\",\"5143564922\",\"5148465784\",\"5151877467\",\"5152364658\",\"5152367578\",\"5152700528\",\"5152772821\",\"5159407655\",\"5159666152\",\"5160877753\",\"5164441961\",\"5165900123\",\"5166465530\",\"5166918125\",\"5175156228\",\"5175926475\",\"5178916117\",\"5181423157\",\"5185600527\",\"5189528969\",\"5190651797\",\"5191177805\",\"5192859184\",\"5200142893\",\"5203162281\",\"5206821177\",\"5206946655\",\"5207254443\",\"5211251741\",\"5213333820\",\"5217579807\",\"5221720362\",\"5222516154\",\"5226459880\",\"5226627818\",\"5233426123\",\"5235308523\",\"5236359243\",\"5236545003\",\"5237025674\",\"5240408296\",\"5240575339\",\"5241529913\",\"5244482702\",\"5248071176\",\"5248150745\",\"5248385191\",\"5249725335\",\"5256311014\",\"5259696013\",\"5260081632\",\"5262644632\",\"5263712829\",\"5264992214\",\"5268812393\",\"5280943776\",\"5282627881\",\"5285022981\",\"5286535793\",\"5288626264\",\"5290454482\",\"5290473735\",\"5291311764\",\"5291456050\",\"5294929577\",\"5295369982\",\"5296052389\",\"5296644653\",\"5297662536\",\"5304967461\",\"5307357041\",\"5320305071\",\"5321467496\",\"5321587991\",\"5329005553\",\"5329462571\",\"5329543914\",\"5331279867\",\"5334542905\",\"5334756257\",\"5336317141\",\"5343195507\",\"5346815324\",\"5348575962\",\"5349221317\",\"5350931457\",\"5351132193\",\"5352682579\",\"5356113166\",\"5358143052\",\"5358714951\",\"5358843278\",\"5358983896\",\"5360417820\",\"5363582234\",\"5363957705\",\"5365048884\",\"5368584236\",\"5370620069\",\"5373490184\",\"5373710322\",\"5375609152\",\"5377724931\",\"5381374647\",\"5382734642\",\"5383441189\",\"5384318976\",\"5390236703\",\"5396639819\",\"5397087982\",\"5397363424\",\"5398613531\",\"5401562218\",\"5402322052\",\"5404307971\",\"5405441233\",\"5406159540\",\"5407091476\",\"5407782499\",\"5409594675\",\"5410098477\",\"5410355545\",\"5410368232\",\"5410772311\",\"5414128931\",\"5416738193\",\"5417124831\",\"5420104655\",\"5430821760\",\"5432843240\",\"5442199418\",\"5446046008\",\"5446567702\",\"5449593636\",\"5450965115\",\"5452365658\",\"5452450197\",\"5453108500\",\"5455481997\",\"5480212485\",\"5480713946\",\"5480812632\",\"5485148642\",\"5496039772\",\"5502486573\",\"5503315300\",\"5503837684\",\"5512448749\",\"5512868112\",\"5513765615\",\"5514725837\",\"5525192219\",\"5525995594\",\"5526021912\",\"5526651611\",\"5540563810\",\"5540757722\",\"5541069207\",\"5542535779\",\"5548591709\",\"5549513683\",\"5552236107\",\"5553194662\",\"5557876583\",\"5558311156\",\"5561959046\",\"5566365465\",\"5568853842\",\"5570249193\",\"5570319326\",\"5576420817\",\"5577874223\",\"5578328451\",\"5578731578\",\"5581090381\",\"5581435034\",\"5584327976\",\"5586125949\",\"5586255658\",\"5587098679\",\"5587217057\",\"5587808406\",\"5594047664\",\"5605784685\",\"5606396140\",\"5610837207\",\"5616569214\",\"5618114098\",\"5619318712\",\"5619336399\",\"5620768201\",\"5625548410\",\"5626394972\",\"5629610459\",\"5630216908\",\"5632773822\",\"5633059660\",\"5633188673\",\"5633378166\",\"5636993626\",\"5640122986\",\"5643092782\",\"5644765212\",\"5645682170\",\"5647374792\",\"5653943210\",\"5654578948\",\"5656745158\",\"5657688195\",\"5658001949\",\"5659165582\",\"5659573503\",\"5661158812\",\"5665554530\",\"5665605844\",\"5665783096\",\"5668726699\",\"5668985363\",\"5669416921\",\"5674745391\",\"5677381479\",\"5693206451\",\"5695116048\",\"5695990734\",\"5699652927\",\"5708410287\",\"5710168294\",\"5710649058\",\"5715976407\",\"5717044381\",\"5718405684\",\"5719987926\",\"5726747048\",\"5728062211\",\"5728220862\",\"5728456517\",\"5729235369\",\"5730628535\",\"5734504508\",\"5735206330\",\"5735757792\",\"5741092371\",\"5741564889\",\"5743097181\",\"5743288207\",\"5745714391\",\"5746670115\",\"5752307329\",\"5762137067\",\"5763494246\",\"5764725232\",\"5766348077\",\"5770532835\",\"5775768919\",\"5778047866\",\"5782315790\",\"5784013945\",\"5788143929\",\"5788891525\",\"5790728514\",\"5794961319\",\"5795637205\",\"5798749721\",\"5800725777\",\"5803896006\",\"5806188403\",\"5814165285\",\"5816557466\",\"5816946439\",\"5817653065\",\"5817925510\",\"5818783212\",\"5821718929\",\"5822391747\",\"5823977481\",\"5839682145\",\"5842361658\",\"5842695634\",\"5843381897\",\"5856396568\",\"5857452412\",\"5860770188\",\"5863894652\",\"5864051915\",\"5864943501\",\"5871437314\",\"5883787211\",\"5885080003\",\"5887387594\",\"5890658001\",\"5894974847\",\"5896039030\",\"5896150134\",\"5896186963\",\"5899173891\",\"5904075897\",\"5907279098\",\"5908182038\",\"5910546288\",\"5915346182\",\"5915558310\",\"5918528750\",\"5921376933\",\"5921920938\",\"5925608879\",\"5928750409\",\"5929046253\",\"5929204367\",\"5931929122\",\"5932065188\",\"5935225979\",\"5935227089\",\"5936400835\",\"5937916635\",\"5937972697\",\"5939377886\",\"5940571929\",\"5945434993\",\"5948016835\",\"5950701783\",\"5952571464\",\"5954565885\",\"5955203999\",\"5955873566\",\"5959625032\",\"5975439779\",\"5975476723\",\"5977374952\",\"5981427132\",\"5983902361\",\"5984173458\",\"5984271985\",\"5986232431\",\"5996388709\",\"5997395137\",\"5997701968\",\"6005888406\",\"6006128096\",\"6006290878\",\"6008066663\",\"6013027606\",\"6013955514\",\"6015794695\",\"6016147145\",\"6018243921\",\"6023508071\",\"6026538705\",\"6031134585\",\"6031667349\",\"6033028313\",\"6034497071\",\"6036151426\",\"6036941107\",\"6038779981\",\"6048406952\",\"6051177811\",\"6051934668\",\"6055213651\",\"6060091841\",\"6060319919\",\"6062924771\",\"6064103151\",\"6065191029\",\"6068497884\",\"6074324251\",\"6076551181\",\"6078638343\",\"6083577052\",\"6083951309\",\"6087811348\",\"6088409125\",\"6093808210\",\"6096605449\",\"6099670645\",\"6104556263\",\"6106775804\",\"6113261132\",\"6115346815\",\"6116849462\",\"6116896250\",\"6118899713\",\"6126224779\",\"6128440220\",\"6132231740\",\"6133038339\",\"6133543856\",\"6133844467\",\"6134647314\",\"6135244436\",\"6140652559\",\"6141140222\",\"6141620999\",\"6142166971\",\"6142186125\",\"6143363837\",\"6145520493\",\"6149155248\",\"6152830251\",\"6156827373\",\"6158590414\",\"6161718484\",\"6165380448\",\"6168075727\",\"6168367570\",\"6171471555\",\"6171560899\",\"6171677006\",\"6179365429\",\"6182458494\",\"6182903129\",\"6195299101\",\"6195752325\",\"6201510570\",\"6203470761\",\"6204547412\",\"6204882268\",\"6205781501\",\"6218720837\",\"6219207142\",\"6219819108\",\"6224388014\",\"6225512933\",\"6227325792\",\"6231818471\",\"6232137221\",\"6237905746\",\"6240876322\",\"6244724164\",\"6246279298\",\"6250904913\",\"6254689070\",\"6257143773\",\"6261322669\",\"6262174436\",\"6265354518\",\"6265776649\",\"6266941295\",\"6270795380\",\"6270908929\",\"6271691561\",\"6273646617\",\"6277147514\",\"6285709625\",\"6288096156\",\"6291070602\",\"6292285317\",\"6302501675\",\"6303051991\",\"6303348015\",\"6312531724\",\"6312576873\",\"6313231245\",\"6313419358\",\"6317201698\",\"6319015024\",\"6319901751\",\"6322374743\",\"6326666004\",\"6327876925\",\"6330822619\",\"6331971236\",\"6334911076\",\"6338240526\",\"6339230517\",\"6346508066\",\"6347103724\",\"6351160254\",\"6352104335\",\"6352490253\",\"6352839849\",\"6353020967\",\"6361976167\",\"6362196673\",\"6363109385\",\"6364600020\",\"6373189805\",\"6378176309\",\"6381244261\",\"6386210375\",\"6397860749\",\"6398540247\",\"6401239370\",\"6404356222\",\"6406732941\",\"6410043931\",\"6411073511\",\"6412329187\",\"6414911020\",\"6416142584\",\"6417602965\",\"6419911901\",\"6420701443\",\"6421051438\",\"6431088982\",\"6433354761\",\"6438561890\",\"6441149641\",\"6441650238\",\"6443345562\",\"6444500926\",\"6444929933\",\"6447835862\",\"6448579919\",\"6449138632\",\"6449141444\",\"6453774519\",\"6453949619\",\"6454827578\",\"6458562938\",\"6460025590\",\"6469392278\",\"6481678351\",\"6483893350\",\"6484797725\",\"6487716839\",\"6494483474\",\"6496496312\",\"6498376092\",\"6499282212\",\"6500329873\",\"6501494738\",\"6506881202\",\"6511811241\",\"6512556770\",\"6513275013\",\"6516498277\",\"6516684062\",\"6518420590\",\"6519854131\",\"6522084706\",\"6524017485\",\"6531017055\",\"6531826562\",\"6536907751\",\"6537610017\",\"6538167968\",\"6539096974\",\"6549189747\",\"6549643089\",\"6551973401\",\"6554716140\",\"6557841892\",\"6557880147\",\"6559013673\",\"6561826343\",\"6561879012\",\"6564186011\",\"6567751477\",\"6568661215\",\"6569298083\",\"6571764694\",\"6572366754\",\"6574042397\",\"6579374753\",\"6582408770\",\"6582718155\",\"6585308853\",\"6585436255\",\"6587366044\",\"6588136652\",\"6588496447\",\"6591504507\",\"6592301142\",\"6592334053\",\"6592691219\",\"6593158401\",\"6593585083\",\"6602728377\",\"6605809249\",\"6605893249\",\"6606496379\",\"6608487604\",\"6611636445\",\"6614558445\",\"6616366600\",\"6618248076\",\"6621259604\",\"6625451597\",\"6627105296\",\"6628117309\",\"6629808721\",\"6630888513\",\"6631065279\",\"6640200986\",\"6640754016\",\"6642201111\",\"6644481571\",\"6650213351\",\"6655870493\",\"6658903475\",\"6662856855\",\"6663129968\",\"6663875174\",\"6665134423\",\"6667078727\",\"6670339193\",\"6670746810\",\"6670760760\",\"6675598583\",\"6676873258\",\"6677772576\",\"6683875714\",\"6685902642\",\"6686526228\",\"6687633010\",\"6688995137\",\"6689518881\",\"6691071198\",\"6691486515\",\"6692484993\",\"6693315961\",\"6699224388\",\"6699700239\",\"6700192964\",\"6700296582\",\"6700520119\",\"6703162622\",\"6704991652\",\"6712048605\",\"6719767483\",\"6720463717\",\"6723382158\",\"6723843756\",\"6726134118\",\"6740911583\",\"6741909723\",\"6742265687\",\"6742554919\",\"6746838054\",\"6753861572\",\"6754011874\",\"6754137880\",\"6754912650\",\"6755720200\",\"6760352680\",\"6761468459\",\"6761872625\",\"6763043356\",\"6765773509\",\"6765812585\",\"6767809967\",\"6767821294\",\"6768590754\",\"6770102525\",\"6772352172\",\"6773909696\",\"6778602686\",\"6784987176\",\"6786364682\",\"6787283652\",\"6791203959\",\"6802380858\",\"6806887201\",\"6806913128\",\"6808160177\",\"6811700180\",\"6814913395\",\"6814929287\",\"6816903047\",\"6817618499\",\"6818425876\",\"6820141548\",\"6820503013\",\"6821762379\",\"6829726306\",\"6830551855\",\"6832510780\",\"6833055175\",\"6838907936\",\"6839612396\",\"6840115382\",\"6845692313\",\"6845749447\",\"6845802743\",\"6848013573\",\"6848660331\",\"6850614360\",\"6857178107\",\"6858024107\",\"6859717785\",\"6863876045\",\"6864422826\",\"6868678037\",\"6871533486\",\"6871953976\",\"6875431039\",\"6875498620\",\"6878072504\",\"6880909295\",\"6881072860\",\"6881124784\",\"6881765283\",\"6891659611\",\"6892010385\",\"6893239717\",\"6895745083\",\"6897470526\",\"6897615973\",\"6900099844\",\"6902718642\",\"6904613543\",\"6908614794\",\"6912850481\",\"6913797339\",\"6919005317\",\"6920562819\",\"6921798228\",\"6923431604\",\"6924019193\",\"6924749515\",\"6926376717\",\"6926553569\",\"6928564866\",\"6932367570\",\"6933150383\",\"6935877903\",\"6937796198\",\"6937921006\",\"6938235669\",\"6945956112\",\"6947004749\",\"6947312143\",\"6949156540\",\"6953173171\",\"6955315855\",\"6955901539\",\"6957081032\",\"6960387254\",\"6966123174\",\"6966528341\",\"6968350970\",\"6975622953\",\"6976438725\",\"6977731474\",\"6981901637\",\"6982573684\",\"6982682917\",\"6985501517\",\"6986682620\",\"6986974936\",\"6987095163\",\"6995831660\",\"6996870296\",\"7001714127\",\"7004255923\",\"7004902560\",\"7005397943\",\"7007140315\",\"7009038964\",\"7009965934\",\"7015565477\",\"7017747629\",\"7020398872\",\"7020890145\",\"7024387472\",\"7030017741\",\"7030029150\",\"7030053653\",\"7032035559\",\"7033422792\",\"7033712582\",\"7034540317\",\"7036122900\",\"7043986051\",\"7044261595\",\"7047604147\",\"7050217790\",\"7050707914\",\"7051996866\",\"7052078762\",\"7059211536\",\"7059286958\",\"7059354914\",\"7060900658\",\"7061967847\",\"7062785586\",\"7063162002\",\"7065253893\",\"7066654553\",\"7075754042\",\"7081432967\",\"7087139357\",\"7095536673\",\"7100149191\",\"7102401732\",\"7102928206\",\"7104903347\",\"7109035547\",\"7113374792\",\"7113648606\",\"7121367305\",\"7135884608\",\"7138502039\",\"7140502744\",\"7146687293\",\"7147058580\",\"7147685522\",\"7147734002\",\"7149811761\",\"7151327021\",\"7151680921\",\"7152114427\",\"7156262588\",\"7158015552\",\"7158302033\",\"7159773067\",\"7160106831\",\"7162252799\",\"7169497233\",\"7169812899\",\"7175306389\",\"7175450468\",\"7179657685\",\"7182741443\",\"7184761084\",\"7204234695\",\"7205422956\",\"7207090799\",\"7207940426\",\"7213865012\",\"7218786842\",\"7218943329\",\"7219300529\",\"7221656928\",\"7222221088\",\"7225662708\",\"7226539074\",\"7233905359\",\"7236965387\",\"7238628207\",\"7240565210\",\"7244572239\",\"7256209079\",\"7259365264\",\"7260321633\",\"7262156914\",\"7263485679\",\"7264586802\",\"7265842354\",\"7268355749\",\"7269047472\",\"7271132643\",\"7272954153\",\"7275425646\",\"7275557315\",\"7276122859\",\"7276333667\",\"7276945407\",\"7277603401\",\"7283174825\",\"7283356015\",\"7285011959\",\"7288601605\",\"7291159326\",\"7291327778\",\"7291693120\",\"7295332773\",\"7296742515\",\"7297734806\",\"7298268529\",\"7302196202\",\"7306283423\",\"7307615373\",\"7310569328\",\"7315198048\",\"7319360351\",\"7319611102\",\"7319695659\",\"7320145013\",\"7325441690\",\"7327635605\",\"7332567178\",\"7335137190\",\"7337859180\",\"7342127502\",\"7343731800\",\"7345483146\",\"7347440370\",\"7348642114\",\"7351077360\",\"7351810180\",\"7353212978\",\"7357465056\",\"7360686805\",\"7363109030\",\"7363253608\",\"7364897573\",\"7366211705\",\"7368376836\",\"7372422050\",\"7376958320\",\"7377769800\",\"7378315752\",\"7380309120\",\"7383684265\",\"7386489423\",\"7387576608\",\"7387723009\",\"7388505150\",\"7390780798\",\"7390960328\",\"7401184711\",\"7401733669\",\"7405212428\",\"7410291177\",\"7410632813\",\"7412034038\",\"7412111847\",\"7413274712\",\"7417541042\",\"7420437735\",\"7421821939\",\"7421889399\",\"7428005405\",\"7434856012\",\"7435508463\",\"7436833627\",\"7437040692\",\"7439021681\",\"7439714986\",\"7440672921\",\"7451137864\",\"7455859973\",\"7457097377\",\"7457544036\",\"7460559805\",\"7464954417\",\"7466050106\",\"7471550680\",\"7472541978\",\"7475442514\",\"7482603409\",\"7493990096\",\"7497299557\",\"7497605401\",\"7497646189\",\"7498515000\",\"7498542248\",\"7498920587\",\"7503981720\",\"7505224623\",\"7507197097\",\"7516710182\",\"7520656744\",\"7522269845\",\"7523266932\",\"7526687004\",\"7528402713\",\"7529372532\",\"7530200728\",\"7534564044\",\"7537628670\",\"7537715718\",\"7537716241\",\"7540355701\",\"7542365341\",\"7546299014\",\"7546355222\",\"7547312758\",\"7548971598\",\"7548985362\",\"7551761509\",\"7552860065\",\"7552997387\",\"7563312911\",\"7564012880\",\"7567294877\",\"7568242587\",\"7569247517\",\"7580742612\",\"7583295966\",\"7586062692\",\"7587745030\",\"7588612675\",\"7589005247\",\"7591217919\",\"7592899422\",\"7594017872\",\"7595717000\",\"7595722240\",\"7597673862\",\"7597689214\",\"7598489536\",\"7598799824\",\"7601958347\",\"7608360478\",\"7609581785\",\"7614708020\",\"7616246303\",\"7617553749\",\"7619603154\",\"7620665389\",\"7622429074\",\"7623650329\",\"7625288814\",\"7626760720\",\"7626981398\",\"7638046648\",\"7638679939\",\"7640096597\",\"7643653997\",\"7644290746\",\"7645589134\",\"7646760743\",\"7650768661\",\"7651888817\",\"7652778337\",\"7657717068\",\"7663168591\",\"7664966167\",\"7666852933\",\"7668827828\",\"7671876973\",\"7672451658\",\"7672563564\",\"7673707661\",\"7674566777\",\"7681112296\",\"7681600518\",\"7683585131\",\"7686286348\",\"7687164838\",\"7687371321\",\"7687657759\",\"7688471458\",\"7690669440\",\"7690891476\",\"7692607035\",\"7693122919\",\"7695096009\",\"7700927556\",\"7705431741\",\"7706735929\",\"7713778154\",\"7718471566\",\"7720758526\",\"7723567114\",\"7724890013\",\"7725196248\",\"7735663030\",\"7735805334\",\"7738761244\",\"7739798150\",\"7740091536\",\"7742247612\",\"7743491557\",\"7743820010\",\"7744500881\",\"7746006896\",\"7748421044\",\"7752672529\",\"7760208560\",\"7763239948\",\"7772289742\",\"7773809772\",\"7775655960\",\"7782213970\",\"7788742199\",\"7794187489\",\"7795360622\",\"7802400332\",\"7804901425\",\"7805584149\",\"7819384782\",\"7820542710\",\"7821370665\",\"7821811338\",\"7821875317\",\"7827297461\",\"7828193903\",\"7829456745\",\"7831969873\",\"7832427972\",\"7835799312\",\"7838322353\",\"7839142209\",\"7841293205\",\"7845216380\",\"7847107135\",\"7848167680\",\"7848975164\",\"7849831301\",\"7849988024\",\"7852754787\",\"7853258354\",\"7853514710\",\"7854235526\",\"7854288559\",\"7856252983\",\"7856301343\",\"7859279941\",\"7863511599\",\"7863641493\",\"7864246599\",\"7864780164\",\"7864796432\",\"7867796641\",\"7872751431\",\"7873990031\",\"7881930526\",\"7882581966\",\"7882873434\",\"7883407249\",\"7883425769\",\"7884892250\",\"7885995213\",\"7886158239\",\"7894596798\",\"7899640700\",\"7908367677\",\"7910017356\",\"7910323746\",\"7916509152\",\"7920004051\",\"7924475094\",\"7931463251\",\"7933792440\",\"7935004142\",\"7937047670\",\"7939778002\",\"7940483102\",\"7940823833\",\"7943196334\",\"7948102945\",\"7953410222\",\"7963718443\",\"7965689513\",\"7966350266\",\"7968032251\",\"7971745226\",\"7977523116\",\"7978095612\",\"7983666862\",\"7986340950\",\"7989321704\",\"7992150449\",\"7999383414\",\"8001403844\",\"8001502447\",\"8002441294\",\"8002908818\",\"8003800642\",\"8004543435\",\"8005444087\",\"8007107275\",\"8010325165\",\"8014326203\",\"8014370177\",\"8014785059\",\"8016586723\",\"8016920139\",\"8019506801\",\"8019770129\",\"8024594170\",\"8027945462\",\"8027972177\",\"8030188604\",\"8032860565\",\"8035205991\",\"8035577893\",\"8035733598\",\"8039982396\",\"8042010769\",\"8045511039\",\"8046031043\",\"8046251549\",\"8046375945\",\"8046583538\",\"8050675645\",\"8053445313\",\"8054377408\",\"8054772199\",\"8055581136\",\"8058212949\",\"8059620844\",\"8062088375\",\"8063035464\",\"8067185378\",\"8073435095\",\"8075032607\",\"8084106990\",\"8086917283\",\"8087242742\",\"8097498221\",\"8097902004\",\"8100796382\",\"8103868360\",\"8108968441\",\"8111508018\",\"8112346923\",\"8113999096\",\"8120706844\",\"8122384069\",\"8122645018\",\"8126770108\",\"8130195053\",\"8130294134\",\"8131886443\",\"8132082620\",\"8132192086\",\"8133515450\",\"8135354869\",\"8141443295\",\"8141818865\",\"8151192752\",\"8152315569\",\"8154138523\",\"8156807776\",\"8157216998\",\"8160058880\",\"8160095492\",\"8166932809\",\"8167633898\",\"8169511346\",\"8170675637\",\"8172345347\",\"8180241502\",\"8182249376\",\"8186105078\",\"8187575584\",\"8189440989\",\"8190298841\",\"8193549184\",\"8197784678\",\"8203292432\",\"8207174748\",\"8210397277\",\"8211720551\",\"8213594817\",\"8215486465\",\"8216642294\",\"8217169171\",\"8217784296\",\"8219584363\",\"8220710471\",\"8222037249\",\"8222979522\",\"8223657315\",\"8223705362\",\"8228094145\",\"8228097998\",\"8229812969\",\"8231032558\",\"8233508874\",\"8235499624\",\"8235631682\",\"8242204929\",\"8246905074\",\"8248153723\",\"8251671425\",\"8253692052\",\"8257796971\",\"8273990937\",\"8277724734\",\"8281432408\",\"8288812105\",\"8290926771\",\"8303454241\",\"8309118101\",\"8309865529\",\"8310010694\",\"8310070431\",\"8311991667\",\"8313094015\",\"8317468172\",\"8319353787\",\"8322698564\",\"8327482141\",\"8327820770\",\"8328543245\",\"8328850356\",\"8329982339\",\"8331569195\",\"8335825785\",\"8337539661\",\"8341999149\",\"8342189311\",\"8344051901\",\"8346004149\",\"8347503157\",\"8350518493\",\"8351972815\",\"8352206292\",\"8353064427\",\"8353160172\",\"8353955233\",\"8355159098\",\"8358518421\",\"8359082623\",\"8366012391\",\"8367461388\",\"8372997122\",\"8377093987\",\"8381623910\",\"8382061243\",\"8384057593\",\"8384689749\",\"8386666767\",\"8386793499\",\"8388063569\",\"8389624275\",\"8392406358\",\"8393853819\",\"8395917828\",\"8396980904\",\"8398865107\",\"8399956257\",\"8400344163\",\"8404373294\",\"8407403125\",\"8409494864\",\"8411599332\",\"8421561159\",\"8423008156\",\"8426622833\",\"8427634569\",\"8428572486\",\"8436024021\",\"8436643404\",\"8439362049\",\"8440760987\",\"8442809460\",\"8443036798\",\"8443805897\",\"8445041485\",\"8445330073\",\"8446005763\",\"8446372231\",\"8447534661\",\"8447585718\",\"8447830068\",\"8448409603\",\"8450512511\",\"8451470030\",\"8454189295\",\"8455239611\",\"8455935596\",\"8460084433\",\"8460784953\",\"8463876330\",\"8472084588\",\"8474885327\",\"8476059904\",\"8477220212\",\"8477469958\",\"8480505964\",\"8485512774\",\"8486013399\",\"8486574742\",\"8491654430\",\"8491971056\",\"8491976474\",\"8492016735\",\"8494962468\",\"8500228563\",\"8506767167\",\"8506981030\",\"8513362072\",\"8513600314\",\"8514393726\",\"8518800133\",\"8519918280\",\"8521256224\",\"8525520412\",\"8527411023\",\"8528240286\",\"8528989010\",\"8529766319\",\"8532602548\",\"8533102456\",\"8535351180\",\"8536119014\",\"8542303515\",\"8542573282\",\"8544654562\",\"8550907162\",\"8551912178\",\"8552815569\",\"8558447046\",\"8558757778\",\"8560487083\",\"8560709818\",\"8560928083\",\"8569604066\",\"8571433263\",\"8571544480\",\"8573571335\",\"8578360952\",\"8580630933\",\"8583690065\",\"8586878608\",\"8592196566\",\"8595026997\",\"8596140148\",\"8596270879\",\"8602919066\",\"8604696550\",\"8605733793\",\"8606367434\",\"8607110044\",\"8607773408\",\"8612888823\",\"8613544365\",\"8614413702\",\"8627323715\",\"8630184960\",\"8632216197\",\"8633297465\",\"8634312196\",\"8638304663\",\"8640390697\",\"8640727499\",\"8643787495\",\"8645597251\",\"8651668431\",\"8655191799\",\"8658174960\",\"8661722129\",\"8662971476\",\"8670587296\",\"8673764134\",\"8674470583\",\"8684237507\",\"8685038399\",\"8688389470\",\"8690034954\",\"8702643096\",\"8703200712\",\"8703273727\",\"8704081460\",\"8706087313\",\"8707396681\",\"8707676360\",\"8710375221\",\"8710553462\",\"8713397018\",\"8715898882\",\"8716098319\",\"8716428571\",\"8720844433\",\"8726009685\",\"8728868295\",\"8729072173\",\"8730568673\",\"8733936530\",\"8734166382\",\"8737115397\",\"8742211895\",\"8742676847\",\"8744886846\",\"8745122471\",\"8747127597\",\"8749558646\",\"8753413980\",\"8754850165\",\"8755718549\",\"8756835768\",\"8759251402\",\"8760812670\",\"8762493296\",\"8763788974\",\"8770027856\",\"8772228740\",\"8773081922\",\"8776392357\",\"8777730167\",\"8778175043\",\"8780182642\",\"8783516485\",\"8785536899\",\"8790335385\",\"8795307407\",\"8804352974\",\"8804394305\",\"8808621985\",\"8810821200\",\"8811129708\",\"8816137600\",\"8818424284\",\"8822537455\",\"8823387090\",\"8825966823\",\"8834765444\",\"8835887772\",\"8837652030\",\"8838551480\",\"8842425902\",\"8843246052\",\"8844820087\",\"8845469662\",\"8849899924\",\"8854356304\",\"8856017589\",\"8861830064\",\"8862348169\",\"8864056106\",\"8864850031\",\"8866143916\",\"8867254112\",\"8867850391\",\"8871211861\",\"8871946613\",\"8875139244\",\"8879166186\",\"8887175905\",\"8888752880\",\"8890058811\",\"8893611164\",\"8893615815\",\"8895487701\",\"8897379573\",\"8900826469\",\"8902885136\",\"8903011297\",\"8904622411\",\"8906837393\",\"8909124208\",\"8913400006\",\"8915465584\",\"8916321939\",\"8920262959\",\"8923283070\",\"8929623425\",\"8929662634\",\"8930133512\",\"8930791679\",\"8933317719\",\"8935113461\",\"8938639079\",\"8941452423\",\"8942102453\",\"8947488684\",\"8954088752\",\"8960131587\",\"8962513708\",\"8965027422\",\"8968372134\",\"8968471931\",\"8970340990\",\"8970561974\",\"8973956467\",\"8977536940\",\"8983932611\",\"8985349171\",\"8989584694\",\"8995127909\",\"8996361146\",\"9000953253\",\"9003478301\",\"9003815934\",\"9007292080\",\"9010532005\",\"9020451503\",\"9020580531\",\"9025203324\",\"9027590510\",\"9029297866\",\"9032177660\",\"9034112568\",\"9037074021\",\"9037264818\",\"9040385718\",\"9040944073\",\"9044201385\",\"9045616204\",\"9049515564\",\"9051266058\",\"9056140426\",\"9067017669\",\"9068307497\",\"9068605463\",\"9070071192\",\"9071076459\",\"9080019804\",\"9080128965\",\"9082391908\",\"9083542109\",\"9085091731\",\"9089447149\",\"9090358505\",\"9096135733\",\"9100792481\",\"9103065505\",\"9105258430\",\"9107290642\",\"9114286848\",\"9116950939\",\"9118393507\",\"9118795910\",\"9119188102\",\"9131370628\",\"9135721405\",\"9135822963\",\"9141546417\",\"9145170670\",\"9147986978\",\"9149427188\",\"9150657351\",\"9151446701\",\"9154529184\",\"9160100453\",\"9162279391\",\"9163061763\",\"9163773981\",\"9169530932\",\"9172155059\",\"9174875302\",\"9174916284\",\"9186764264\",\"9187643068\",\"9192054233\",\"9194384134\",\"9199088622\",\"9200307656\",\"9201875027\",\"9203035243\",\"9204866505\",\"9207250971\",\"9207372851\",\"9210231392\",\"9212086649\",\"9213219531\",\"9213270709\",\"9215480998\",\"9222153994\",\"9226474938\",\"9226621324\",\"9230292610\",\"9232651207\",\"9232803518\",\"9235143815\",\"9236237184\",\"9239211252\",\"9241165972\",\"9245513894\",\"9256183013\",\"9258059350\",\"9259033011\",\"9260806687\",\"9270676203\",\"9278741003\",\"9279909751\",\"9284068632\",\"9286519455\",\"9287504890\",\"9287571322\",\"9292952971\",\"9294815765\",\"9297701491\",\"9300628809\",\"9304736762\",\"9307746287\",\"9308608945\",\"9314613531\",\"9314649429\",\"9319190585\",\"9321533406\",\"9322486252\",\"9323583122\",\"9325103737\",\"9325129123\",\"9325990223\",\"9327284155\",\"9333402846\",\"9339787004\",\"9340752329\",\"9341886465\",\"9344140649\",\"9346971193\",\"9352579651\",\"9352645028\",\"9356390327\",\"9361332642\",\"9362736373\",\"9364103352\",\"9366122795\",\"9368797440\",\"9372262219\",\"9373564014\",\"9377917340\",\"9379217721\",\"9387380418\",\"9387672850\",\"9387674715\",\"9389457938\",\"9389885910\",\"9391314599\",\"9393341134\",\"9395180616\",\"9397128201\",\"9397440115\",\"9397654697\",\"9398362109\",\"9404981493\",\"9408449152\",\"9410605811\",\"9410947536\",\"9413853471\",\"9418340681\",\"9418897256\",\"9419791140\",\"9422344882\",\"9422520919\",\"9423702981\",\"9431649345\",\"9432000750\",\"9438519163\",\"9438619402\",\"9438981908\",\"9443124661\",\"9444808535\",\"9447003536\",\"9449123364\",\"9450945642\",\"9453001659\",\"9454312989\",\"9454452545\",\"9458613234\",\"9460029109\",\"9460753612\",\"9471807266\",\"9472932551\",\"9475126952\",\"9477456745\",\"9479262868\",\"9480889921\",\"9482224389\",\"9486728724\",\"9486760817\",\"9489899104\",\"9490698152\",\"9494685925\",\"9499885295\",\"9503928702\",\"9504590132\",\"9510908752\",\"9511397734\",\"9515603026\",\"9520465181\",\"9525788516\",\"9526715559\",\"9527221323\",\"9527412250\",\"9528720745\",\"9531540758\",\"9533255877\",\"9540077489\",\"9543282502\",\"9547736560\",\"9550992804\",\"9554479163\",\"9556144042\",\"9560430025\",\"9560540812\",\"9564525723\",\"9564624893\",\"9566846106\",\"9567110804\",\"9568064166\",\"9569742620\",\"9575344330\",\"9582809602\",\"9584879278\",\"9588309595\",\"9593910181\",\"9594595817\",\"9596530901\",\"9598993999\",\"9600160441\",\"9600612423\",\"9603303533\",\"9605342546\",\"9609727061\",\"9612741669\",\"9615126029\",\"9617075837\",\"9621471724\",\"9624703660\",\"9626290005\",\"9630683705\",\"9632964455\",\"9633093534\",\"9636841804\",\"9640092689\",\"9640271868\",\"9643981165\",\"9644984361\",\"9646811476\",\"9652403347\",\"9653906508\",\"9653932291\",\"9654809682\",\"9655460349\",\"9661736644\",\"9662422985\",\"9665249754\",\"9666798322\",\"9668702178\",\"9675738355\",\"9676545595\",\"9680261978\",\"9681562907\",\"9682481051\",\"9688178922\",\"9692122176\",\"9694696718\",\"9701519461\",\"9701705776\",\"9702179908\",\"9702639521\",\"9704234829\",\"9705413308\",\"9715723472\",\"9716918074\",\"9719817461\",\"9720699376\",\"9721005199\",\"9726843811\",\"9729290732\",\"9729475227\",\"9730546629\",\"9732821029\",\"9735131442\",\"9735240223\",\"9735279232\",\"9736240141\",\"9738388188\",\"9740262193\",\"9740640735\",\"9743886962\",\"9745952656\",\"9751997142\",\"9758913988\",\"9760925339\",\"9761298760\",\"9762221880\",\"9762257538\",\"9762702751\",\"9762995627\",\"9765318831\",\"9765325563\",\"9769121468\",\"9771313310\",\"9773300745\",\"9778520303\",\"9783316715\",\"9783788754\",\"9784306149\",\"9786979096\",\"9789697248\",\"9790545188\",\"9792414833\",\"9793764585\",\"9800821226\",\"9803514269\",\"9808385174\",\"9810980246\",\"9811311058\",\"9811354776\",\"9812341763\",\"9815283232\",\"9817116271\",\"9820063434\",\"9820372523\",\"9827942549\",\"9829542126\",\"9833458575\",\"9835297214\",\"9840028485\",\"9840166478\",\"9841449469\",\"9844056821\",\"9845775616\",\"9845972476\",\"9846367663\",\"9846974241\",\"9848437402\",\"9852576405\",\"9852778536\",\"9859217551\",\"9860821940\",\"9862545908\",\"9863185338\",\"9868600919\",\"9870300498\",\"9871424491\",\"9871558792\",\"9874112427\",\"9874390196\",\"9875288022\",\"9875597823\",\"9879946936\",\"9883171407\",\"9885315814\",\"9889105718\",\"9893953153\",\"9894477008\",\"9901933233\",\"9910194984\",\"9912087463\",\"9913922612\",\"9914300355\",\"9915273695\",\"9916361292\",\"9920591606\",\"9924223480\",\"9926873986\",\"9928589670\",\"9929919200\",\"9930623477\",\"9932444003\",\"9935307700\",\"9939908351\",\"9940283309\",\"9940929924\",\"9942703170\",\"9942891463\",\"9943302646\",\"9945163346\",\"9947889277\",\"9951072285\",\"9956133955\",\"9959516434\",\"9960038846\",\"9962903434\",\"9970101670\",\"9970293910\",\"9970999905\",\"9976280245\",\"9976445095\",\"9977492096\",\"9980842418\",\"9981239412\",\"9984169865\",\"9987229337\",\"9989242253\",\"9990136696\",\"9997591117\",\"openIM123456\",\"openIM654321\",\"openIMAdmin\"]}"}
+2024-06-24 10:57:09.995 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/user/get_users_info", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"usersInfo\":[{\"userID\":\"1001978187\",\"nickname\":\"CåĨ\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1001978187/storage/emulated/0/Android/data/io.openim.android.demo/cache/1705314301108.jpg\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":2},{\"userID\":\"1003546611\",\"nickname\":\"ææäēē\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716263252060,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1007207701\",\"nickname\":\"limi\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718113048084,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1012210794\",\"nickname\":\"AIRBY\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717555823033,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1016745053\",\"nickname\":\"ceshiceshi\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715404598357,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1019113328\",\"nickname\":\"å°č¯´åŽļđ đ˛\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698222591266,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1020167636\",\"nickname\":\"ader\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1020167636/åąåšæĒåž(1).webp\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1020330989\",\"nickname\":\"Alan\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699524473804,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1024013158\",\"nickname\":\"asen\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712668431894,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1026082681\",\"nickname\":\"test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709198067734,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1027189710\",\"nickname\":\"cc1231231ww\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698905372897,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1029140975\",\"nickname\":\"song\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703210269794,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1029199385\",\"nickname\":\"åæēæļĩ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704786935792,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1030196386\",\"nickname\":\"ice\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714037782879,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1035018583\",\"nickname\":\"sdda\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708586693792,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1035025841\",\"nickname\":\"openimIos-\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1035025841/1703645744598_img-1701149298684f16e210025edac32b00418866d89c64e5def2deaf36ae0088476bf83df2c098e.jpg\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1035596382\",\"nickname\":\"ChenbuEr\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709911692422,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1039344075\",\"nickname\":\"ææ¨čąĒ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701508712473,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1040441805\",\"nickname\":\"sss\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1040441805/adventurer-3.webp\",\"ex\":\"\",\"createTime\":1714128425214,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1041417511\",\"nickname\":\"OpenIMxie\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703033401557,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1041526810\",\"nickname\":\"indigo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708395961560,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1042709364\",\"nickname\":\"yangyupian\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698893048463,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1046238762\",\"nickname\":\"Raymon\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702866813325,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1047286184\",\"nickname\":\"æ¨æ¨desu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715426871466,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1047605577\",\"nickname\":\"夊įŊĄå°č\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715244902748,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1048801023\",\"nickname\":\"å°ąåäŊ \",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714372752247,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1048970643\",\"nickname\":\"mk\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711167304276,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1049946080\",\"nickname\":\"æææ´éžå
Ŋ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710729878200,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1050659067\",\"nickname\":\"assa\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715179510083,\"appMangerLevel\":0,\"globalRecvMsgOpt\":2},{\"userID\":\"1051234044\",\"nickname\":\"Holly\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715238184761,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1051923075\",\"nickname\":\"mfktdkj\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1051923075/1714019445047jpg\",\"ex\":\"\",\"createTime\":1714009322822,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1057649044\",\"nickname\":\"harry\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706599319991,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1058654100\",\"nickname\":\"tianx\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716571057466,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1059702215\",\"nickname\":\"mrlee\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700790857826,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1061497126\",\"nickname\":\"é\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712473934799,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1062100611\",\"nickname\":\"dkdk\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706685145715,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1069173979\",\"nickname\":\"Winter\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1069173979/6554853fa834c_65548546b1c6f-0.jpg\",\"ex\":\"\",\"createTime\":1702797232553,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1069920007\",\"nickname\":\"mzhg\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705920327906,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1070085652\",\"nickname\":\"123123123\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705994682879,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1072866639\",\"nickname\":\"wata\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698238036176,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1076727996\",\"nickname\":\"lyx926\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708500483765,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1078126675\",\"nickname\":\"ddd\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715838450229,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1078453176\",\"nickname\":\"opim-0107\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713232497376,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1079519777\",\"nickname\":\"Hola\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702887222447,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1081211551\",\"nickname\":\"abel\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706848308937,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1084443978\",\"nickname\":\"miss24\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714961257162,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1084666176\",\"nickname\":\"18701884470\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709195583873,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1088304633\",\"nickname\":\"guofengzhi\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713069798786,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1090301906\",\"nickname\":\"Zoranner\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701702022125,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1091357456\",\"nickname\":\"DarkMage\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718161401272,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1092596091\",\"nickname\":\"dasdean\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712543514577,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1098139429\",\"nickname\":\"æåå¨\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710061027660,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1098570531\",\"nickname\":\"zmhncn\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714104087660,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1105464832\",\"nickname\":\"kevin-test\",\"faceURL\":\"ic_avatar_02\",\"ex\":\"\",\"createTime\":1706774409575,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1106456014\",\"nickname\":\"test1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712041606194,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1109663154\",\"nickname\":\"liuhuiyong\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711016526820,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1110013188\",\"nickname\":\"aote\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718163152282,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1110128907\",\"nickname\":\"ff\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706710511782,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1110490028\",\"nickname\":\"james\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698324972232,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1111364629\",\"nickname\":\"haoduoyu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710148048126,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1111503020\",\"nickname\":\"éææ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715047874503,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1111724110\",\"nickname\":\"fang\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1112057887\",\"nickname\":\"bai\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708494612198,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1113172567\",\"nickname\":\"1111\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711697910892,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1113982296\",\"nickname\":\"berlu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717571999777,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1114171800\",\"nickname\":\"2111111\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709518827763,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1114245774\",\"nickname\":\"åéŖ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701957769296,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1114603358\",\"nickname\":\"čč\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710208761212,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1118121179\",\"nickname\":\"č´ĸč´ĸ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708328525138,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1119049102\",\"nickname\":\"xx\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709732238980,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1119184791\",\"nickname\":\"twonian\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712146411932,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1120888738\",\"nickname\":\"æäēč
ž\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715237253987,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1121842056\",\"nickname\":\"ååå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716530976944,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1124267584\",\"nickname\":\"é˛įģį§\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699404867060,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1125316748\",\"nickname\":\"Kai\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710210115306,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1128086235\",\"nickname\":\"icewalnut\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705373496080,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1129238672\",\"nickname\":\"ææ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715743805898,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1130612769\",\"nickname\":\"mlch911\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704697579659,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1135290573\",\"nickname\":\"tedjames\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717654876074,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1137346656\",\"nickname\":\"éžčæ ŧ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712028950826,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1139778570\",\"nickname\":\"HelloWorld\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716808897705,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1141269663\",\"nickname\":\"æ´įŊįŊ\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1141269663/image_cropper_B2084343-9F9C-4E7A-A14B-FEC9120BE973-7605-0000026AA68BA730.jpg\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1145518931\",\"nickname\":\"Kk www\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709533274499,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1148014193\",\"nickname\":\"v79\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710302586039,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1149674300\",\"nickname\":\"xman\",\"faceURL\":\"http://14.29.213.197:50002/object/1149674300/1717418035167_Screenshot_20240526_110926_com.jinnianhui.macau.jpg\",\"ex\":\"\",\"createTime\":1717155056414,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1152052323\",\"nickname\":\"husky\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718090857585,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1153223299\",\"nickname\":\"čäšĻå
\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715791486294,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1153514846\",\"nickname\":\"cardyok\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704530261378,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1154538243\",\"nickname\":\"Cad123\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717068313905,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1158421119\",\"nickname\":\"ck01\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713954092105,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1160166255\",\"nickname\":\"äšæ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1161320377\",\"nickname\":\"backWang\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714284699649,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1163727739\",\"nickname\":\"JASON\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707385524029,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1164940739\",\"nickname\":\"ting\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1164940739/ä¸ģåž.webp\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1169314033\",\"nickname\":\"yea\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702349416351,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1169864390\",\"nickname\":\"Baza\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705575684568,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1173525994\",\"nickname\":\"ä¸į§\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1178348711\",\"nickname\":\"cjf\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716197798618,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1178600008\",\"nickname\":\"111\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712456313447,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1179846066\",\"nickname\":\"vdsv\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708343090486,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1180960663\",\"nickname\":\"aidi\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711521638525,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1184247096\",\"nickname\":\"urok\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711097756205,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1186482465\",\"nickname\":\"æĨåģæ č¸Ē\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717291235829,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1186763406\",\"nickname\":\"ææ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700754501036,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1189211982\",\"nickname\":\"abc\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699398652800,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1189516087\",\"nickname\":\"chauncey\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717301358911,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1191255050\",\"nickname\":\"chatfeed\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708751990317,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1193985259\",\"nickname\":\"įæŗ\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/垎äŋĄåžį_20231101122024.jpg\",\"ex\":\"\",\"createTime\":1698322444526,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1195520252\",\"nickname\":\"åŽæŦĸ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700127563448,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1197722329\",\"nickname\":\"darke\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708999026145,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1197740724\",\"nickname\":\"zibin\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704866750168,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1197930203\",\"nickname\":\"大č¸å¤´å\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705225688456,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1198170851\",\"nickname\":\"test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714298191218,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1199452366\",\"nickname\":\"lifeixing\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709619061824,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1201627975\",\"nickname\":\"įäē\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713953155814,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1201870569\",\"nickname\":\"ezreal\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707027936631,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1203300972\",\"nickname\":\"ææ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702537455116,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1203427082\",\"nickname\":\"itwei\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717164592886,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1203740992\",\"nickname\":\"tamamusiiro\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709626947762,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1205216213\",\"nickname\":\"line\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699924589178,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1214890264\",\"nickname\":\"å\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1215813908\",\"nickname\":\"æĩč¯2024\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711870979758,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1216359267\",\"nickname\":\"éēĻį°åŽæč
\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699770571043,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1217986161\",\"nickname\":\"MarkMing\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715328255309,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1218106711\",\"nickname\":\"frank\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716264893822,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1222190045\",\"nickname\":\"123\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710496136969,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1223611752\",\"nickname\":\"janson\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718186728577,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1223824434\",\"nickname\":\"åĩåĩ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715325308519,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1225764106\",\"nickname\":\"äģåš´\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706515794375,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1228521294\",\"nickname\":\"DanielYi\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702341559278,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1231061920\",\"nickname\":\"įå¯į\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706857315062,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1236363603\",\"nickname\":\"å°įŊ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711621695353,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1239260993\",\"nickname\":\"ming\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707115935026,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1242008964\",\"nickname\":\"Robert\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714481217104,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1244598736\",\"nickname\":\"yscsj\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715448574269,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1246378526\",\"nickname\":\"zhaoyazhou\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705927173434,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1247281849\",\"nickname\":\"ä¸å\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710331159239,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1247768465\",\"nickname\":\"夊åŊ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716260495865,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1250766516\",\"nickname\":\"qqq\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710515419893,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1253082303\",\"nickname\":\"čŊģæŽ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705249519667,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1254137907\",\"nickname\":\"zqwmmzxb\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702535023334,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1254897163\",\"nickname\":\"åŊąå11112\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713800872476,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1255014799\",\"nickname\":\"abcd\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708871360352,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1255769566\",\"nickname\":\"Libo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705477295452,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1257873838\",\"nickname\":\"åŊäēæ666\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697685258755,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1259205714\",\"nickname\":\"len\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713362306988,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1259491611\",\"nickname\":\"yilian\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717247353028,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1260906081\",\"nickname\":\"tim\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1262838585\",\"nickname\":\"13430587076\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709707684118,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1263384112\",\"nickname\":\"w\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716897888741,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1264676490\",\"nickname\":\"cytian\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716860146952,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1266887644\",\"nickname\":\"å¤éŗ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714059890011,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1273935053\",\"nickname\":\"å\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699009049895,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1278944119\",\"nickname\":\"paul\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716866746135,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1279884042\",\"nickname\":\"ddcxl\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716969145576,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1281598562\",\"nickname\":\"1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702624485784,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1281934775\",\"nickname\":\"valid\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717217572639,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1287973372\",\"nickname\":\"æŗåˇ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706511430449,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1291322616\",\"nickname\":\"å¯å¯å¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701889206628,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1291601426\",\"nickname\":\"hwqian\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704702014541,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1292646581\",\"nickname\":\"lilihaoo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717386448280,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1294205397\",\"nickname\":\"sunjishi\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698039401858,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1296481060\",\"nickname\":\"Wheat\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1296481060/1706079127567_1699526577050_334019922572474.jpg\",\"ex\":\"\",\"createTime\":1706078138988,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1303174885\",\"nickname\":\"ok\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697725250350,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1303224493\",\"nickname\":\"kevinsie\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718091210156,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1308295709\",\"nickname\":\"įŊæŗŊ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700633925580,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1308526907\",\"nickname\":\"jerry\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717071829163,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1312600623\",\"nickname\":\"hh\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700464946366,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1312766592\",\"nickname\":\"DanGiant\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1313516275\",\"nickname\":\"hezl\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705902983208,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1314958716\",\"nickname\":\"AshenWong\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715397166525,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1315193254\",\"nickname\":\"ččæ§\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715427427936,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1315194100\",\"nickname\":\"Yzz\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717405905663,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1318098494\",\"nickname\":\"å°æšéŊæ¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698507012681,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1322848164\",\"nickname\":\"å°éģ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1325120618\",\"nickname\":\"eâva\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1326889006\",\"nickname\":\"YaoShuai\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710936473056,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1327075767\",\"nickname\":\"PDXing\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697622040812,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1328504176\",\"nickname\":\"ruanjwei\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713879844801,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1328609722\",\"nickname\":\"s's\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710144400010,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1328649560\",\"nickname\":\"Hardy\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716971778550,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1330357963\",\"nickname\":\"大äŊŦ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705025109066,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1332124716\",\"nickname\":\"Looper\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717570950442,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1335529830\",\"nickname\":\"qingye\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699953574207,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1337385311\",\"nickname\":\"zeting\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700039901093,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1339832669\",\"nickname\":\"Toya\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715291471300,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1342056722\",\"nickname\":\"xiao\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716950945126,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1351222021\",\"nickname\":\"tongysh\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712737694916,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1352959012\",\"nickname\":\"22222éŋč¨åžˇ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712051007423,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1356317580\",\"nickname\":\"test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1358105773\",\"nickname\":\"rv\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702254784010,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1360958542\",\"nickname\":\"å°åļå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713924606033,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1361338405\",\"nickname\":\"å°æļįå°åŧ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711592667623,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1369503108\",\"nickname\":\"gslj9512\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701700593235,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1378104152\",\"nickname\":\"xiao\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716475134776,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1378723738\",\"nickname\":\"qwe\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718074137562,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1378864517\",\"nickname\":\"åŽåŽæ´Ēč\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715696134579,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1381750803\",\"nickname\":\"ä¸įĒ-ææĸ
\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1382542089\",\"nickname\":\"wenrui\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1389388976\",\"nickname\":\"æ¨éŗ\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1389388976/yy头å.webp\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1389519072\",\"nickname\":\"äģ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717229473076,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1389672286\",\"nickname\":\"æžææ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700555574762,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1399815726\",\"nickname\":\"Jason\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716226343605,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1400334070\",\"nickname\":\"Otr\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1403690073\",\"nickname\":\"nox\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716898182349,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1404053476\",\"nickname\":\"éģčą\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713841810446,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1404071596\",\"nickname\":\"khieu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713497154757,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1404108486\",\"nickname\":\"rrrrr\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1406732851\",\"nickname\":\"čĄčĄåå¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":2},{\"userID\":\"1408523578\",\"nickname\":\"IQN\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705623244647,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1411038705\",\"nickname\":\"11\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718183698431,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1413232357\",\"nickname\":\"abctzz\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715928547567,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1413892032\",\"nickname\":\"Allen\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716372407003,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1416508762\",\"nickname\":\"paper\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1416508762/storage/emulated/0/Android/data/io.openim.android.demo/cache/1702705006608/1702705003342.jpg\",\"ex\":\"\",\"createTime\":1702490772500,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1421222947\",\"nickname\":\"ryan\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707753849832,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1423094054\",\"nickname\":\"æå
\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701494310559,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1424675347\",\"nickname\":\"Zerg\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715912123047,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1425098887\",\"nickname\":\"æĩč¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704986491576,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1426385421\",\"nickname\":\"Tom\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706080719207,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1428611256\",\"nickname\":\"ccc\",\"faceURL\":\"ic_avatar_06\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1429778434\",\"nickname\":\"å°éģäēē\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715764130455,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1431753089\",\"nickname\":\"nike\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715302899256,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1435708354\",\"nickname\":\"xxg\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705335733730,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1435815467\",\"nickname\":\"å°åŖ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714272363148,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1439097961\",\"nickname\":\"SwordDust\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697768949440,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1440270225\",\"nickname\":\"nye\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716555643354,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1444423031\",\"nickname\":\"91MrCui\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714805382055,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1445725217\",\"nickname\":\"wms2537\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710646081107,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1447165914\",\"nickname\":\"å¤åš\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715431426898,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1447253383\",\"nickname\":\"OpenIMxie2\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703033627874,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1448477441\",\"nickname\":\"edram\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718156487880,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1449505287\",\"nickname\":\"xwg\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716776253309,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1450541750\",\"nickname\":\"lw\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708484981852,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1450572942\",\"nickname\":\"aganhui\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703379356259,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1451141537\",\"nickname\":\"beq\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1455103500\",\"nickname\":\"įéĻ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717852507969,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1455854618\",\"nickname\":\"aduni\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701930675276,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1457549515\",\"nickname\":\"įĨåĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708058800462,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1459886066\",\"nickname\":\"æ¨åŧæĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1466421314\",\"nickname\":\"zxn\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707119860783,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1479208215\",\"nickname\":\"222324234\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699338926730,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1481152183\",\"nickname\":\"q\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713765478261,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1483410143\",\"nickname\":\"åæĨŧ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708997902768,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1484864273\",\"nickname\":\"xidianzxm\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708590565174,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1489050183\",\"nickname\":\"zombie\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713964502845,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1490112482\",\"nickname\":\"cc\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713331070393,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1491381111\",\"nickname\":\"å
å
\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699412820427,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1493979234\",\"nickname\":\"æŽį¨ˇ\",\"faceURL\":\"http://14.29.213.197:50002/object/1493979234/storage/emulated/0/Android/data/io.openim.android.demo/cache/1715424050441/1715424031094.jpg\",\"ex\":\"\",\"createTime\":1715423193916,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1496957522\",\"nickname\":\"åēˇäš\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713490401660,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1501353503\",\"nickname\":\"huajie6225\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706055069732,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1503288583\",\"nickname\":\"openIMUser\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1503313265\",\"nickname\":\"Craig\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710143163213,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1503571831\",\"nickname\":\"miszhao\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713519049064,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1503799516\",\"nickname\":\"gva\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706759252305,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1511563482\",\"nickname\":\"umou\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707900176532,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1512333186\",\"nickname\":\"chen@163.com\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717744382081,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1517471629\",\"nickname\":\"éĻč\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715443796142,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1519782782\",\"nickname\":\"adong\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714976546493,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1522530015\",\"nickname\":\"åŖ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708916538845,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1525076035\",\"nickname\":\"ray\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707208479195,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1525462486\",\"nickname\":\"jjj440\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715431591615,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1527761901\",\"nickname\":\"Tony\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714046817119,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1528034041\",\"nickname\":\"æĨäēæĨäē\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710761308077,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1531529736\",\"nickname\":\"å°čĨŋįąŗ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700630983849,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1531800981\",\"nickname\":\"OpenIM-Brett\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1531800981/99468005.webp\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":2},{\"userID\":\"1538447111\",\"nickname\":\"pop\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709270414500,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1539916836\",\"nickname\":\"Hugh\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718266799513,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1545733795\",\"nickname\":\"zhangtao25\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700060155834,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1547315621\",\"nickname\":\"ww\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1553095200\",\"nickname\":\"pheoman\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716910646638,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1556110492\",\"nickname\":\"bazzicn\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698013899831,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1563714762\",\"nickname\":\"čĒå¨\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715065522484,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1567202525\",\"nickname\":\"yang\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713429637391,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1570753957\",\"nickname\":\"äšéŖ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709895379764,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1571918249\",\"nickname\":\"xigua\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716967210283,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1572354946\",\"nickname\":\"äģé¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1572952163\",\"nickname\":\"大ếĄĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716561246829,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1575369290\",\"nickname\":\"aa1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1580228426\",\"nickname\":\"sunshine\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714357277478,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1586898988\",\"nickname\":\"rj001\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709777486532,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1591700454\",\"nickname\":\"kyle\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711955215077,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1592632793\",\"nickname\":\"lemon\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716435027064,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1596057385\",\"nickname\":\"leej\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714369078001,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1596529802\",\"nickname\":\"æēäģįåĨļ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713081128655,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1597197183\",\"nickname\":\"qun\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700122586563,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1597446517\",\"nickname\":\"Joy\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713776223550,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1602000005\",\"nickname\":\"zixu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710748081038,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1605306478\",\"nickname\":\"ä¸äŧ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715138409219,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1606591661\",\"nickname\":\"yy\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713837471719,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1610353382\",\"nickname\":\"july\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710412011231,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1613711798\",\"nickname\":\"ghuuu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715418124167,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1617274099\",\"nickname\":\"zhugq\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710143063858,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1619510595\",\"nickname\":\"æēäģ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709101350263,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1624302032\",\"nickname\":\"åĸå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715597893645,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1628445271\",\"nickname\":\"wt\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712818240784,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1639021089\",\"nickname\":\"åå6\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1697169869348.png\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1641400615\",\"nickname\":\"wenl\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717492380722,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1645337519\",\"nickname\":\"qf0129\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715262219871,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1652390041\",\"nickname\":\"dason\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715162238180,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1653288930\",\"nickname\":\"sjjs\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717727903063,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1654005478\",\"nickname\":\"gitäģ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1655462573\",\"nickname\":\"IM009\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709100132488,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1655642484\",\"nickname\":\"helloxuetao\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711601692713,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1656524872\",\"nickname\":\"guozi\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716277763901,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1659023429\",\"nickname\":\"Sa\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1659042267\",\"nickname\":\"ssd\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698774621766,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1664486975\",\"nickname\":\"æ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708493286975,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1667631425\",\"nickname\":\"OpenZ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714760946415,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1669430182\",\"nickname\":\"oliverhdh\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711970699082,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1670365234\",\"nickname\":\"\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698647707197,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1670622606\",\"nickname\":\"éĒä¸į\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712137080186,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1672477147\",\"nickname\":\"yang\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708441349095,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1672553537\",\"nickname\":\"卿°¸æŦĸ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1687822249\",\"nickname\":\"-\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715313523579,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1689589076\",\"nickname\":\"čŋ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715870166708,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1692205388\",\"nickname\":\"ä¸įĨé\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708304549159,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1693456624\",\"nickname\":\"15819342015\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1694942215\",\"nickname\":\"alex\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716980286481,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1702117725\",\"nickname\":\"test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698678858933,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1702188248\",\"nickname\":\"įĢšåéįæ°´\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701422643079,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1703789873\",\"nickname\":\"åéŖ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718179269572,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1709215513\",\"nickname\":\"muly\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717138231496,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1712766650\",\"nickname\":\"ly410726\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717409895407,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1713347484\",\"nickname\":\"1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705542010636,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1717761876\",\"nickname\":\"፺éåˇ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714969430832,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1721395134\",\"nickname\":\"kxxx\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710764612773,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1727201413\",\"nickname\":\"tonny\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698895388834,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1731109771\",\"nickname\":\"åé\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1731636962\",\"nickname\":\"ææ¯æĩč¯č´Ļåˇ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716187445439,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1736245880\",\"nickname\":\"jdjdjdjx\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700042134705,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1738515952\",\"nickname\":\"123123\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714224157334,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1742363625\",\"nickname\":\"xiaomi\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700701355124,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1742605630\",\"nickname\":\"æ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715434703230,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1743177197\",\"nickname\":\"Tyy\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705458632415,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1744636404\",\"nickname\":\"vvvccc\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1744636404/æļæ¯20231011154243.webp\",\"ex\":\"\",\"createTime\":1711689142539,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1747359714\",\"nickname\":\"Jeq430\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711375315835,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1748872770\",\"nickname\":\"é¨\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715432769698,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1751282511\",\"nickname\":\"joeyjoey\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711435417906,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1752144503\",\"nickname\":\"yezhangyinge\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706691307402,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1772946620\",\"nickname\":\"jim002\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700651062593,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1774447755\",\"nickname\":\"Xlent\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705932470131,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1774484110\",\"nickname\":\"zd\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702463429816,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1774642490\",\"nickname\":\"įŋģäēįŋģå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700792969703,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1774777128\",\"nickname\":\"åąąä¸åå
Ŧå¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712738363975,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1776346921\",\"nickname\":\"pingfanh\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708585093835,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1778088968\",\"nickname\":\"wanglei\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699489923766,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1778147024\",\"nickname\":\"test001\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706764248964,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1778774517\",\"nickname\":\"dsj\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1780015171\",\"nickname\":\"tmoe\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698144615058,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1780132425\",\"nickname\":\"Ncr\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1786023921\",\"nickname\":\"æå¸\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1786023921/1716606540115webp\",\"ex\":\"\",\"createTime\":1716605966935,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1789628801\",\"nickname\":\"binlove\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698311514950,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1790308311\",\"nickname\":\"justin\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699008473092,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1792420009\",\"nickname\":\"Gai\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699509673219,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1792779407\",\"nickname\":\"zn\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716728451865,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1793479516\",\"nickname\":\"ee\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710488257741,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1794457838\",\"nickname\":\"aqqq\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715416829228,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1799928569\",\"nickname\":\"12312q\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713167455951,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1801012070\",\"nickname\":\"åļįļ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709185570109,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1804216069\",\"nickname\":\"å°ä¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714044705683,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1806295356\",\"nickname\":\"x123\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714790142636,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1807355584\",\"nickname\":\"uu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708398133348,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1808739935\",\"nickname\":\"yueyihua\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713338959225,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1810705917\",\"nickname\":\"jacobcl\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716940870752,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1811284251\",\"nickname\":\"z_z-\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717150329506,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1814656795\",\"nickname\":\"123qwe\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714368496335,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1817747447\",\"nickname\":\"åå°æģ¨čžå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705567642951,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1818754282\",\"nickname\":\"Hhp\",\"faceURL\":\"ic_avatar_04\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1819336215\",\"nickname\":\"everyday.difficulty\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717561756591,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1819708663\",\"nickname\":\"hello2\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710044322533,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1823386847\",\"nickname\":\"åå7\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1824275843\",\"nickname\":\"äŊ åĨŊ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697699479350,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1825528748\",\"nickname\":\"D1gital_D3mon\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709219778817,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1828448298\",\"nickname\":\"č§į\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699405626989,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1829995445\",\"nickname\":\"ning\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713797064053,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1831010849\",\"nickname\":\"awedcdaa\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704963271587,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1831904357\",\"nickname\":\"éŋå¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705137534797,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1834112002\",\"nickname\":\"Robert\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708148491368,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1839129196\",\"nickname\":\"sh123123\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713933051732,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1839949291\",\"nickname\":\"yize\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714464266857,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1842076890\",\"nickname\":\"1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716876603771,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1847173569\",\"nickname\":\"ææ¯æĩč¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1847547134\",\"nickname\":\"marvel\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716990323378,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1848196820\",\"nickname\":\"åąæ¯\",\"faceURL\":\"http://14.29.213.197:50002/object/1848196820/storage/emulated/0/Android/data/io.openim.android.demo/cache/1717414842608/1717414836868.jpg\",\"ex\":\"\",\"createTime\":1715141560699,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1854151908\",\"nickname\":\"æĩæĩ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713865366158,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1854239844\",\"nickname\":\"RockerQ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704854369933,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1856646576\",\"nickname\":\"åčą\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709200093051,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1858506629\",\"nickname\":\"IPHWT\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718114767557,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1860327649\",\"nickname\":\"pale\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708153391133,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1864342100\",\"nickname\":\"abo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710221222206,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1866469672\",\"nickname\":\"Tristan\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699276990863,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1869222509\",\"nickname\":\"fawf\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702957538658,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1876795205\",\"nickname\":\"ååå\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1876795205/image_cropper_1713759992714.jpg\",\"ex\":\"\",\"createTime\":1713715589589,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1876910460\",\"nickname\":\"æčą233\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716097787418,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1878877862\",\"nickname\":\"eric\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704711248408,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1879624691\",\"nickname\":\"heool\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710056635723,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1881699466\",\"nickname\":\"eeeee\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711756817070,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1894592643\",\"nickname\":\"ivancxj\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709109755317,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1896037684\",\"nickname\":\"Asuka\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698818287349,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1896201093\",\"nickname\":\"鲲éš\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699518135566,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1896406410\",\"nickname\":\"å°æ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706171743477,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1902484337\",\"nickname\":\"123123\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716541330587,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1905725782\",\"nickname\":\"123123\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710938148267,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1906445099\",\"nickname\":\"åļ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715424825902,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1908218712\",\"nickname\":\"äžįļįĻģåģå
Ž\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711102880248,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1908245713\",\"nickname\":\"test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699954093880,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1911583328\",\"nickname\":\"az\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700126277282,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1911710742\",\"nickname\":\"æ˛Ąåįģ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1911810093\",\"nickname\":\"æĩč¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717409224197,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1912058390\",\"nickname\":\"gl1721\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709949012131,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1913583468\",\"nickname\":\"čŋĒå¸é
\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1919047430\",\"nickname\":\"åąæ¯\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1919047430/storage/emulated/0/Android/data/io.openim.android.demo/cache/1711543706522/1711543697615.webp\",\"ex\":\"\",\"createTime\":1711543606862,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1922087882\",\"nickname\":\"nanshan\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1925254179\",\"nickname\":\"xqs\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718160451969,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1931646522\",\"nickname\":\"cjcjj\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711621629276,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1934748565\",\"nickname\":\"alexander_jiang\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715097617049,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1938451039\",\"nickname\":\"đđđ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717933306891,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1942179907\",\"nickname\":\"æ¯æ¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718180157784,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1947536099\",\"nickname\":\"fortune_cookie\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715597869977,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1947607451\",\"nickname\":\"hahahah\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713715802206,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1948326429\",\"nickname\":\"wkkk\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704954550933,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1949451221\",\"nickname\":\"Lynn\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1950195921\",\"nickname\":\"krishuang\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713297384567,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1952868490\",\"nickname\":\"ggbong\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706363649575,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1958217588\",\"nickname\":\"čæŗŊåˇ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1958518843\",\"nickname\":\"test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716875856400,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1962711667\",\"nickname\":\"é
įļ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1964147937\",\"nickname\":\"kkkk364\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699622477332,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1966124402\",\"nickname\":\"1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698919588407,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1968770658\",\"nickname\":\"East\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1974192173\",\"nickname\":\"pap\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709806383040,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1975362624\",\"nickname\":\"Henry\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698644976394,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1975553123\",\"nickname\":\"8595\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718096421014,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1975712729\",\"nickname\":\"æ æ°´\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707100001360,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1977829381\",\"nickname\":\"PAJDI\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715475882513,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1979754569\",\"nickname\":\"Daisy\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/1979754569/1708328290152jpg\",\"ex\":\"\",\"createTime\":1706508015806,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1981410842\",\"nickname\":\"will\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707043232441,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1985863892\",\"nickname\":\"1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711732366346,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1985870240\",\"nickname\":\"1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716961886659,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1988963519\",\"nickname\":\"dd\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701061080091,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1993324527\",\"nickname\":\"marisa\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706322587686,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"1993900928\",\"nickname\":\"椰å\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"1996969578\",\"nickname\":\"wsdehl\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715563962020,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2004232076\",\"nickname\":\"â\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716370091997,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2004829824\",\"nickname\":\"tjx\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2007415990\",\"nickname\":\"abx\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697563005856,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2010453067\",\"nickname\":\"12\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710918667388,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2010596235\",\"nickname\":\"æ°æ¸Š123\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2011701267\",\"nickname\":\"haris\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715680309470,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2014288178\",\"nickname\":\"å§\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706443386368,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2016410286\",\"nickname\":\"cheng66\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715912443754,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2019888097\",\"nickname\":\"æįĒ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714606151242,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2020409452\",\"nickname\":\"åįĨĨå˛\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701755673790,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2021892716\",\"nickname\":\"qâweâeâwâq\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716800199784,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2024007389\",\"nickname\":\"åŽ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2024880531\",\"nickname\":\"t123\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711012786380,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2024935500\",\"nickname\":\"anlanemo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712665266227,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2030639266\",\"nickname\":\"å°į§å¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715397611185,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2031934238\",\"nickname\":\"kai\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717325203278,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2033736816\",\"nickname\":\"čąįŦ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710555313234,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2044305683\",\"nickname\":\"summeryz\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715066051336,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2051159423\",\"nickname\":\"kkun\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698116308431,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2055552460\",\"nickname\":\"ååå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709879736090,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2055562411\",\"nickname\":\"æ¸æ¸æ¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698820578377,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2056273558\",\"nickname\":\"įĨįĨįĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715763072676,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2058272412\",\"nickname\":\"čį\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698994607858,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2065312455\",\"nickname\":\"åˇĨå
ˇäēē\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716800786275,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2065649737\",\"nickname\":\"æļ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712894173104,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2067518707\",\"nickname\":\"įŗįŗ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705823812503,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2067737063\",\"nickname\":\"test4\",\"faceURL\":\"ic_avatar_04\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2068776395\",\"nickname\":\"s123456\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2069135616\",\"nickname\":\"111\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712499413376,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2072960535\",\"nickname\":\"test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713959163479,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2074661004\",\"nickname\":\"linger\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707283890811,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2079144021\",\"nickname\":\"shy\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718081010537,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2082541912\",\"nickname\":\"kunio\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703044535927,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2089643170\",\"nickname\":\"qin\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717408492721,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2090630692\",\"nickname\":\"JJ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701053771249,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2097541846\",\"nickname\":\"will\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709004037369,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2097781817\",\"nickname\":\"Aladdin\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715154855546,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2100400616\",\"nickname\":\"yong\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705051949256,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2104195868\",\"nickname\":\"jerry\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706252149389,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2104948837\",\"nickname\":\"smallhorse\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706798073688,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2105815429\",\"nickname\":\"xwsoft\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705644709992,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2106298144\",\"nickname\":\"test-zoy\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706929785784,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2108107622\",\"nickname\":\"åå°\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706082269983,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2114315169\",\"nickname\":\"test6\",\"faceURL\":\"ic_avatar_02\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2116967433\",\"nickname\":\"cqqqq777\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704636072310,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2122535786\",\"nickname\":\"äšæ˛ģ\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2122535786/image_cropper_EE3CC646-55C6-4FA6-8979-FDEAC045DE82-3495-000002F7B7619DC2.jpg\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2122903572\",\"nickname\":\"Jonas\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697725267132,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2123184085\",\"nickname\":\"133\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714098925777,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2130822983\",\"nickname\":\"adminaaa\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710321908887,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2134502115\",\"nickname\":\"garbin\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2135811730\",\"nickname\":\"åŧ ä¸3\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699957042201,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2136985550\",\"nickname\":\"CC\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2136985550/storage/emulated/0/Android/data/io.openim.android.demo/cache/1708983023253/1708983019704.jpg\",\"ex\":\"\",\"createTime\":1708953121728,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2141887973\",\"nickname\":\"ååå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2147178021\",\"nickname\":\"titrxw\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713510931837,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2148094530\",\"nickname\":\"johney\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712823568384,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2148877993\",\"nickname\":\"hah\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713840817881,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2158704735\",\"nickname\":\"lh\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2158704735/åēåˇŽįŗč¯ˇ@2x.png\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2159393416\",\"nickname\":\"IM_user\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709111540090,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2159739643\",\"nickname\":\"zyopenim\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2161460908\",\"nickname\":\"aaa\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713445118338,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2166930178\",\"nickname\":\"Fm2.0\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697570205148,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2168939271\",\"nickname\":\"tlxfif\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715307224636,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2169175564\",\"nickname\":\"ååĻåé´11\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2169175564/image_2024-04-23-23-16.752.png\",\"ex\":\"\",\"createTime\":1702018692242,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2172356511\",\"nickname\":\"zh\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715078016646,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2175053091\",\"nickname\":\"å¤å°Ŋ夊æ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2175304326\",\"nickname\":\"king\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708056567485,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2177659996\",\"nickname\":\"ZZ\",\"faceURL\":\"ic_avatar_03\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2177829402\",\"nickname\":\"devin\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705047522149,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2180660843\",\"nickname\":\"123\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2180823601\",\"nickname\":\"gy\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705122426595,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2182589988\",\"nickname\":\"csllll\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714979029315,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2184518026\",\"nickname\":\"xiaoxinlee\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713857369774,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2184902631\",\"nickname\":\"pighorse\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700816150384,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2186548040\",\"nickname\":\"brooks133\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714112886375,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2193659648\",\"nickname\":\"Jack\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710330933022,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2195170233\",\"nickname\":\"hhdt2\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699947069869,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2195904688\",\"nickname\":\"windy\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716870559419,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2203147158\",\"nickname\":\"äŊ°å¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700108974335,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2203420444\",\"nickname\":\"莸į§į\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698049390337,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2204485419\",\"nickname\":\"jr\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701518380213,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2210409049\",\"nickname\":\"éįįĨĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716369643529,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2215031028\",\"nickname\":\"ikun\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713496027638,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2216649304\",\"nickname\":\"mxz\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707118924413,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2220605266\",\"nickname\":\"luzx\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706149267705,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2222465830\",\"nickname\":\"Return Self\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700186548673,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2226864743\",\"nickname\":\"Sammy\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708934811905,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2228082017\",\"nickname\":\"æįĻ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717471379028,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2229500075\",\"nickname\":\"jack\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714977546410,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2230209768\",\"nickname\":\"aaa\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715425176307,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2241676396\",\"nickname\":\"123\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714623626870,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2242408886\",\"nickname\":\"éŖčą\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717143288268,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2243648531\",\"nickname\":\"įšįš\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2243648531/image_cropper_1697783728786.jpg\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2244237845\",\"nickname\":\"åļåļį\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703143859538,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2247734613\",\"nickname\":\"å°ąæ¯äŊ \",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708331964898,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2250230706\",\"nickname\":\"大įŊ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701326234792,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2253553088\",\"nickname\":\"Aa\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701673058239,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2259719077\",\"nickname\":\"čŖč\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2262854413\",\"nickname\":\"hi_asan\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712498695843,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2267320291\",\"nickname\":\"beili\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698045433973,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2269669873\",\"nickname\":\"äšäšäš\",\"faceURL\":\"ic_avatar_04\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2271624505\",\"nickname\":\"cc\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708658311949,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2276632311\",\"nickname\":\"sk-test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2282057245\",\"nickname\":\"HZ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714354310787,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2284382043\",\"nickname\":\"Laoliu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715645471616,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2287549734\",\"nickname\":\"aaa\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701758244485,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2289445413\",\"nickname\":\"å厺â\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715435292983,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2290916297\",\"nickname\":\"æ æ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712545081833,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2293953462\",\"nickname\":\"å§å§å§\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715423437789,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2294068026\",\"nickname\":\"æšååčą\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704677170071,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2294606956\",\"nickname\":\"yc\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2294606956/image_cropper_1705903000004.jpg\",\"ex\":\"\",\"createTime\":1705901893720,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2295443263\",\"nickname\":\"čĩĩæĨ夊\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2295443263/image_2024-04-22-37-22.077.png\",\"ex\":\"\",\"createTime\":1703058941711,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2298259901\",\"nickname\":\"åļåä¸ļ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712898871070,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2300236631\",\"nickname\":\"Rereered\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705459138589,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2302198630\",\"nickname\":\"æįžįž\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716259827007,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2303519405\",\"nickname\":\"æąčޝ åˇĢéĻč\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698886922635,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2304329422\",\"nickname\":\"openIMUser\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2304731565\",\"nickname\":\"æ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714980255641,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2305551097\",\"nickname\":\"cokepan\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711939647501,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2311268381\",\"nickname\":\"jinzhengen\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713424694460,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2315425831\",\"nickname\":\"fermin\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715133317751,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2316549309\",\"nickname\":\"å
čŗ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709092348687,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2318151329\",\"nickname\":\"æļé´äš
321a\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713154778190,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2318653347\",\"nickname\":\"lanjin.wei\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2320413995\",\"nickname\":\"æĩč¯1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707820803861,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2321445599\",\"nickname\":\"haha\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708584701760,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2321576079\",\"nickname\":\"sona\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2321576079/tempest.webp\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2321652781\",\"nickname\":\"redux\",\"faceURL\":\"http://14.29.213.197:50002/object/2321652781/1714790292016_Screenshot_2024-04-05-21-03-05-276_com.tencent.tmgp.pubgmhd.jpg\",\"ex\":\"\",\"createTime\":1714789625398,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2324043115\",\"nickname\":\"æ å\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706688174497,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2328434107\",\"nickname\":\"LL\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713374950447,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2330580373\",\"nickname\":\"Asuka\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711161420051,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2333601327\",\"nickname\":\"six\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700907680276,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2334128456\",\"nickname\":\"this\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716207245020,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2340903303\",\"nickname\":\"suibian\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703656408663,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2347287674\",\"nickname\":\"ning\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699943342943,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2351226722\",\"nickname\":\"Test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712720964840,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2352729542\",\"nickname\":\"hanoch\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715410257064,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2359475267\",\"nickname\":\"å§Ŧč§čž\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2360742959\",\"nickname\":\"huawei\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715051926885,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2361415263\",\"nickname\":\"aixier\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705986193210,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2363107482\",\"nickname\":\"11\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717678904247,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2364621913\",\"nickname\":\"åĨŊæåŋĩéŖäŊ å°ą\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2364621913/storage/emulated/0/Android/data/io.openim.android.demo/cache/1706250314324/1706250309211.jpg\",\"ex\":\"\",\"createTime\":1706250045023,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2365006326\",\"nickname\":\"677970\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715271527000,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2367330798\",\"nickname\":\"å°æžéŧ \",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708930340100,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2372363878\",\"nickname\":\"čč\",\"faceURL\":\"ic_avatar_01\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2373768870\",\"nickname\":\"é\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717136736042,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2373832029\",\"nickname\":\"Jdnzb\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706340939633,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2373957188\",\"nickname\":\"äŧ°čŽĄå°ąæ¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701421085821,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2376970002\",\"nickname\":\"brook\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700398906853,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2379157232\",\"nickname\":\"18620996030\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710062055691,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2380361192\",\"nickname\":\"dada\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715097262622,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2382919335\",\"nickname\":\"č¯ģ䏿\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2384253834\",\"nickname\":\"1212\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2384253834/1706587964062png\",\"ex\":\"\",\"createTime\":1706080713339,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2391060935\",\"nickname\":\"EmoryRoland\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703076775211,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2391250488\",\"nickname\":\"æŦŖčĩ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716891192427,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2397238037\",\"nickname\":\"äšąä¸ļåŋ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710157496152,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2403026614\",\"nickname\":\"westUndefined\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697619242653,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2405162268\",\"nickname\":\"ä¸įŽĄäēįįŽĄäē\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715585878560,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2406359607\",\"nickname\":\"åŧæžå¤Šæļ¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709808001164,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2408460453\",\"nickname\":\"test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711435869524,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2411591216\",\"nickname\":\"å°čą\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718013331604,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2411791668\",\"nickname\":\"å°įēĸ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2413777979\",\"nickname\":\"å¸å¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705388968990,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2418326201\",\"nickname\":\"æ¸
įžŊ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713257411359,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2419735015\",\"nickname\":\"Gon\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707192068758,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2420469244\",\"nickname\":\"mj\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713864110889,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2428356422\",\"nickname\":\"æå¤æčŊŠ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699364311573,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2435076373\",\"nickname\":\"dyn7282\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698653209161,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2441535687\",\"nickname\":\"AdinZ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715146817379,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2445660151\",\"nickname\":\"Zany\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717753830870,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2450037859\",\"nickname\":\"æĸĻį§\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698662234881,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2455695513\",\"nickname\":\"æĩč¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703587235305,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2456610935\",\"nickname\":\"reversefuture\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716748137533,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2459596184\",\"nickname\":\"minghao\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698916534433,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2467222861\",\"nickname\":\"zz\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710814897779,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2467407321\",\"nickname\":\"æčĻįč´§åĸ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711462364845,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2468662977\",\"nickname\":\"aaaa\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712647540124,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2469358242\",\"nickname\":\"åˇŽä¸å¤å
æŖŽ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713943236200,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2481840430\",\"nickname\":\"chenyj\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2481840430/image_cropper_1705902974084.jpg\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":2},{\"userID\":\"2484820129\",\"nickname\":\"silmeweed\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704727021101,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2485271223\",\"nickname\":\"blake\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712911704147,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2485831627\",\"nickname\":\"test2\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713083467801,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2487744132\",\"nickname\":\"tonei\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713251507907,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2491241835\",\"nickname\":\"æąåąą\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716348394857,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2491509322\",\"nickname\":\"jwee\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708186420649,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2494091274\",\"nickname\":\"1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704699839287,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2495044228\",\"nickname\":\"æ§ååŋĩ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708304230523,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2499792755\",\"nickname\":\"ada\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714376900895,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2500499043\",\"nickname\":\"whaoe\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2500499043/static (1).webp\",\"ex\":\"\",\"createTime\":1705644819827,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2501035310\",\"nickname\":\"åŧ į§\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711803796526,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2501392715\",\"nickname\":\"starle\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714976702247,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2509310711\",\"nickname\":\"liiu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2513608056\",\"nickname\":\"hx\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708943209712,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2519991844\",\"nickname\":\"bruce\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709687781498,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2527123914\",\"nickname\":\"test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711444595810,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2529149450\",\"nickname\":\"h\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710831922952,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2541778634\",\"nickname\":\"æä¸æĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715413433266,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2542308726\",\"nickname\":\"lex\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715562493100,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2543136948\",\"nickname\":\"æ¸åŽ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715134818591,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2543151462\",\"nickname\":\"albert\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701959488160,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2544821957\",\"nickname\":\"demo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712137595730,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2545303424\",\"nickname\":\"æĩč¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713252964581,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2546145730\",\"nickname\":\"z10\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2546997095\",\"nickname\":\"liar\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698822633678,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2550644812\",\"nickname\":\"lch\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705289580793,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2552156733\",\"nickname\":\"čå˛äŊį\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706001864555,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2553130763\",\"nickname\":\"uniapp170\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709177391494,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2553226423\",\"nickname\":\"夊夊åä¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709172483708,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2554370645\",\"nickname\":\"åŽåĨŊæļé´å¯šä¸å¯šåé
\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698895189739,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2554419927\",\"nickname\":\"lero\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715738523609,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2554528968\",\"nickname\":\"čŋåģäē\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2554845832\",\"nickname\":\"HiCM\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2554845832/image_cropper_2A05D495-026F-4011-8D37-789963AAA1F3-35639-000009D61371BE21.jpg\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2558214548\",\"nickname\":\"openIMéģčĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707916123564,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2561044054\",\"nickname\":\"kk\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700878772382,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2562159690\",\"nickname\":\"rockbeast\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702701681895,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2563542186\",\"nickname\":\"įĢįįå¤Ēéŗ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716532562185,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2568600958\",\"nickname\":\"ččåĢå°\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702432861494,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2573171514\",\"nickname\":\"Klouse\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2575964991\",\"nickname\":\"į´ĸčŋå
Ž\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709201654880,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2576541524\",\"nickname\":\"yi\",\"faceURL\":\"ic_avatar_04\",\"ex\":\"\",\"createTime\":1703560472823,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2584692046\",\"nickname\":\"蝿Ą\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715913858701,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2585587550\",\"nickname\":\"lucifer\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703301055389,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2591460564\",\"nickname\":\"bruo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2591851186\",\"nickname\":\"įŊ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715600478429,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2591881637\",\"nickname\":\"æĩč¯äēēå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713012798749,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2592855383\",\"nickname\":\"lalala\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708444744902,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2594011902\",\"nickname\":\"wh\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712541550141,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2595508365\",\"nickname\":\"åĸ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710258245201,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2600151896\",\"nickname\":\"æĩč¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703151143100,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2600383208\",\"nickname\":\"kako1212\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712550627788,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2601184652\",\"nickname\":\"įįŦčŋéŖ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709041154020,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2601366798\",\"nickname\":\"frank\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2609646737\",\"nickname\":\"James\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702892579416,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2609720932\",\"nickname\":\"æ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697529316217,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2610489646\",\"nickname\":\"xiaofei\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705026358737,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2613277163\",\"nickname\":\"18897923095\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715653689814,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2613915887\",\"nickname\":\"ukatta\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702619584201,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2617887857\",\"nickname\":\"æĩč¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716890559455,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2626327942\",\"nickname\":\"testyou\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717815014694,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2634464933\",\"nickname\":\"å°įžŊ201\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2634464933/storage/emulated/0/Android/data/io.openim.android.demo/cache/1703042837872/1703042835726.jpg\",\"ex\":\"\",\"createTime\":1702976694366,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2635072834\",\"nickname\":\"vae\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2635072834/a.webp\",\"ex\":\"\",\"createTime\":1711609939201,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2636416179\",\"nickname\":\"æĩč¯2\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715088739934,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2641033059\",\"nickname\":\"į\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717137123401,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2645362757\",\"nickname\":\"bxd\",\"faceURL\":\"ic_avatar_06\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2647432110\",\"nickname\":\"5æ11\",\"faceURL\":\"http://14.29.213.197:50002/object/2647432110/storage/emulated/0/Android/data/io.openim.android.demo/cache/1715428922241/1715428915165.jpg\",\"ex\":\"\",\"createTime\":1715428844945,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2647762028\",\"nickname\":\"åŋ äšäšåŖĢ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715924276477,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2651221124\",\"nickname\":\"čŖæŋį \",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716624883799,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2651592493\",\"nickname\":\"gang\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2654376801\",\"nickname\":\"mmmm\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712110166371,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2657780288\",\"nickname\":\"Mitchell1276\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715428140578,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2658782184\",\"nickname\":\"å°åąą\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701766310540,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2660237167\",\"nickname\":\"č°æą1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715099037046,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2660869153\",\"nickname\":\"lucky lee\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708916226735,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2661098595\",\"nickname\":\"rules\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710141244271,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2663585626\",\"nickname\":\"ccbb\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2663585626/1703472827028_d4ee3e779f25743636cecdea061db1d7.jpg\",\"ex\":\"\",\"createTime\":1703472044343,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2664190009\",\"nickname\":\"æĩč¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700485702192,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2669155458\",\"nickname\":\"Ubersexual\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713793059015,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2669463502\",\"nickname\":\"įŊå°į°\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714443502575,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2669522749\",\"nickname\":\"lz\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715132614142,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2669535307\",\"nickname\":\"\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702021940816,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2669963504\",\"nickname\":\"laser\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2671236825\",\"nickname\":\"0217\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718099687272,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2673947325\",\"nickname\":\"åįˇ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717070674872,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2674288701\",\"nickname\":\"åŋįĸå°įĢ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713432839052,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2677077317\",\"nickname\":\"ččĩĩ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709534199525,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2680367243\",\"nickname\":\" įį\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700462887810,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2680629439\",\"nickname\":\"111\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714380654657,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2682102921\",\"nickname\":\"éŋäŋĄ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716533250826,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2685129670\",\"nickname\":\"äŊ åĨŊå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718016087742,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2693021040\",\"nickname\":\"åå6\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2693021040/image_2023-09-26-41-23.306.png\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2696721836\",\"nickname\":\"Jason\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716424909749,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2699572576\",\"nickname\":\"æą¤įĢįĢ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714363662912,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2700396114\",\"nickname\":\"asdasd\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701748179575,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2703205078\",\"nickname\":\"asajkn\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702517932623,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2704233049\",\"nickname\":\"123iuy\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705371978838,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2709636845\",\"nickname\":\"xxy\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703046481177,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2713785709\",\"nickname\":\"gsdtyz\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706421643630,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2715028883\",\"nickname\":\"ssg\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706664333552,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2716096987\",\"nickname\":\"æ¯
įļ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712044183429,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2722031875\",\"nickname\":\"Away\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2724133050\",\"nickname\":\"11\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701411784344,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2725451243\",\"nickname\":\"OpenIM-Andrew123\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2726215647\",\"nickname\":\"éŖ\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2726215647/storage/emulated/0/Android/data/io.openim.android.demo/cache/1708416470164/1708416447549.png\",\"ex\":\"\",\"createTime\":1708412721984,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2726777258\",\"nickname\":\"å§æ¨æĩŠ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2729128783\",\"nickname\":\"qqq\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699615116870,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2731806832\",\"nickname\":\"įåĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708575127706,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2734901662\",\"nickname\":\"liyongkai\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704949391919,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2738525736\",\"nickname\":\"č¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710074184436,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2740315835\",\"nickname\":\"夊æļ¯æĩĒå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713280924699,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2742063027\",\"nickname\":\"abon\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714894973521,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2754162204\",\"nickname\":\"developer\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711333924597,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2754805926\",\"nickname\":\"sjl13100169932\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716276632521,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2755984629\",\"nickname\":\"æŗŊ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708668050202,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2756605961\",\"nickname\":\"Qiu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709264231608,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2757252842\",\"nickname\":\"chenzp\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711438706235,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2764057746\",\"nickname\":\"ä¸åŗ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717589256619,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2767105920\",\"nickname\":\"æĩč¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705114997627,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2767449688\",\"nickname\":\"åĸåĸ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713857207849,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2768044296\",\"nickname\":\"zhaxun\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709639647892,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2771080861\",\"nickname\":\"henry\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715316686987,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2775808036\",\"nickname\":\"zhou\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712390392902,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2776032332\",\"nickname\":\"cacate\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716961205401,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2776179448\",\"nickname\":\"dai\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701952723506,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2777182895\",\"nickname\":\"æą æŠ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714835007394,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2777392996\",\"nickname\":\"test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706693132085,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2780679609\",\"nickname\":\"debug\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717389882637,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2784365787\",\"nickname\":\"Jackson\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2789477856\",\"nickname\":\"soeasy\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2794126343\",\"nickname\":\"æ¨ä¸å\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2797666974\",\"nickname\":\"æ č¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709106347455,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2798938564\",\"nickname\":\"čåĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702902877718,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2800069016\",\"nickname\":\"taiji\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711720381980,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2800090370\",\"nickname\":\"return0\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713215356448,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2800701915\",\"nickname\":\"tt\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2800889459\",\"nickname\":\"andfly\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2802049271\",\"nickname\":\"frank\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709012291281,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2804438534\",\"nickname\":\"smk\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716190797483,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2809251033\",\"nickname\":\"wk\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715912568683,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2813681002\",\"nickname\":\"zc\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715579948399,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2814204296\",\"nickname\":\"æĩč¯Abcd\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709988820654,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2814797407\",\"nickname\":\"Zzz\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711041555047,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2815363205\",\"nickname\":\"ZHUGG333\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711595725951,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2817294799\",\"nickname\":\"yueyihua1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713339337432,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2819267901\",\"nickname\":\"hdjd\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713604921764,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2820286436\",\"nickname\":\"sola\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700808083414,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2820720133\",\"nickname\":\"blank\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2822906793\",\"nickname\":\"å°é¨čŋ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710841612269,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2826097502\",\"nickname\":\"test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715561370805,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2827017309\",\"nickname\":\"Wyn\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710551321932,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2827279331\",\"nickname\":\"sdw1255\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711604122801,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2831193585\",\"nickname\":\"TOCæĩč¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698633194215,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2831301183\",\"nickname\":\"l\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706536110117,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2832240999\",\"nickname\":\"åå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717757894619,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2838302193\",\"nickname\":\"phper\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712475964802,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2839845469\",\"nickname\":\"OpenIM-Kevln\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2839845469/image_cropper_CEAE004E-C57C-44F9-956D-968BA0CA0E6B-4437-000002C381F846B4.jpg\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2840949175\",\"nickname\":\"Fan\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2844014343\",\"nickname\":\"chentimi\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717637596936,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2844833716\",\"nickname\":\"vic ho\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715412625928,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2849945986\",\"nickname\":\"yomt\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712820281905,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2849985286\",\"nickname\":\"coderon\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718078273398,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2854365488\",\"nickname\":\"åĩåĩ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708240137430,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2854451107\",\"nickname\":\"luobote\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703730974007,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2860578616\",\"nickname\":\"congduan\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2863149679\",\"nickname\":\"čĄčĄ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706493360490,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2864156896\",\"nickname\":\"ian\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714374256326,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2864562820\",\"nickname\":\"Tyy\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713858449569,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2872689322\",\"nickname\":\"tt1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703073953065,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2876405749\",\"nickname\":\"å°čĨæĻ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705128736226,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2876517639\",\"nickname\":\"Hash\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712925462014,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2878187113\",\"nickname\":\"qc\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2878187113/image_cropper_FFE737D9-EC28-44A1-9FBA-2DC72645A146-1867-00000113E9F5DD5C.jpg\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2878889045\",\"nickname\":\"uos\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709275274661,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2879113393\",\"nickname\":\"MCCY\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716473843947,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2879577568\",\"nickname\":\"V_V\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704765118038,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2879740664\",\"nickname\":\"\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698462573414,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2880563506\",\"nickname\":\"biogenius\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715500187049,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2881445108\",\"nickname\":\"\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701746842322,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2882899447\",\"nickname\":\"OpenIM-blooming\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2887838678\",\"nickname\":\"sam\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698810990245,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2888258810\",\"nickname\":\"cb\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718214897377,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2890334421\",\"nickname\":\"yasyx\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706865618722,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2890713225\",\"nickname\":\"chao\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2890713225/image_cropper_1715156142003.jpg\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2893984568\",\"nickname\":\"xjčŋå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717442663757,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2897007768\",\"nickname\":\"Test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715178881852,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2900920572\",\"nickname\":\"tony\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717163257597,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2901569973\",\"nickname\":\"kk\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2901914165\",\"nickname\":\"éåŖčä¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710248061799,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2902603154\",\"nickname\":\"ecoli\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707138744924,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2903763431\",\"nickname\":\"a10201\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711899905827,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2904203350\",\"nickname\":\"æĒčĄ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709787157030,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2905053077\",\"nickname\":\"saber\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698831808589,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2905252350\",\"nickname\":\"alaq\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2905252350/image_cropper_1717143909227.jpg\",\"ex\":\"\",\"createTime\":1717073439832,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2912415463\",\"nickname\":\"éĢč\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698645413940,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2912423192\",\"nickname\":\"į°į°\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717910969234,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2914580370\",\"nickname\":\"dary123\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697521105039,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2921314358\",\"nickname\":\"ryan\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2925505186\",\"nickname\":\"curry\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714193096274,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2926374953\",\"nickname\":\"alex\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2926503784\",\"nickname\":\"åŧ äģŖäŧ\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2926503784/LOGO莞莥å
į´ 2.webp\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2930942211\",\"nickname\":\"č´ēåĄ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2933186791\",\"nickname\":\"a a\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711313059409,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2933595653\",\"nickname\":\"wldtb\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708609532188,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2934198637\",\"nickname\":\"llv\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708245919148,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2938766916\",\"nickname\":\"čŖčļ
\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714907131891,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2940372216\",\"nickname\":\"luckli\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713231678430,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2942822451\",\"nickname\":\"haivo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712898024775,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2945631149\",\"nickname\":\"coder666\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712576166481,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2945766167\",\"nickname\":\"įį\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2951042955\",\"nickname\":\"tianle\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716881192104,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2951333723\",\"nickname\":\"gao\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706866599334,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2956182974\",\"nickname\":\"åĨŊåĨŊ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699416726433,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2956222225\",\"nickname\":\"åŧ ä¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704789563163,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2958242148\",\"nickname\":\"䏿\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715424599390,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2960809325\",\"nickname\":\"sunda\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2961176761\",\"nickname\":\"lei\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716436909862,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2962214402\",\"nickname\":\"bao\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707112776560,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2962834146\",\"nickname\":\"å¤å¤å¤\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705137856403,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2963659057\",\"nickname\":\"jerryding\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709789315853,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2965951542\",\"nickname\":\"zzy\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718247220457,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2966958326\",\"nickname\":\"æč§č
\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708651639845,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2970863091\",\"nickname\":\"Mitsuha\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2970994891\",\"nickname\":\"czx\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705902357712,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2974929762\",\"nickname\":\"asdasd\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710910881393,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2975162313\",\"nickname\":\"Nemo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700189316675,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2975409554\",\"nickname\":\"west\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702532935454,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2975431366\",\"nickname\":\"gk\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698916703564,\"appMangerLevel\":1,\"globalRecvMsgOpt\":2},{\"userID\":\"2975597555\",\"nickname\":\"hhh\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702641984022,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2980893666\",\"nickname\":\"æĩč¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705116121202,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2981246162\",\"nickname\":\"jzw\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710503416147,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2982000585\",\"nickname\":\"1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703325600013,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2984741494\",\"nickname\":\"ces\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2984741494/4baae0ee047915267925f13f87058279.webp\",\"ex\":\"\",\"createTime\":1710405592603,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2987214012\",\"nickname\":\"å¤č¯ģč¯ģ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699957900056,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2991969100\",\"nickname\":\"wjian\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715764518529,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2992114349\",\"nickname\":\"Hi\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699429855474,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"2997093071\",\"nickname\":\"chaoxiaoshu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717580945689,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2997317644\",\"nickname\":\"Kdkdj\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713525963933,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"2998067487\",\"nickname\":\"čå
\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703582366335,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3002397383\",\"nickname\":\"éå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717731058908,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3004935297\",\"nickname\":\"大åĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718066996737,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3004971629\",\"nickname\":\"čĨŋį\",\"faceURL\":\"ic_avatar_05\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3007515052\",\"nickname\":\"vcwen\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713577361837,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3011324233\",\"nickname\":\"posik\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715239917651,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3013893349\",\"nickname\":\"YYRise\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700643891217,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3017062485\",\"nickname\":\"god1286\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717469275282,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3023379234\",\"nickname\":\"čåĨļåĨļ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717035550084,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3023473057\",\"nickname\":\"Jordandu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715393532901,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3023583215\",\"nickname\":\"sejung\\n\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708662106787,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3025087621\",\"nickname\":\"adamice999\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717493062735,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3028489935\",\"nickname\":\"machel\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3029281130\",\"nickname\":\"Ives\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717566690418,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3030995041\",\"nickname\":\"tony\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712651246263,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3037865872\",\"nickname\":\"acpl\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715570893704,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3045192605\",\"nickname\":\"he\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708598530254,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3047161541\",\"nickname\":\"éčĄ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715448966472,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3048025260\",\"nickname\":\"xixi\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711522014294,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3049658867\",\"nickname\":\"a\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708587617508,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3053433727\",\"nickname\":\"Peter\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715326251969,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3057735982\",\"nickname\":\"æ æĒŦ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711934409374,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3064262697\",\"nickname\":\"aaa\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714369637044,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3067600722\",\"nickname\":\"夊ä¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715491895871,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3068103002\",\"nickname\":\"æĩč¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703101753752,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3072683488\",\"nickname\":\"bohr\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716900388613,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3075650257\",\"nickname\":\"admin\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717568657217,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3079018235\",\"nickname\":\"5354\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716868127002,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3083415284\",\"nickname\":\"éææ´\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712804893595,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3086885146\",\"nickname\":\"chris\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703571433576,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3088309970\",\"nickname\":\"12321\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715310708671,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3093774659\",\"nickname\":\"fy\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716951250831,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3094251676\",\"nickname\":\"yela\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706768225894,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3100574492\",\"nickname\":\"stone\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/3100574492/avatar.png\",\"ex\":\"\",\"createTime\":1702548655154,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3100927824\",\"nickname\":\"jcokok \",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715187663067,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3107511955\",\"nickname\":\"å¨åååŊé
\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711097045407,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3107872821\",\"nickname\":\"pipi\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/3107872821/1713088111389jpg\",\"ex\":\"\",\"createTime\":1713087728057,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3110900347\",\"nickname\":\"æ˛Ąæåå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703556828965,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3114125867\",\"nickname\":\"asdasdv222\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712815589143,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3115019608\",\"nickname\":\"æĩč¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709791961206,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3115148556\",\"nickname\":\"éŖčŋæ į\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711961785956,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3117863124\",\"nickname\":\"čį\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699237964437,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3119418753\",\"nickname\":\"hh\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715237855607,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3119660813\",\"nickname\":\"\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700470751212,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3120559487\",\"nickname\":\"sevenger\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698029965496,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3121454753\",\"nickname\":\"čåŧē\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3129026839\",\"nickname\":\"fq\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708320433012,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3132656179\",\"nickname\":\"mx\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715907393145,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3133075625\",\"nickname\":\"shineforce\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708398629485,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3134278325\",\"nickname\":\"JJ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701498275150,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3134537845\",\"nickname\":\"ä¸åĒå°æ¨\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716907544508,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3139569060\",\"nickname\":\"kizai\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712735463480,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3140420968\",\"nickname\":\"winonewin\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700767055369,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3150135159\",\"nickname\":\"b\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707269272111,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3156827214\",\"nickname\":\"Joji\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717119617913,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3162271972\",\"nickname\":\"å´å
į\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703079973668,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3163653728\",\"nickname\":\"vbb\",\"faceURL\":\"ic_avatar_02\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3164446436\",\"nickname\":\"æĩč¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3168796642\",\"nickname\":\"įį°į°\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709019167308,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3173403446\",\"nickname\":\"fsdfwfwef\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708327363265,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3173756579\",\"nickname\":\"jochenshen\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711079861236,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3176223906\",\"nickname\":\"lxp\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713799703769,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3177929240\",\"nickname\":\"liaoyu5222\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716526685325,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3179190302\",\"nickname\":\"why\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716189271524,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3189972504\",\"nickname\":\"joey\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709863303888,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3190912448\",\"nickname\":\"æ æĒŦæ°´\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3192054345\",\"nickname\":\"cjs\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718263890332,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3192218781\",\"nickname\":\"ty\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/3192218781/data/user/0/cn.rentsoft.flutter.openim.consumer/cache/image_cropper_1712828738840.jpg\",\"ex\":\"\",\"createTime\":1704588174235,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3192583468\",\"nickname\":\"elone\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708999719457,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3193592046\",\"nickname\":\"å°æĒ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708401616452,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3196192331\",\"nickname\":\"ä¸įšæåĻ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710741213138,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3196958921\",\"nickname\":\"tim\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716959631295,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3197083869\",\"nickname\":\"sdf\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714050472681,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3199458860\",\"nickname\":\"clippp\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711696583248,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3199820791\",\"nickname\":\"įčŗ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715601250818,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3200133119\",\"nickname\":\"å°įŗå¤´\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702978455275,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3200607575\",\"nickname\":\"卿°äŧĻ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712712282833,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3200726264\",\"nickname\":\"lengyq\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709613402909,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3204690068\",\"nickname\":\"įŊæĄ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706593759261,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3204832902\",\"nickname\":\"qee\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714747869125,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3205080439\",\"nickname\":\"steven\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713690807657,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3206443553\",\"nickname\":\"čļŖåŗ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717292183227,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3206742093\",\"nickname\":\"æ´čĩ°į大įŠįŠ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715136369797,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3214502593\",\"nickname\":\"vic\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3217427070\",\"nickname\":\"spark\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716388685884,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3217545671\",\"nickname\":\"Alex\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/3217545671/1710919079255jpg\",\"ex\":\"\",\"createTime\":1710918742363,\"appMangerLevel\":0,\"globalRecvMsgOpt\":2},{\"userID\":\"3218274782\",\"nickname\":\"åŠ´įąŗäš\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3220549850\",\"nickname\":\"xgxfhh\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704768011224,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3221190872\",\"nickname\":\"jjj\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708962786705,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3221229320\",\"nickname\":\"æēč´ĸ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709178515817,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3224221765\",\"nickname\":\"123\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705567408304,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3224719808\",\"nickname\":\"hankli\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707480562812,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3227148059\",\"nickname\":\"jenkins\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707024243650,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3229531095\",\"nickname\":\"HH\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3233270846\",\"nickname\":\"hhh\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708587722891,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3235316541\",\"nickname\":\"vv\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710466267909,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3235668582\",\"nickname\":\"nicheng\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698826203934,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3237793462\",\"nickname\":\"qqwe\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712820652733,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3238659031\",\"nickname\":\"fm\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712725434099,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3238674643\",\"nickname\":\"æĩč¯\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/3238674643/垎äŋĄåžį_20231008160456.webp\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3240646453\",\"nickname\":\"æ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711719347469,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3241132141\",\"nickname\":\"cloudRabbit\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/3241132141/1699171052075_20231104_191313.jpg\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3249909086\",\"nickname\":\"paul\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713936177826,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3249918280\",\"nickname\":\"xiaoxiao\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715175189583,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3249933654\",\"nickname\":\"zhouchao\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712799388160,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3250005519\",\"nickname\":\"motoheaven\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713167736787,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3250579894\",\"nickname\":\"kjh\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700546402762,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3251649871\",\"nickname\":\"pro\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715430290592,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3261157334\",\"nickname\":\"åĩåĩ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705718496317,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3261456614\",\"nickname\":\"wulalala\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713330856552,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3263416246\",\"nickname\":\"æĩč¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699074710485,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3268693150\",\"nickname\":\"åēˇå
į\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708737377617,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3269425301\",\"nickname\":\"čŦčŦį˛\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711163908010,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3270681057\",\"nickname\":\"GoFive\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710486538459,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3276126003\",\"nickname\":\"chatJin\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706845751664,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3277113648\",\"nickname\":\"äŋĄåŋĩ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717213789944,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3277330401\",\"nickname\":\"éå
į\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714363479269,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3277768810\",\"nickname\":\"ice\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704733652508,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3279927933\",\"nickname\":\"demo-wei\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/3279927933/1000.webp\",\"ex\":\"\",\"createTime\":1717654952312,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3284080283\",\"nickname\":\"DF admin\",\"faceURL\":\"ic_avatar_03\",\"ex\":\"\",\"createTime\":1708567054700,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3285780245\",\"nickname\":\"å°äē\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714050314298,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3286756773\",\"nickname\":\"Canaan\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3290255065\",\"nickname\":\"åŋč莺\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717660578780,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3295857972\",\"nickname\":\"bruce\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711522943529,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3297069764\",\"nickname\":\"mengze\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710676238778,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3300998316\",\"nickname\":\"įģå°\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715433228698,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3305731505\",\"nickname\":\"123\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697706335637,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3307929768\",\"nickname\":\"xkn\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700450935548,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3308461087\",\"nickname\":\"snihc\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709614712886,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3309832576\",\"nickname\":\"åå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706230992303,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3311609122\",\"nickname\":\"hehei\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716880912203,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3312811998\",\"nickname\":\"į\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716378729493,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3320730621\",\"nickname\":\"æéģį ´åį\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715755673834,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3322768391\",\"nickname\":\"æŽįŊįąŗäŋŽæ¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707204015968,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3324817195\",\"nickname\":\"jclio\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718101138473,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3325246129\",\"nickname\":\"sutter\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3325428510\",\"nickname\":\"ss\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698473765660,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3327563110\",\"nickname\":\"lison\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3328438853\",\"nickname\":\"äēį̝\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712891103213,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3330044431\",\"nickname\":\"faker\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712576809259,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3332502663\",\"nickname\":\"\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699416495068,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3335253060\",\"nickname\":\"helloword\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716633504391,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3335272940\",\"nickname\":\"look\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711357292312,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3336527674\",\"nickname\":\"čč\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716926634618,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3340382285\",\"nickname\":\"GavinMeng\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718092482462,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3340940320\",\"nickname\":\"æ˛ŗåįŦŦä¸å¤§å´\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716533152313,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3348455039\",\"nickname\":\"æąææž\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700187293971,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3349762211\",\"nickname\":\"lp0124\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3351106700\",\"nickname\":\"lf2024\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711952187436,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3351467437\",\"nickname\":\"fwd\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/3351467437/20110814_171228260_iOS.jpg\",\"ex\":\"\",\"createTime\":1714473610568,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3352768401\",\"nickname\":\"å°æ°´äšæē\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706179228267,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3355860649\",\"nickname\":\"SanMse\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/3355860649/image_cropper_1706693035480.jpg\",\"ex\":\"\",\"createTime\":1706690522299,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3356152522\",\"nickname\":\"PPJ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716273652104,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3357676251\",\"nickname\":\"åŋéļ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710772612627,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3360234875\",\"nickname\":\"mind\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711031539185,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3361047963\",\"nickname\":\"æŦ§åˇ´\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3362215269\",\"nickname\":\"æĩč¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700711811711,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3367952952\",\"nickname\":\"įį\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715095660935,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3370281252\",\"nickname\":\"ccni\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700185480289,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3372906588\",\"nickname\":\"long\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700824802518,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3378171880\",\"nickname\":\"ben\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712651344317,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3380521639\",\"nickname\":\"ååå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708501429641,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3384044960\",\"nickname\":\"qqq\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713236385116,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3384056544\",\"nickname\":\"gdse\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699290879998,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3384401195\",\"nickname\":\"flywe\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699341273989,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3387336082\",\"nickname\":\"yleung\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705290411035,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3390583172\",\"nickname\":\"zx\",\"faceURL\":\"ic_avatar_01\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3394129159\",\"nickname\":\"æ¯æå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711211812788,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3396066359\",\"nickname\":\"mr.zhu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714821835401,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3396711993\",\"nickname\":\"mm\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700549383285,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3397676820\",\"nickname\":\"sababab\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713110274531,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3401196714\",\"nickname\":\"go-zero\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699433062099,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3402038544\",\"nickname\":\"æžčč
\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/3402038544/logo.webp\",\"ex\":\"\",\"createTime\":1709976389092,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3405014751\",\"nickname\":\"å
´\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708304658170,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3405537375\",\"nickname\":\"DFF\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710730210647,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3408547602\",\"nickname\":\"pe123\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708939757167,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3413094703\",\"nickname\":\"sleep\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697706562542,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3414693763\",\"nickname\":\"莝莝é\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3417649963\",\"nickname\":\"ziyuye\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711510105614,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3418101290\",\"nickname\":\"lpltest\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706079050573,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3418577436\",\"nickname\":\"OpenIM-skiffer\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/3418577436/BD14C2C1956AB2E1BD8A9F33E76220BE (1).jpg\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3420613648\",\"nickname\":\"test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710484064406,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3423009410\",\"nickname\":\"yu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706694591115,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3424164248\",\"nickname\":\"yibao\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699696895477,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3424790937\",\"nickname\":\"ææ¨å\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700615417930,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3424924792\",\"nickname\":\"liuzh\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702425585970,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3427883907\",\"nickname\":\"aiden\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712539534202,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3430278208\",\"nickname\":\"ls263\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702435669993,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3435189401\",\"nickname\":\"magic32\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700298079996,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3435706047\",\"nickname\":\"大į˛Ŋå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716347106740,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3441335163\",\"nickname\":\"éŋéå¤\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710143080286,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3442471610\",\"nickname\":\"1231\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714120620359,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3444204020\",\"nickname\":\"įå¸
\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700185051181,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3447932943\",\"nickname\":\"chuxia\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709523252781,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3451045692\",\"nickname\":\"pmanent\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715474431294,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3452044353\",\"nickname\":\"jx\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711448626701,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3454057246\",\"nickname\":\"įĢį\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698753352740,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3456754627\",\"nickname\":\"bandong\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3463065880\",\"nickname\":\"åĨļéž\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710216438021,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3463544352\",\"nickname\":\"įŊææ\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/3463544352/01b6815a953d1da8012045b3572417.png@1280w_1l_2o_100sh.webp\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3469803158\",\"nickname\":\"mortal\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713091978582,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3470375736\",\"nickname\":\"BIN\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709000718037,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3470728766\",\"nickname\":\"åļ1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715425294660,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3471363726\",\"nickname\":\"大ä¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703504319821,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3473799316\",\"nickname\":\"įģåŽļ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715622078874,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3476401940\",\"nickname\":\"WangZhar\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700143871740,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3479250495\",\"nickname\":\"sickfox\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701654095801,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3482885129\",\"nickname\":\"Timo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3483519033\",\"nickname\":\"tiger\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708668769785,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3485197519\",\"nickname\":\"999\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709627336016,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3485222434\",\"nickname\":\"įåŊåŠ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711354162362,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3487505389\",\"nickname\":\"test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718268978799,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3488662042\",\"nickname\":\"åä¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714113918245,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3489712763\",\"nickname\":\"Arvin\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717385352091,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3489831359\",\"nickname\":\"testOpenIM\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700214321301,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3489929329\",\"nickname\":\"lihan\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708655955583,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3493014269\",\"nickname\":\"æ čŊ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706183319846,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3495022341\",\"nickname\":\"åžäēééŖ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706085332016,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3502864403\",\"nickname\":\"pa\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706678055574,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3509756342\",\"nickname\":\"huxing\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/3509756342/storage/emulated/0/Android/data/io.openim.android.demo/cache/1711418855686/1711418853287.png\",\"ex\":\"\",\"createTime\":1710999694088,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3512321008\",\"nickname\":\"555\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706601961430,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3517778099\",\"nickname\":\"11\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706783671507,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3521826845\",\"nickname\":\"čåŧ \",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717817472509,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3522449211\",\"nickname\":\"miku\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710808642638,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3525517047\",\"nickname\":\"åĩåĩ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697529368792,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3526379994\",\"nickname\":\"JZ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702372971771,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3528275239\",\"nickname\":\"llvcm\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708322035266,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3529802775\",\"nickname\":\"zdx\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711080188836,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3530383327\",\"nickname\":\"6234\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3530810171\",\"nickname\":\"you\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698407047684,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3532135718\",\"nickname\":\"limbus\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715423110410,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3534795134\",\"nickname\":\"Kevin9527\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699258702943,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3534802796\",\"nickname\":\"å°éŦŧ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699930260639,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3537220722\",\"nickname\":\"www_chat_01\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697598000299,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3538940238\",\"nickname\":\"1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698410497842,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3541443626\",\"nickname\":\"饞æģ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700478845607,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3542101940\",\"nickname\":\"lucaslx\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712048337630,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3546255283\",\"nickname\":\"yhuaqiang\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3547273883\",\"nickname\":\"æä¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698991053845,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3547752374\",\"nickname\":\"you\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711328913572,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3550065953\",\"nickname\":\"kã\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705302466298,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3551589140\",\"nickname\":\"åäŧ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3554401652\",\"nickname\":\"c\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705567884506,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3555750545\",\"nickname\":\"ccm\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3560303364\",\"nickname\":\"å°åĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714632334247,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3561370203\",\"nickname\":\"zmg\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704770134800,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3564564648\",\"nickname\":\"test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709719108059,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3565888306\",\"nickname\":\"åååžéŋæļé´äēå§īŧå¯đææč¯æ\",\"faceURL\":\"/storage/emulated/0/Pictures/1701677914085.jpg\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3567031924\",\"nickname\":\"æˇĄæˇĄ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3570607148\",\"nickname\":\"å°ąæ¯čŽĄįŽæē\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716190832891,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3570742368\",\"nickname\":\"æĩč¯å¤§į\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708321624914,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3571074829\",\"nickname\":\"æļå
\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703240352184,\"appMangerLevel\":0,\"globalRecvMsgOpt\":2},{\"userID\":\"3571143305\",\"nickname\":\"1111\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709102180205,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3573077275\",\"nickname\":\"大äŊŦ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698631803423,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3574516380\",\"nickname\":\"\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/3574516380/storage/emulated/0/Android/data/io.openim.android.demo/cache/1704130906024/1704130904921.jpg\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3578633137\",\"nickname\":\"Mm\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717477897550,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3580853228\",\"nickname\":\"hashaha\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699339523274,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3583713307\",\"nickname\":\"Lege\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712977253419,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3583831504\",\"nickname\":\"qinglin\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703669141248,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3583855819\",\"nickname\":\"čŋåŋ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705934050182,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3586015547\",\"nickname\":\"leo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717809828549,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3591643599\",\"nickname\":\"äšé¸Ļ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708229998737,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3593797495\",\"nickname\":\"test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712560166859,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3595322825\",\"nickname\":\"å¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717206976921,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3598806139\",\"nickname\":\"ææ¯č°\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710829664104,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3599088167\",\"nickname\":\"tom\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716620599973,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3602243749\",\"nickname\":\"å°čĄ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718099674929,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3602775150\",\"nickname\":\"xbm\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717574803952,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3602955381\",\"nickname\":\"Robert\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705926524079,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3603216444\",\"nickname\":\"biubiuįĻåŠ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715433228298,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3603394766\",\"nickname\":\"Kssion\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3605112122\",\"nickname\":\"wuya\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/3605112122/at.png\",\"ex\":\"\",\"createTime\":1714980531550,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3605477209\",\"nickname\":\"čžžå¸æē\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715399018024,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3605639507\",\"nickname\":\"plogp\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714918561314,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3611690609\",\"nickname\":\"Jimmy\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718161512910,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3611757660\",\"nickname\":\"132\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716644292634,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3613869101\",\"nickname\":\"åĨšåĨšåĨš\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716176208057,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3613993751\",\"nickname\":\"fengzhiguo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713234757696,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3617325444\",\"nickname\":\"1111\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/3617325444/åąåšæĒåž 2024-04-23 095745.webp\",\"ex\":\"\",\"createTime\":1716442864394,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3625321133\",\"nickname\":\"Kite\",\"faceURL\":\"ic_avatar_05\",\"ex\":\"\",\"createTime\":1705628245614,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3625514157\",\"nickname\":\"Vį\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715423460492,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3628521511\",\"nickname\":\"ffff\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706688783854,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3633193427\",\"nickname\":\"leo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713096182873,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3635232898\",\"nickname\":\"123456\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698651478069,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3637960024\",\"nickname\":\"éĸį§\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698646661731,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3641418034\",\"nickname\":\"éé
\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715425345024,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3643765049\",\"nickname\":\"ztest\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708066115211,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3645011153\",\"nickname\":\"čč\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705973783330,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3650402223\",\"nickname\":\"ian001\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708914476518,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3654269967\",\"nickname\":\"čĢéæąå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700550245411,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3655173277\",\"nickname\":\"kkkkk\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707380830610,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3656425275\",\"nickname\":\"å°æą\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711940871658,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3656507690\",\"nickname\":\"tiger\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3656865963\",\"nickname\":\"zsig\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717209108391,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3668055835\",\"nickname\":\"Hansen\",\"faceURL\":\"ic_avatar_06\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3668313451\",\"nickname\":\"å´æ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698833416046,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3679618679\",\"nickname\":\"smile\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705021182890,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3681367317\",\"nickname\":\"čį\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715320904598,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3682601398\",\"nickname\":\"xiaoka\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717578880963,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3685670989\",\"nickname\":\"sf\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712585783822,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3688737567\",\"nickname\":\"adam\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709171657625,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3689984008\",\"nickname\":\"å¨\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697595703049,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3693010460\",\"nickname\":\"huyujie0115\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3693972131\",\"nickname\":\"mmmm\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708953014289,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3697152375\",\"nickname\":\"æé\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706602002916,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3697628542\",\"nickname\":\"111\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713864531551,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3701246521\",\"nickname\":\"cb\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709616197291,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3707971244\",\"nickname\":\"čĄåĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710359083080,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3708535808\",\"nickname\":\"117503445\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711353461893,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3709292948\",\"nickname\":\"å¨å¨\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709131736335,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3710967864\",\"nickname\":\"Shiny\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700729354875,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3719131896\",\"nickname\":\"lydia1883\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708604510362,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3720515485\",\"nickname\":\"æĩč¯001\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716134542697,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3724651470\",\"nickname\":\"æĩč¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717552607359,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3727425498\",\"nickname\":\"yz\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709604686265,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3732248827\",\"nickname\":\"wqy2\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718104244389,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3737685096\",\"nickname\":\"éä¸å¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714296470783,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3739320072\",\"nickname\":\"t\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713780495608,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3739899757\",\"nickname\":\"jack\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702104002476,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3739934262\",\"nickname\":\"zsq\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705901872436,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3741079018\",\"nickname\":\"demo01\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715136463183,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3748470665\",\"nickname\":\"åŽļåä¸å
´\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709715706274,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3750772349\",\"nickname\":\"Kr\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707112568719,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3750980145\",\"nickname\":\"æĨæĨæĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706694361800,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3751457430\",\"nickname\":\"ååå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704640746140,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3755727328\",\"nickname\":\"įæŽ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714031202301,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3765484234\",\"nickname\":\"4234\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/3765484234/1713782495110.webp\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3766915245\",\"nickname\":\"æåŊą\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715425165757,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3767972548\",\"nickname\":\"1_haha\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716867102563,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3768320302\",\"nickname\":\"Eric\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713186749623,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3777699354\",\"nickname\":\"åŧčŊ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714320314020,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3778574807\",\"nickname\":\"忝åĻæįŽį\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717583790850,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3781524005\",\"nickname\":\"åå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702628379839,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3782300709\",\"nickname\":\"čĨŋč\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700117022988,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3786464348\",\"nickname\":\"lee\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710727372137,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3787170103\",\"nickname\":\"æ¨\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3787639127\",\"nickname\":\"shumb\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706376133390,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3788067433\",\"nickname\":\"q\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3789077505\",\"nickname\":\"sakanal\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703065066071,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3789393466\",\"nickname\":\"ååæĩæĩ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707373241618,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3789622986\",\"nickname\":\"éĸå¤\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706942867355,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3790708319\",\"nickname\":\"echotj\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709882219988,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3791452062\",\"nickname\":\"wk\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714664534252,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3796678904\",\"nickname\":\"Mjun\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/3796678904/1712470602578_1712409388652.jpg\",\"ex\":\"\",\"createTime\":1712470038890,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3799378960\",\"nickname\":\"cgw\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709189123730,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3800330261\",\"nickname\":\"Karven\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709521672750,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3800799958\",\"nickname\":\"lili\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711457552583,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3801184840\",\"nickname\":\"å°äē\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714045670814,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3801465816\",\"nickname\":\"l\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714016362232,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3802153805\",\"nickname\":\"123\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714073630807,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3803355027\",\"nickname\":\"flynn\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717054882557,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3803994837\",\"nickname\":\"Hunter\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712735605423,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3804444798\",\"nickname\":\"Mlk\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713859017635,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3805642017\",\"nickname\":\"kevin-01\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711959355724,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3812987647\",\"nickname\":\"halo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712031285804,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3824382983\",\"nickname\":\"éŖIos\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/3824382983/image_2024-05-08-32-46.437.png\",\"ex\":\"\",\"createTime\":1713769993026,\"appMangerLevel\":0,\"globalRecvMsgOpt\":2},{\"userID\":\"3826712907\",\"nickname\":\"grand\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705824410448,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3832386746\",\"nickname\":\"tao\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715752467272,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3834703974\",\"nickname\":\"l1062\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712563789909,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3834757485\",\"nickname\":\"xs\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705901817455,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3838004574\",\"nickname\":\"Jie\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3839699134\",\"nickname\":\"éŋč¨åžˇ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709621576526,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3840194843\",\"nickname\":\"čå
\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713097435107,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3843602112\",\"nickname\":\"2\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3844179588\",\"nickname\":\"å¸
\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715652762921,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3844296459\",\"nickname\":\"ufo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699257337801,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3845663923\",\"nickname\":\"zxh\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710759300172,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3847693332\",\"nickname\":\"ibinz\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700027938291,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3849018031\",\"nickname\":\"ternary73\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3851012114\",\"nickname\":\"æ čĢ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697789140614,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3851727632\",\"nickname\":\"hello\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717407399290,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3853166116\",\"nickname\":\"UI105\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713519224892,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3855555410\",\"nickname\":\"qcg\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715762634431,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3859980461\",\"nickname\":\"åčĢįŦ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3860769487\",\"nickname\":\"David\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700816433104,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3862147424\",\"nickname\":\"éģå
į\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704781273031,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3862854837\",\"nickname\":\"shanjuke\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717483887751,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3868811660\",\"nickname\":\"å°įŊ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717038016969,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3869241646\",\"nickname\":\"Uuuj\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714027366152,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3870370757\",\"nickname\":\"liu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711610528494,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3872108589\",\"nickname\":\"robin\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702626090447,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3872601320\",\"nickname\":\"Ronald\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715570797016,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3879871786\",\"nickname\":\"æĩį§°\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3882316983\",\"nickname\":\"åä¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703132401131,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3894253605\",\"nickname\":\"ååŋæĩŽæĸĻ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700766486837,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3895447084\",\"nickname\":\"į大å\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705849851409,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3897778874\",\"nickname\":\"K\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709882193573,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3899444240\",\"nickname\":\"black111\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711430978842,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3902232278\",\"nickname\":\"wei\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718245587295,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3910602054\",\"nickname\":\"åĢįžč\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715849587874,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3912740754\",\"nickname\":\"äģ夊\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3913129073\",\"nickname\":\"1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716254045527,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3919312406\",\"nickname\":\"alone\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3922682136\",\"nickname\":\"éŖ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700011084201,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3923864156\",\"nickname\":\"å¤§åŖŽ\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/3923864156/头å2.webp\",\"ex\":\"\",\"createTime\":1716446506125,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3926463720\",\"nickname\":\"nildebug\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703658349835,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3927572489\",\"nickname\":\"testyang\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703124237810,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3928216074\",\"nickname\":\"Coke\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717635198858,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3931186398\",\"nickname\":\"aaa\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711636852755,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3932374393\",\"nickname\":\"Lucky\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717646325152,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3932990255\",\"nickname\":\"äšäšäš\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715079448614,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3935071086\",\"nickname\":\"ss\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710157884805,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3936773930\",\"nickname\":\"ã\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701511571632,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3937424438\",\"nickname\":\"willxm\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713934575416,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3939590154\",\"nickname\":\"įéĄŋ8\",\"faceURL\":\"ic_avatar_06\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3939999665\",\"nickname\":\"mary\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3940445356\",\"nickname\":\"čŋæ¯181\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716284911460,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3947763668\",\"nickname\":\"tk\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705250293115,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3950757937\",\"nickname\":\"zhangzt\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716115616864,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3951978865\",\"nickname\":\"wangshuang\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/3951978865/1706079474017_u=3182669744,3015526205\\u0026fm=253\\u0026fmt=auto\\u0026app=138\\u0026f=JPEG.jpg\",\"ex\":\"\",\"createTime\":1706078648380,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3954641888\",\"nickname\":\"sktqaq11\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715705458641,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3958284610\",\"nickname\":\"memo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706440598434,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3960310198\",\"nickname\":\"大æŧ å¤į\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708915422548,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3962502361\",\"nickname\":\"qiyu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701498462331,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3962961610\",\"nickname\":\"minggow\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707286660522,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3963709279\",\"nickname\":\"laijingwu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702907718432,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3963875243\",\"nickname\":\"å¨18\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703741766401,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3965483986\",\"nickname\":\"chirisCao\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712071455203,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3965647724\",\"nickname\":\"į´æč´´æĄ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3971926306\",\"nickname\":\"qwer\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3971967127\",\"nickname\":\"hahh\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716342178458,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3973845314\",\"nickname\":\"æģ´æģ´æģ´\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710227323100,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3974823781\",\"nickname\":\"Hello\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699863780127,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3974913605\",\"nickname\":\"čį\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716446904535,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3982399444\",\"nickname\":\"Chandler\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713619124960,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3984192272\",\"nickname\":\"yushuiying\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700037553970,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3985353822\",\"nickname\":\"Terry\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3985432997\",\"nickname\":\"vince\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699090988563,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3987941559\",\"nickname\":\"k\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699635077942,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3989782521\",\"nickname\":\"zjmantou\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699028131781,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3991660838\",\"nickname\":\"ææåŽŊ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698895356148,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3992722755\",\"nickname\":\"hhh\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717139960934,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3993861435\",\"nickname\":\"åčą\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702820278803,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3994384158\",\"nickname\":\"Bingou\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713856333222,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3995365114\",\"nickname\":\"鏺鏝\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715427643022,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"3995872443\",\"nickname\":\"shenalong\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698629941152,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"3999001279\",\"nickname\":\"tt\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708678773665,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4000650991\",\"nickname\":\"jia\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716453444185,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4001754506\",\"nickname\":\"yunduoduo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717140576873,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4002821549\",\"nickname\":\"å¨įēŋIMæĩč¯éĒč¯č´Ļåˇ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699156083128,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4008031414\",\"nickname\":\"VincentXu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704787519703,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4009086415\",\"nickname\":\"äŊ åĨŊ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702633276202,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4010963995\",\"nickname\":\"åå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706533380466,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4012541644\",\"nickname\":\"å°åŋ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715934674102,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4013309319\",\"nickname\":\"many\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4013309319/image_cropper_1716990715928.jpg\",\"ex\":\"\",\"createTime\":1716958897844,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4015475256\",\"nickname\":\"haoran127\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4019194868\",\"nickname\":\"qqqq\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4019430612\",\"nickname\":\"į°į°äģåŋå¯å¨į\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708517794035,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4023329658\",\"nickname\":\"大å
ĩ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700387097355,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4023669015\",\"nickname\":\"90åčžžäēē\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4024116306\",\"nickname\":\"conghuhu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701866271239,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4026813737\",\"nickname\":\"Gloomy\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4026813737/storage/emulated/0/Android/data/io.openim.android.demo/cache/1709745294065/1709745289378.jpg\",\"ex\":\"\",\"createTime\":1709687155435,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4026917269\",\"nickname\":\"cloud\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713420382645,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4031972755\",\"nickname\":\"louise\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4031972755/image_cropper_1700622477448.jpg\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4039256136\",\"nickname\":\"䏿åž\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712831806266,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4049223183\",\"nickname\":\"yuriko\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708504183974,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4049340883\",\"nickname\":\"æĩč¯īŧ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705582983854,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4049517000\",\"nickname\":\"Leldld\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4053284890\",\"nickname\":\"2682\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715578248126,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4055940070\",\"nickname\":\"start_test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710852144701,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4057171904\",\"nickname\":\"CMD\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703512109490,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4064402118\",\"nickname\":\"ä¸å椰æąå°ąæ¯AI\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706692865286,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4067008127\",\"nickname\":\"aa\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706753525985,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4070197417\",\"nickname\":\"åĩåĩå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697554722905,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4072022438\",\"nickname\":\"test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718077266471,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4079084055\",\"nickname\":\"æĩč¯č´Ļåˇ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711446263515,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4080264659\",\"nickname\":\"é1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716532422175,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4080738041\",\"nickname\":\"goweii\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705887934979,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4082103573\",\"nickname\":\"june\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698043487456,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4085376424\",\"nickname\":\"aaa\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716685543471,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4087789327\",\"nickname\":\"q\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711211458681,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4091428240\",\"nickname\":\"ååĄ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712065146681,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4091541801\",\"nickname\":\"éŖå č忝\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702439830889,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4093701989\",\"nickname\":\"aaa\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4094740281\",\"nickname\":\"į§ä¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713944039080,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4095191329\",\"nickname\":\"lele\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706086236897,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4096170064\",\"nickname\":\"bm1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699257966245,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4102041542\",\"nickname\":\"čĩĩäēéŖ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716878172325,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4105734635\",\"nickname\":\"neil\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716963305204,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4107410993\",\"nickname\":\"夊ä¸č´æå¤čŗ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715424839071,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4111442760\",\"nickname\":\"čĩæ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709017501738,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4113687442\",\"nickname\":\"guodz123456\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715417397509,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4113735582\",\"nickname\":\"dupi\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706492669020,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4114891625\",\"nickname\":\"å§ä¸ä¸°\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":2},{\"userID\":\"4116383143\",\"nickname\":\"æä¸13\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4117212022\",\"nickname\":\"wqy\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715155915196,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4118659143\",\"nickname\":\"äŧéš
ååž\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4119796562\",\"nickname\":\"dota\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710402037263,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4121091576\",\"nickname\":\"ll\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713866783180,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4121196365\",\"nickname\":\"éŠįąæ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715312261265,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4122315779\",\"nickname\":\"Xavier\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706900509329,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4122387753\",\"nickname\":\"openread\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702177482210,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4124281952\",\"nickname\":\"{}\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709758760538,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4124733788\",\"nickname\":\"--w--\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711022682396,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4127687270\",\"nickname\":\"Demo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715939748732,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4130100082\",\"nickname\":\"kasia\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698631129568,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4134217728\",\"nickname\":\"meme\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717569844741,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4143953359\",\"nickname\":\"å°æēĒ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705299489025,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4152679278\",\"nickname\":\"æĒåæĒ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704698190287,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4155714037\",\"nickname\":\"å°čˇéåžˇäŊŗ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697979076581,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4164499789\",\"nickname\":\"äŊåĸ¨\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717159755870,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4164663659\",\"nickname\":\"äŊįįæĸĻ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704829790406,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4167776677\",\"nickname\":\"jacken\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710403964168,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4169162891\",\"nickname\":\"hubert\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697763239796,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4176532281\",\"nickname\":\"æ´åģå°č\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703492200928,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4178861776\",\"nickname\":\"åšŋåˇéŋä¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713890221658,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4180249221\",\"nickname\":\"čąå\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4180249221/1711207911976jpg\",\"ex\":\"\",\"createTime\":1711207606399,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4189886690\",\"nickname\":\"kmmt\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706886615157,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4189972689\",\"nickname\":\"zz\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4193526288\",\"nickname\":\"å°åŽ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715170161354,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4195435042\",\"nickname\":\"åŊįģ´č\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709609212331,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4196155498\",\"nickname\":\"æĩč¯åˇ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712566118951,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4198077672\",\"nickname\":\"alan\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708484007687,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4201975122\",\"nickname\":\"大į\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702380740928,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4202803190\",\"nickname\":\"\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698216458628,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4203267238\",\"nickname\":\"jnne\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4204000340\",\"nickname\":\"čĩčĩ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711437118835,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4204574965\",\"nickname\":\"Ham\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705156563309,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4209534099\",\"nickname\":\"hongyang\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710742669598,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4212105657\",\"nickname\":\"aaa123\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703679472196,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4215789737\",\"nickname\":\"dd\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698914862246,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4216253974\",\"nickname\":\"ä¸åĒįąŗéĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703039294041,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4216644062\",\"nickname\":\"58086955\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713455515695,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4216757974\",\"nickname\":\"åå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712634898586,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4220093768\",\"nickname\":\"kk\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705902077171,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4221167475\",\"nickname\":\"smith\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":2},{\"userID\":\"4221194205\",\"nickname\":\"åŧ čå¸č¯´į\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711351211957,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4221983701\",\"nickname\":\"éåéž\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4222334962\",\"nickname\":\"Grit\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710381621538,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4223720127\",\"nickname\":\"gj\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4226213321\",\"nickname\":\"HappyNewYear\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716283281049,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4226237813\",\"nickname\":\"äŊ \",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717149698003,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4230648979\",\"nickname\":\"åĢæäšäšäšå¯äģĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701854750042,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4231104423\",\"nickname\":\"åąéŠåŋčŋ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707099312911,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4233310059\",\"nickname\":\"1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705890370374,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4233425493\",\"nickname\":\"Edward\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707104734573,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4235698714\",\"nickname\":\"666\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711028046814,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4240278083\",\"nickname\":\"hello\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708832395477,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4242533018\",\"nickname\":\"yu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712510505298,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4246570603\",\"nickname\":\"čŋææŦ§å°ŧ_\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4247095598\",\"nickname\":\"ä¸åæščæŋ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706160087654,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4247377924\",\"nickname\":\"mikenchen\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712452716884,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4252484758\",\"nickname\":\"æĩč¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705905583704,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4253127832\",\"nickname\":\"\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697635944439,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4254681784\",\"nickname\":\"To-T\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704854563055,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4257335322\",\"nickname\":\"įģæĩ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705121851009,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4258660302\",\"nickname\":\"éŽå°\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703052466172,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4259132146\",\"nickname\":\"test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714573005084,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4264539425\",\"nickname\":\"abcd\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714442387823,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4265720132\",\"nickname\":\"å°åˇ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700107474363,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4266615651\",\"nickname\":\"sjf180\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714472238892,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4275733340\",\"nickname\":\"Jack031\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709112834884,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4284653704\",\"nickname\":\"Z\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713445119441,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4286070689\",\"nickname\":\"tarrin\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700201580983,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4289978919\",\"nickname\":\"seefly\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708947990090,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4293322269\",\"nickname\":\"wahaha\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4293913125\",\"nickname\":\"robin\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4293913125/private/var/mobile/Containers/Data/Application/1BCB0F32-96B0-439C-AC59-89344673CEA7/tmp/image_cropper_73709AAE-C97C-475F-96B3-C1AC6A291781-1488-000000F061B7253F.jpg\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4297395201\",\"nickname\":\"éļ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715407797069,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4300349125\",\"nickname\":\"åŧæŦĄå
\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4300349125/image_cropper_1709243082691.jpg\",\"ex\":\"\",\"createTime\":1708140853972,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4300789253\",\"nickname\":\"æå°éĻ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700186720464,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4302380765\",\"nickname\":\"æį쿏¸æŗŗįéąŧ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705056113932,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4306527503\",\"nickname\":\"keyring1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711334877490,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4307478992\",\"nickname\":\"æŽ_éĒ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713765120389,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4308365405\",\"nickname\":\"æĨå°į§äš\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4313249276\",\"nickname\":\"maple\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718178059839,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4316352542\",\"nickname\":\"å°\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706950947908,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4319599306\",\"nickname\":\"wolf\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712046648947,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4323462362\",\"nickname\":\"åˇĻå \",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701932649228,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4324879979\",\"nickname\":\"\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698831641302,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4326656042\",\"nickname\":\"æĩč¯1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717919019798,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4328265262\",\"nickname\":\"abc\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706710553558,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4328490815\",\"nickname\":\"ekko\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717149188567,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4328997633\",\"nickname\":\"z\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715331266822,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4329402013\",\"nickname\":\"IGF\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716516443974,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4331285657\",\"nickname\":\"ray\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715239152751,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4331847866\",\"nickname\":\"TechFish\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717237269368,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4332427151\",\"nickname\":\"thunder\",\"faceURL\":\"ic_avatar_01\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4333324598\",\"nickname\":\"å¨å\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713594844833,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4336422144\",\"nickname\":\"įįįåģ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715429971882,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4337583921\",\"nickname\":\"chann\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712554731643,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4340810454\",\"nickname\":\"åįŦ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717663039616,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4344723150\",\"nickname\":\"bb0001\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709711009073,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4344973084\",\"nickname\":\"dnc\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4346231461\",\"nickname\":\"kiopwias\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698907038244,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4346543697\",\"nickname\":\"ryan\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698238213601,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4348082955\",\"nickname\":\"missful\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717555596918,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4348869517\",\"nickname\":\"rrtt\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699003594127,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4351325833\",\"nickname\":\"å¸čąæŠ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4356312106\",\"nickname\":\"lisx\",\"faceURL\":\"ic_avatar_05\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4357320975\",\"nickname\":\"xx\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715828515206,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4359161104\",\"nickname\":\"test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717138790738,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4359987819\",\"nickname\":\"WangPengGuy\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4363081068\",\"nickname\":\"lin\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715155591175,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4364213352\",\"nickname\":\"xiaoyu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708782205585,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4365758115\",\"nickname\":\"Miss\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714810657029,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4366259531\",\"nickname\":\"ttt\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709540140538,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4366431790\",\"nickname\":\"tony wang\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713234809708,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4371536904\",\"nickname\":\"lewis\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704877659415,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4372248137\",\"nickname\":\"ååå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713703514075,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4372919561\",\"nickname\":\"104-admin\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712982668113,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4379253236\",\"nickname\":\"wucangeo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702613860789,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4382914823\",\"nickname\":\"hellosss\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702036977440,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4385453331\",\"nickname\":\"zhuo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714192861888,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4385686899\",\"nickname\":\"į§å¤Š\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715260359077,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4389669728\",\"nickname\":\"wfx1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709775241720,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4401936006\",\"nickname\":\"ååč§äŊ \",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705994656532,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4413764571\",\"nickname\":\"äŊį´§åĨŊ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708574687348,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4413835259\",\"nickname\":\"éģæ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703073552369,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4415857340\",\"nickname\":\"xyx\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713514028615,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4419129931\",\"nickname\":\"\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703488739039,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4422224754\",\"nickname\":\"123\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709113872039,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4422329530\",\"nickname\":\"tpeng\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702375613386,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4423627349\",\"nickname\":\"a\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715254155157,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4426459498\",\"nickname\":\"emsea\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4428304728\",\"nickname\":\"X\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713781040528,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4430427191\",\"nickname\":\"xuejian\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715762425043,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4436439007\",\"nickname\":\"huhu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717836330987,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4440450535\",\"nickname\":\"éŋæ˛įå¸
æ¯\",\"faceURL\":\"http://14.29.213.197:50002/object/4440450535/storage/emulated/0/Android/data/io.openim.android.demo/cache/1717312187829/1717312183625.jpg\",\"ex\":\"\",\"createTime\":1717311327581,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4440534964\",\"nickname\":\"IM_STU\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700287772930,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4445212300\",\"nickname\":\"m\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4448855672\",\"nickname\":\"pp_0\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701773726946,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4449558244\",\"nickname\":\"æŋäščĄ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716519669316,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4450360727\",\"nickname\":\"åå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710206881673,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4451267516\",\"nickname\":\"leven\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706582338705,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4453030062\",\"nickname\":\"æĩč¯åˇ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715593811757,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4453849009\",\"nickname\":\"zcw\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4454612664\",\"nickname\":\"maben\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716976865083,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4464911980\",\"nickname\":\"long\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710511111877,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4467365448\",\"nickname\":\"å°čž\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701416188307,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4475835014\",\"nickname\":\"Van\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705034720412,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4476306361\",\"nickname\":\"Anker\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713182624927,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4479234419\",\"nickname\":\"Jerry\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716994204686,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4480521251\",\"nickname\":\"ååļå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4481379556\",\"nickname\":\"erwin fu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709255611894,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4485043552\",\"nickname\":\"wasss\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710089888140,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4486805078\",\"nickname\":\"narsu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712549824287,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4488638760\",\"nickname\":\"æĩč¯čåŧ \",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710210960820,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4493065873\",\"nickname\":\"äŊå
į\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713924340111,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4494156274\",\"nickname\":\"skastyle\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4494156274/image_2023-10-12-10-20.604.png\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4500177587\",\"nickname\":\"ycyxuehan\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711448690943,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4501084974\",\"nickname\":\"hello\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710041274230,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4501771438\",\"nickname\":\"é˛\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714040111956,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4502082928\",\"nickname\":\"å°éé\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702034992938,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4508553291\",\"nickname\":\"åŽåæčž°\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705915955149,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4509502522\",\"nickname\":\"æčž°\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715226530560,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4510059360\",\"nickname\":\"test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698571171958,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4510938314\",\"nickname\":\"joln\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702983381171,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4511028690\",\"nickname\":\"čå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713234913090,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4512614259\",\"nickname\":\"æĩč¯2åˇ\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4512614259/image_cropper_1697164231321.jpg\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4513939193\",\"nickname\":\"ææĻ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705783025935,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4514515621\",\"nickname\":\"į§éŖ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715736625699,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4515124280\",\"nickname\":\"ä¸č°ä¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715471640351,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4518410219\",\"nickname\":\"éŠŦåč č\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711957221115,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4519437471\",\"nickname\":\"brian\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716274244597,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4521618779\",\"nickname\":\"1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702553598595,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4526705625\",\"nickname\":\"夊夊\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716872195818,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4530769942\",\"nickname\":\"snake\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709889876723,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4534383505\",\"nickname\":\"wayne\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713527544110,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4536976003\",\"nickname\":\"qdatt\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711291256409,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4537133650\",\"nickname\":\"MMM\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714052417195,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4539505962\",\"nickname\":\"hugh\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718032265850,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4541622211\",\"nickname\":\"æĩč¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702905885788,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4542445708\",\"nickname\":\"6688\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716359293738,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4546854512\",\"nickname\":\"čēæå夊éž\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4546854512/垎äŋĄåžį_20230727113525.jpg\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4547179316\",\"nickname\":\"æĩč¯428\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714275702780,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4549986255\",\"nickname\":\"č夊\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709104033317,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4551538686\",\"nickname\":\"åŧæ \",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706758705404,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4553582795\",\"nickname\":\"tomtom\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710484219277,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4554875439\",\"nickname\":\"hhhh\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706920096583,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4555507970\",\"nickname\":\"litm\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711524181665,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4558664801\",\"nickname\":\"aa\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713326062516,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4559881917\",\"nickname\":\"čŋæ¯ mail\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717749743014,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4560543353\",\"nickname\":\"fleesa\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708238268910,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4568092882\",\"nickname\":\"įį\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706422991273,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4569177198\",\"nickname\":\"edl1967\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702697756706,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4569497081\",\"nickname\":\"anan\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715159839121,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4576249771\",\"nickname\":\"chuntianli\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705028892158,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4576673457\",\"nickname\":\"tigger\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714267667397,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4576871044\",\"nickname\":\"xw\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698821615174,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4578601959\",\"nickname\":\"xuchaoqian\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706003849179,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4583274239\",\"nickname\":\"æĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707336001878,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4585412233\",\"nickname\":\"w\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711816215098,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4589334066\",\"nickname\":\"simon hacker\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4590290601\",\"nickname\":\"PDZS\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710464242084,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4591244785\",\"nickname\":\"å°¸éǍ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715438134319,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4594001188\",\"nickname\":\"åĩåĩ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703130703962,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4596532610\",\"nickname\":\"user88\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709543470349,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4596959443\",\"nickname\":\"įŊäšäš\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4597354478\",\"nickname\":\"C1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716188363256,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4598359368\",\"nickname\":\"x\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717649313327,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4600766877\",\"nickname\":\"YangBH\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700642764996,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4601563033\",\"nickname\":\"HenryHe\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703483995930,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4601951290\",\"nickname\":\"aabIMer\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716970630661,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4604489387\",\"nickname\":\"BUZZ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703207777711,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4605716056\",\"nickname\":\"hklinfeng\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713260778946,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4609025266\",\"nickname\":\"lm\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705133755548,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4610709176\",\"nickname\":\"a9999001\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717403327485,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4612931477\",\"nickname\":\"HFDG\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706277870128,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4613234206\",\"nickname\":\"james\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4613234206/image_cropper_1700090828297.jpg\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4613808391\",\"nickname\":\"厧äšå
šæéĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716974589887,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4614771183\",\"nickname\":\"大åĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708237782607,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4615063306\",\"nickname\":\"čąčą\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709200987508,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4615500844\",\"nickname\":\"Asanatsa\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702403181683,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4616348536\",\"nickname\":\"æå¤åĄ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4617886925\",\"nickname\":\"kevin_wen1\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4617886925/1706666272705jpg\",\"ex\":\"\",\"createTime\":1706079908880,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4627372556\",\"nickname\":\"derek\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712131741351,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4627757948\",\"nickname\":\"ååå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706172197310,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4628456484\",\"nickname\":\"test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706254467573,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4631480818\",\"nickname\":\"test1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706248202760,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4636565947\",\"nickname\":\"BH2VSQ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708476016446,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4641688133\",\"nickname\":\"ææ\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4641688133/image_2024-04-26-22-27.549.png\",\"ex\":\"\",\"createTime\":1703236777659,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4641774210\",\"nickname\":\"æ°æŋæšæĩč¯7035\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704683944492,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4644188070\",\"nickname\":\"Phil\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699428311079,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4647156540\",\"nickname\":\"listenmiss\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4647392322\",\"nickname\":\"maxincai\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708949867823,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4648916002\",\"nickname\":\"Sam\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4648916002/image_cropper_1707582245462.jpg\",\"ex\":\"\",\"createTime\":1705843473832,\"appMangerLevel\":0,\"globalRecvMsgOpt\":2},{\"userID\":\"4654851468\",\"nickname\":\"man\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714353184407,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4655129542\",\"nickname\":\"leon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4655129542/storage/emulated/0/Android/data/io.openim.android.demo/cache/1699262576820.jpg\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4655516792\",\"nickname\":\"įŧéģ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716465745118,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4662755661\",\"nickname\":\"Syq-850814\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716214699171,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4663715535\",\"nickname\":\"zzz\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710345958160,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4667739897\",\"nickname\":\"éšéš\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716371737268,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4668099372\",\"nickname\":\"jarwin\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705468636460,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4671482518\",\"nickname\":\"dfd\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701770527009,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4672885387\",\"nickname\":\"Tyyyy\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705459554812,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4678037588\",\"nickname\":\"éŋå¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703132278233,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4681582191\",\"nickname\":\"zjnbfjh\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713582138768,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4685588650\",\"nickname\":\"Nic\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711937544716,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4687007131\",\"nickname\":\"éå¤Ēéŋ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711952701919,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4689169233\",\"nickname\":\"jakey\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709777043418,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4689278818\",\"nickname\":\"ITįˇ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713231209101,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4689925923\",\"nickname\":\"nim\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716224297416,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4698451133\",\"nickname\":\"į į \",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698030783813,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4699751551\",\"nickname\":\"RayChen\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702986778056,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4700799522\",\"nickname\":\"zhnagdaiozong\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715778467121,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4701844957\",\"nickname\":\"æĩč¯ä¸ä¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711953993020,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4701865718\",\"nickname\":\"HzTTT\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698807431167,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4702935618\",\"nickname\":\"Ssiswent\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710983594462,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4704979905\",\"nickname\":\"įå äŧ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713920727155,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4705713217\",\"nickname\":\"itly\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714289259274,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4710682050\",\"nickname\":\"įĢčąå¸ĻéĒįĩ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708506616574,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4711741755\",\"nickname\":\"maoxiang\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714286698364,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4714470295\",\"nickname\":\"Davey\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715676897473,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4715090983\",\"nickname\":\"sss\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714285092598,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4716126862\",\"nickname\":\"T_T\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709167822451,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4717198450\",\"nickname\":\"thtns\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701505940850,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4718128155\",\"nickname\":\"hhuang\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711464421260,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4718771983\",\"nickname\":\"MellyWang\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714199982705,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4721455080\",\"nickname\":\"å å \",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4732324211\",\"nickname\":\"chwa\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717222558507,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4732620707\",\"nickname\":\"iunknown2k\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716789865557,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4733304576\",\"nickname\":\"xwvon\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717665940135,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4738033186\",\"nickname\":\"å°č¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700184307442,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4741130938\",\"nickname\":\"æ¨čĨį\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716889246778,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4742854958\",\"nickname\":\"xiaowunai\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700549846438,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4748156889\",\"nickname\":\"åå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4749302175\",\"nickname\":\"asdafv2\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717681440906,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4754517682\",\"nickname\":\"OYB\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705645256088,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4754852664\",\"nickname\":\"mzl\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4755574168\",\"nickname\":\"klayhao\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716883987327,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4757807995\",\"nickname\":\"alex\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717665883738,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4764613832\",\"nickname\":\"poemsea\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716882515783,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4767981688\",\"nickname\":\"ake\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708479901044,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4774906057\",\"nickname\":\"am123\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711444930215,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4780839267\",\"nickname\":\"112312kle\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705755409337,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4785165125\",\"nickname\":\"ååŦ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4785606051\",\"nickname\":\"glm\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715675836558,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4786954344\",\"nickname\":\"junko\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712223950008,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4791442681\",\"nickname\":\"åå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709780699896,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4794115560\",\"nickname\":\"zhazha\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713404137010,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4802965282\",\"nickname\":\"Kainy\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714551167007,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4805646202\",\"nickname\":\"äēį\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702696954827,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4819622986\",\"nickname\":\"liu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716598526264,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4821224168\",\"nickname\":\"William.Lai\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703210205792,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4823617060\",\"nickname\":\"heart devil\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699779914326,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4824619122\",\"nickname\":\"åģēåēˇ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716895403816,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4829651300\",\"nickname\":\"qmarliu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710939523575,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4832615071\",\"nickname\":\"suyan\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":2},{\"userID\":\"4833342766\",\"nickname\":\"ooooks\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716536958392,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4834232511\",\"nickname\":\"zc2\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712813148360,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4834281814\",\"nickname\":\"Sammeow\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704957603995,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4834690774\",\"nickname\":\"įįĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704965733927,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4835033409\",\"nickname\":\"dfer\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717548248460,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4835400415\",\"nickname\":\"æŦå¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706095733737,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4840588859\",\"nickname\":\"ccanna\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700192038640,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4846054480\",\"nickname\":\"test1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715219234430,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4849669261\",\"nickname\":\"fckneedu\",\"faceURL\":\"ic_avatar_05\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4849985881\",\"nickname\":\"åæå°\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717404938211,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4850514972\",\"nickname\":\"æģæģæģ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718186021544,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4857349434\",\"nickname\":\"åžéŽ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711972623963,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4858487103\",\"nickname\":\"PuGuolin\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703124098006,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4867820065\",\"nickname\":\"jie\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710470569465,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4868312193\",\"nickname\":\"syclsc\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714292923065,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4870999670\",\"nickname\":\"kevin97\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706864280406,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4871183993\",\"nickname\":\"renfen1433\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716967490339,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4872085821\",\"nickname\":\"aaaa\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717071864084,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4873691241\",\"nickname\":\"244433\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713148562038,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4875538382\",\"nickname\":\"huangpj0210\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704512543297,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4876217110\",\"nickname\":\"įŦ莰æŦ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715351743422,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4892758656\",\"nickname\":\"5566\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705457577011,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4893424641\",\"nickname\":\"įįåå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700794653026,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4893727151\",\"nickname\":\"Ian\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702069755484,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4896388822\",\"nickname\":\"æéŗ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709706435093,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4900753426\",\"nickname\":\"snowywar\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708590765401,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4901778325\",\"nickname\":\"wJiaaa\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714229467485,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4902397738\",\"nickname\":\"Monday\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715786655967,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4908904387\",\"nickname\":\"AndroidW\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713926095910,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4911332544\",\"nickname\":\"jj\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709272235814,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4911414951\",\"nickname\":\"OpenimAnd-Jane\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4911414951/image_2024-05-06-20-59.111.png\",\"ex\":\"\",\"createTime\":1703038516998,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4911851183\",\"nickname\":\"lionjoy\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708254391304,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4912844543\",\"nickname\":\"admin\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710296733436,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4915484479\",\"nickname\":\"123\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712493395835,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4918276559\",\"nickname\":\"OpenIM Service\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4918276559/storage/emulated/0/Android/data/io.openim.android.demo/cache/1701055992946/1701055983961.jpg\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":2},{\"userID\":\"4918328683\",\"nickname\":\"éĢį̝大æ°ä¸æĄŖæŦĄ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4923873012\",\"nickname\":\"system1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4926446021\",\"nickname\":\"liu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4930915768\",\"nickname\":\"æļĩ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700796125009,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4934894155\",\"nickname\":\"eifying\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698987341674,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4937209096\",\"nickname\":\"xxx\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700703140301,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4938106565\",\"nickname\":\"iamtsm\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716886860119,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4940175675\",\"nickname\":\"äŊåå2\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4940175675/äŧä¸åžŽäŋĄæĒåž_17128865029087.webp\",\"ex\":\"\",\"createTime\":1717654843347,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4940249071\",\"nickname\":\"éĒčąéŖ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714928187725,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4943773015\",\"nickname\":\"åå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709190764749,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4949622917\",\"nickname\":\"test4/177\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/openIM123456/BOT.png\",\"ex\":\"\",\"createTime\":1713338563074,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4950713210\",\"nickname\":\"helpmsg\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714039777268,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4951801389\",\"nickname\":\"tsunamier\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708503851376,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4952005760\",\"nickname\":\"åå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702890770235,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4958357173\",\"nickname\":\"éĢåŽ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708228488086,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4958846328\",\"nickname\":\"wangzhian\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712190248486,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4959913802\",\"nickname\":\"å
å\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708672357907,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4961711537\",\"nickname\":\"meimei\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708239969814,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4963393229\",\"nickname\":\"bdn\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699431420693,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4975019413\",\"nickname\":\"ginkuing\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705851732501,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4975337998\",\"nickname\":\"test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700162310708,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4977198622\",\"nickname\":\"ez001\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718091217986,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4979480519\",\"nickname\":\"éčįå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706189504317,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4979639389\",\"nickname\":\"1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4981191121\",\"nickname\":\"sasaaa\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717916818474,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4981368838\",\"nickname\":\"čąæ įŧē\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711350916360,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4985196437\",\"nickname\":\"čåžˇč¨č§éŖäŊŋčĩ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710744439467,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4988969273\",\"nickname\":\"厍é\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709783462993,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4990193480\",\"nickname\":\"malong\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716531977305,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4995366980\",\"nickname\":\"karl\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706952778638,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4995988309\",\"nickname\":\"null\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"4999156692\",\"nickname\":\"Colin\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709519351565,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"4999749136\",\"nickname\":\"Bill\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700272762372,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5001599614\",\"nickname\":\"åĸ¨å\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706763422258,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5002491660\",\"nickname\":\"å°čŊĻ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716690276060,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5003938059\",\"nickname\":\"åŧ å\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711939244487,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5007601899\",\"nickname\":\"cc\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5007601899/image_cropper_1713876533739.jpg\",\"ex\":\"\",\"createTime\":1713850965348,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5009769752\",\"nickname\":\"äŋ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700224942632,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5011307721\",\"nickname\":\"star\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5016947087\",\"nickname\":\"metarial\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709971677697,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5017045152\",\"nickname\":\"Wu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706694691178,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5024780259\",\"nickname\":\"guo-y\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5027132489\",\"nickname\":\"cs\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712852391605,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5030358081\",\"nickname\":\"ééĢ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702006471454,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5033164124\",\"nickname\":\"1111\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711507707084,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5036254684\",\"nickname\":\"XXXX\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714378907561,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5039689203\",\"nickname\":\"åį¯į§æ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709033482965,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5040986608\",\"nickname\":\"test me and time\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5044983328\",\"nickname\":\"å°éąŧ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698650270913,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5045959757\",\"nickname\":\"Yyang\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707354718937,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5052720919\",\"nickname\":\"X\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709709429500,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5054553896\",\"nickname\":\"ljscs\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714381158938,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5057316211\",\"nickname\":\"ccc\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716786588583,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5057868990\",\"nickname\":\"ååå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5058490688\",\"nickname\":\"lx\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5058490688/storage/emulated/0/Android/data/io.openim.android.demo/cache/1704449175671/1704449168051.jpg\",\"ex\":\"\",\"createTime\":1702740833981,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5059658106\",\"nickname\":\"Hz\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704711950434,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5063708805\",\"nickname\":\"hhh\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713231036503,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5064450025\",\"nickname\":\"sdfads\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700286149227,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5067345572\",\"nickname\":\"Gavin\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705996444034,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5067438435\",\"nickname\":\"AdminX\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5068449155\",\"nickname\":\"åģåģåģ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715250858584,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5072662873\",\"nickname\":\"\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702572655406,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5073192046\",\"nickname\":\"testnnn\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712488206139,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5074137138\",\"nickname\":\"įå
æŖŽ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715792485688,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5075042452\",\"nickname\":\"į¨ģčäēē\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711790555759,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5086890922\",\"nickname\":\"GdlSky\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709019900846,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5086994351\",\"nickname\":\"æ˛ŗä¸éąŧ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716530861104,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5087027370\",\"nickname\":\"wang\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715927526875,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5092290187\",\"nickname\":\"Finley\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5093785048\",\"nickname\":\"li\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711534277476,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5098290115\",\"nickname\":\"ééĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710640823910,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5098473308\",\"nickname\":\"æ˛Ąæ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702573639604,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5104021530\",\"nickname\":\"zhou178\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712390820432,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5107494273\",\"nickname\":\"tg\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706255327315,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5108778950\",\"nickname\":\"zhangjinbao\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710731046123,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5109208108\",\"nickname\":\"čĩéįäēē\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706077849595,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5109328754\",\"nickname\":\"yanwei\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717410655310,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5113616736\",\"nickname\":\"å¤é
Š\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715478437123,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5114178152\",\"nickname\":\"whoami\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714101496041,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5115816718\",\"nickname\":\"KKL\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713152836637,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5120891134\",\"nickname\":\"æ§čŋˇč§æĩ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706498017076,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5124623407\",\"nickname\":\"jizhenwei\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710511513952,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5129646012\",\"nickname\":\"Inzaghi\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715738792490,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5131260895\",\"nickname\":\"zkt123\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715153614941,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5131548684\",\"nickname\":\"čé¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714265143276,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5132970330\",\"nickname\":\"xing\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714309020386,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5138412244\",\"nickname\":\"cc\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715155884099,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5139953083\",\"nickname\":\"captain\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703589650498,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5143564922\",\"nickname\":\"blt\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708239795318,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5148465784\",\"nickname\":\"æ§æŗ\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5148465784/1713826105724_mmexport1713811195322.jpg\",\"ex\":\"\",\"createTime\":1713826068988,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5151877467\",\"nickname\":\"mk123\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706944116344,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5152364658\",\"nickname\":\"čĨå°čĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697594696279,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5152367578\",\"nickname\":\"ååŊå¯įš\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710502962405,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5152700528\",\"nickname\":\"james\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710836612120,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5152772821\",\"nickname\":\"Gggg\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705458702584,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5159407655\",\"nickname\":\"benjamin\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712210702343,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5159666152\",\"nickname\":\"æ æ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709880947309,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5160877753\",\"nickname\":\"lord\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709869753512,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5164441961\",\"nickname\":\"wolfchild\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703576658650,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5165900123\",\"nickname\":\"į\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697787207468,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5166465530\",\"nickname\":\"dqy\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716356128641,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5166918125\",\"nickname\":\"đđđđđđđŊđŊđđđ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5175156228\",\"nickname\":\"åčŋ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698059692623,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5175926475\",\"nickname\":\"čĄįģæ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711432668464,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5178916117\",\"nickname\":\"5897\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697526775949,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5181423157\",\"nickname\":\"haur\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716441303088,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5185600527\",\"nickname\":\"ding\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5185600527/image_cropper_1708305929906.jpg\",\"ex\":\"\",\"createTime\":1706091651244,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5189528969\",\"nickname\":\"mingmi\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717203879169,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5190651797\",\"nickname\":\"ææįį夊\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700098291011,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5191177805\",\"nickname\":\"ååå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701416542950,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5192859184\",\"nickname\":\"yaya\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710855747566,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5200142893\",\"nickname\":\"ttt\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710476305324,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5203162281\",\"nickname\":\"jacek\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708169137848,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5206821177\",\"nickname\":\"æ˛ååŋ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5206946655\",\"nickname\":\"sascsacsacsac\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708490820025,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5207254443\",\"nickname\":\"čĩĩåæĩŠ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708579628720,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5211251741\",\"nickname\":\"æąčŽ¯ææ´\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5211251741/msg_picture_43bbebbf93515fefc96d9d9c37215dcd.webp\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5213333820\",\"nickname\":\"jun\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698311279874,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5217579807\",\"nickname\":\"mustafa\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709713578923,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5221720362\",\"nickname\":\"test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711519435656,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5222516154\",\"nickname\":\"æ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713424403507,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5226459880\",\"nickname\":\"sineom\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5226627818\",\"nickname\":\"7131\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715239312806,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5233426123\",\"nickname\":\"admin1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711071161591,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5235308523\",\"nickname\":\"æå¸Ļįåéįč¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714030303881,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5236359243\",\"nickname\":\"ææ¯åŧ ä¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703656134273,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5236545003\",\"nickname\":\"xiaoguo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715437946602,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5237025674\",\"nickname\":\"Cisco\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718214814986,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5240408296\",\"nickname\":\"fff\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713279550108,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5240575339\",\"nickname\":\"hank\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711093927484,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5241529913\",\"nickname\":\"éēĻå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705586982352,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5244482702\",\"nickname\":\"keep\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713171350220,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5248071176\",\"nickname\":\"ugvcdt\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715417109622,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5248150745\",\"nickname\":\"ackerman\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5248150745/storage/emulated/0/Android/data/io.openim.android.demo/cache/1713631965868/1713631965378.png\",\"ex\":\"\",\"createTime\":1713095842813,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5248385191\",\"nickname\":\"Ramu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710490693235,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5249725335\",\"nickname\":\"ben\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707117522709,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5256311014\",\"nickname\":\"TAMIR\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713753589767,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5259696013\",\"nickname\":\"Ray\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710137028975,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5260081632\",\"nickname\":\"厴éģéĒ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700039622946,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5262644632\",\"nickname\":\"æ æŗæžį¤ēæĩį§°\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715430300145,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5263712829\",\"nickname\":\"hw\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716897921847,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5264992214\",\"nickname\":\"业å°ŧå°\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711503609625,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5268812393\",\"nickname\":\"super\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714199377509,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5280943776\",\"nickname\":\"coor\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712898057951,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5282627881\",\"nickname\":\"å\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699342725960,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5285022981\",\"nickname\":\"vitas\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711029338499,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5286535793\",\"nickname\":\"testMann\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710235119915,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5288626264\",\"nickname\":\"大æŋ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712555696116,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5290454482\",\"nickname\":\"Black\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706164602807,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5290473735\",\"nickname\":\"å
æĄ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698114429894,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5291311764\",\"nickname\":\"aa\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700191451232,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5291456050\",\"nickname\":\"mia\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5294929577\",\"nickname\":\"aaa\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716521578707,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5295369982\",\"nickname\":\"Mageia\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710303600429,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5296052389\",\"nickname\":\"11\",\"faceURL\":\"ic_avatar_01\",\"ex\":\"\",\"createTime\":1706863693972,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5296644653\",\"nickname\":\"å\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705288904053,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5297662536\",\"nickname\":\"\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702419222631,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5304967461\",\"nickname\":\"å°įēĸ\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5304967461/image_cropper_1711332115708.jpg\",\"ex\":\"\",\"createTime\":1704707959474,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5307357041\",\"nickname\":\"lu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707028521373,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5320305071\",\"nickname\":\"æ´Ēå°å¸
\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702447616806,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5321467496\",\"nickname\":\"216565\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709257766515,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5321587991\",\"nickname\":\"122\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716692562565,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5329005553\",\"nickname\":\"å¤§čĄ¨åĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716190430906,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5329462571\",\"nickname\":\"åå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703122752789,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5329543914\",\"nickname\":\"clewm\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710907880444,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5331279867\",\"nickname\":\"smile\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716185545274,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5334542905\",\"nickname\":\"éŖ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698591690434,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5334756257\",\"nickname\":\"ocean\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710482620764,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5336317141\",\"nickname\":\"xm\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704513339536,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5343195507\",\"nickname\":\"叿\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706756615546,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5346815324\",\"nickname\":\"cash\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711501820727,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5348575962\",\"nickname\":\"stone\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5349221317\",\"nickname\":\"ellan_ios\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5349221317/image_2023-08-29-24-39.833.png\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5350931457\",\"nickname\":\"åŧ ä¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717743566788,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5351132193\",\"nickname\":\"åįˇ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715834557435,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5352682579\",\"nickname\":\"åĄæŽ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710761095969,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5356113166\",\"nickname\":\"å123\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700460636520,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5358143052\",\"nickname\":\"Hapety\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706961870153,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5358714951\",\"nickname\":\"gg\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713890839710,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5358843278\",\"nickname\":\"åŧ ä¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699321394737,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5358983896\",\"nickname\":\"įŠēæ°åŊä¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710990379154,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5360417820\",\"nickname\":\"a\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709620275585,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5363582234\",\"nickname\":\"wei\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5363957705\",\"nickname\":\"大Sam\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5363957705/SamAvatar.webp\",\"ex\":\"\",\"createTime\":1716868642457,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5365048884\",\"nickname\":\"įįäšĻ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712753878322,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5368584236\",\"nickname\":\"77\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708410397452,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5370620069\",\"nickname\":\"jdysya\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701591930495,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5373490184\",\"nickname\":\"yuxg\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710813000391,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5373710322\",\"nickname\":\"OpenIM\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698575735572,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5375609152\",\"nickname\":\"Ci\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705408242350,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5377724931\",\"nickname\":\"cc\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715389322780,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5381374647\",\"nickname\":\"å°éŖčąĄæĨåĻ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708496987697,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5382734642\",\"nickname\":\"John\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5383441189\",\"nickname\":\"åŽĸææĨå
Ĩ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704937750693,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5384318976\",\"nickname\":\"flowerpp\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716556928897,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5390236703\",\"nickname\":\"ikun\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5396639819\",\"nickname\":\"čį\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702010398432,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5397087982\",\"nickname\":\"ccc0992008\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705799402036,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5397363424\",\"nickname\":\"bigmelon\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707153070958,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5398613531\",\"nickname\":\"įž\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5401562218\",\"nickname\":\"å°æ°\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704684066935,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5402322052\",\"nickname\":\"openIMUser\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5404307971\",\"nickname\":\"jiebao\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712626443658,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5405441233\",\"nickname\":\"å¤§æ˛ŗéŠŦ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716642964368,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5406159540\",\"nickname\":\"ghost\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704787301432,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5407091476\",\"nickname\":\"ember\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702971307816,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5407782499\",\"nickname\":\"archer\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715331618022,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5409594675\",\"nickname\":\"Y\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713925355734,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5410098477\",\"nickname\":\"hongzai\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704912523524,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5410355545\",\"nickname\":\"diaodiao\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":2},{\"userID\":\"5410368232\",\"nickname\":\"Allen\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703673545251,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5410772311\",\"nickname\":\"ywx\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712569411791,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5414128931\",\"nickname\":\"čĻä¸čĻ䏿Ĩä¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699339518231,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5416738193\",\"nickname\":\"æåŖļ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717311466571,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5417124831\",\"nickname\":\"eqweq\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717199254350,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5420104655\",\"nickname\":\"zz\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711595369223,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5430821760\",\"nickname\":\"ouyang\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703211492796,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5432843240\",\"nickname\":\"water\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711969594747,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5442199418\",\"nickname\":\"éå
į\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711338753437,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5446046008\",\"nickname\":\"ææ¯æ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713921610591,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5446567702\",\"nickname\":\"MAX\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703311191285,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5449593636\",\"nickname\":\"Fred\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697683943053,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5450965115\",\"nickname\":\"dvhchuot\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711076232677,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5452365658\",\"nickname\":\"lotric\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705473945245,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5452450197\",\"nickname\":\"1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702281414842,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5453108500\",\"nickname\":\"åžåĄ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709103855735,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5455481997\",\"nickname\":\"sam\",\"faceURL\":\"/storage/emulated/0/Pictures/1694853489786.jpg\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5480212485\",\"nickname\":\"äŊ åĨŊ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700019275043,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5480713946\",\"nickname\":\"ceshi\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708485441701,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5480812632\",\"nickname\":\"test7975\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5485148642\",\"nickname\":\"æˇĄåŋ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716460122397,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5496039772\",\"nickname\":\"ååå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705307413575,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5502486573\",\"nickname\":\"NoPanic\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701834007018,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5503315300\",\"nickname\":\"1Ckpwee\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715571412380,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5503837684\",\"nickname\":\"123123\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702955330728,\"appMangerLevel\":0,\"globalRecvMsgOpt\":2},{\"userID\":\"5512448749\",\"nickname\":\"cll\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698410572775,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5512868112\",\"nickname\":\"Aäģ夊\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":2},{\"userID\":\"5513765615\",\"nickname\":\"zxl\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705459874188,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5514725837\",\"nickname\":\"å°éŠŦ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699003309398,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5525192219\",\"nickname\":\"fanxing666ya\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717754764658,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5525995594\",\"nickname\":\"ååå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712006492246,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5526021912\",\"nickname\":\"卿æ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5526651611\",\"nickname\":\"įéį\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711938367194,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5540563810\",\"nickname\":\"aaaaa\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708176230435,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5540757722\",\"nickname\":\"daqiez\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5541069207\",\"nickname\":\"å¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715308273326,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5542535779\",\"nickname\":\"Fizzer\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713840955201,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5548591709\",\"nickname\":\"Odyssey\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712479102987,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5549513683\",\"nickname\":\"jason\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717484281585,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5552236107\",\"nickname\":\"夊夊\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704882931483,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5553194662\",\"nickname\":\"åŽåįŗįŗ\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5553194662/storage/emulated/0/Android/data/io.openim.android.demo/cache/1710897301210.jpg\",\"ex\":\"\",\"createTime\":1709185327835,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5557876583\",\"nickname\":\"æ¨å
\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700636484924,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5558311156\",\"nickname\":\"YL\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713334092783,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5561959046\",\"nickname\":\"AgoniMou\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701490364266,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5566365465\",\"nickname\":\".\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698893657199,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5568853842\",\"nickname\":\"long\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5570249193\",\"nickname\":\"silence\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713109842196,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5570319326\",\"nickname\":\"äŊ čŋä¸įäēē\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714749052728,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5576420817\",\"nickname\":\"YOO\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5577874223\",\"nickname\":\"9988\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698052289033,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5578328451\",\"nickname\":\"holoho\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715427368785,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5578731578\",\"nickname\":\"įįå°å\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716278403289,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5581090381\",\"nickname\":\"rey\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708649063519,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5581435034\",\"nickname\":\"æčå§\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718155916618,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5584327976\",\"nickname\":\"kimi\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705457766422,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5586125949\",\"nickname\":\"momo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705049178997,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5586255658\",\"nickname\":\"zzp\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717117508123,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5587098679\",\"nickname\":\"fdsafd\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713923925364,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5587217057\",\"nickname\":\"janifc\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698070439289,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5587808406\",\"nickname\":\"zhaofeng\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713237357336,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5594047664\",\"nickname\":\"éģä¸Ŋ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715657847559,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5605784685\",\"nickname\":\"yh\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5606396140\",\"nickname\":\"scc\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704678653849,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5610837207\",\"nickname\":\"åĄå¸čžž\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713334173252,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5616569214\",\"nickname\":\"æåŋéŖįŋ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5618114098\",\"nickname\":\"jin\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702281265359,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5619318712\",\"nickname\":\"pierre\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717500099470,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5619336399\",\"nickname\":\"Evan\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718197400463,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5620768201\",\"nickname\":\"DFđđ¤\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5620768201/qq襨æ
.webp\",\"ex\":\"\",\"createTime\":1704699895450,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5625548410\",\"nickname\":\"winrd\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711622319731,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5626394972\",\"nickname\":\"Dragon\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716603620244,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5629610459\",\"nickname\":\"å°čĸåĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717058740723,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5630216908\",\"nickname\":\"yiyi\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710315673639,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5632773822\",\"nickname\":\"ä¸ä¸\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5632773822/1713086177401jpg\",\"ex\":\"\",\"createTime\":1713084878416,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5633059660\",\"nickname\":\"Tytg\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705458294548,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5633188673\",\"nickname\":\"čåĨį§į¤\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5633378166\",\"nickname\":\"SilentLand\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713942072181,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5636993626\",\"nickname\":\"yuanshao\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718267433669,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5640122986\",\"nickname\":\"lhca521\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712685550015,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5643092782\",\"nickname\":\"OYHTEST\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711707198955,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5644765212\",\"nickname\":\"jenny maya\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713510084932,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5645682170\",\"nickname\":\"gfddff\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700616801332,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5647374792\",\"nickname\":\"ee\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705892069152,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5653943210\",\"nickname\":\"Henry\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718266318029,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5654578948\",\"nickname\":\"gortonlau\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709904718563,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5656745158\",\"nickname\":\"bbbbbb\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712344234789,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5657688195\",\"nickname\":\"æŦĄå§åޤ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699880217007,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5658001949\",\"nickname\":\"chao\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711004921008,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5659165582\",\"nickname\":\"éæåŽ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699407324962,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5659573503\",\"nickname\":\"extra\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708071971682,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5661158812\",\"nickname\":\"177\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713498021737,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5665554530\",\"nickname\":\"locke\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713172489676,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5665605844\",\"nickname\":\"lgm\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711530238891,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5665783096\",\"nickname\":\"OyukaZOyunja\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718009343835,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5668726699\",\"nickname\":\"4\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5668985363\",\"nickname\":\"Smile\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5668985363/image_cropper_1704713618993.jpg\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5669416921\",\"nickname\":\"大éž\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716799818342,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5674745391\",\"nickname\":\"dgf\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716181110035,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5677381479\",\"nickname\":\"Skesa\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705634301614,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5693206451\",\"nickname\":\"kk\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718024323675,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5695116048\",\"nickname\":\"å°éģå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718254560930,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5695990734\",\"nickname\":\"wfk\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711647552204,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5699652927\",\"nickname\":\"naraku\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700567247411,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5708410287\",\"nickname\":\"åĻåĻåĻ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714874515626,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5710168294\",\"nickname\":\"joke\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717525929116,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5710649058\",\"nickname\":\"Saber\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697870401524,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5715976407\",\"nickname\":\"åå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5717044381\",\"nickname\":\"nick\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711417233371,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5718405684\",\"nickname\":\"ssdc\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713404719983,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5719987926\",\"nickname\":\"åˇĻæææ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716194170971,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5726747048\",\"nickname\":\"į
ææŦ˛č¨\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715844616877,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5728062211\",\"nickname\":\"Akihi\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708581692005,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5728220862\",\"nickname\":\"111\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715175765998,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5728456517\",\"nickname\":\"WH\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711021802460,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5729235369\",\"nickname\":\"æ¯æäēē\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714359446483,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5730628535\",\"nickname\":\"æĢåš´\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714125326922,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5734504508\",\"nickname\":\"zmhbh\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704679106732,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5735206330\",\"nickname\":\"Super\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710925245959,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5735757792\",\"nickname\":\"lj\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5741092371\",\"nickname\":\"\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702457913768,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5741564889\",\"nickname\":\"roninz\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701487778319,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5743097181\",\"nickname\":\"ray\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715846452618,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5743288207\",\"nickname\":\"éĢé\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703555029596,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5745714391\",\"nickname\":\"䏿ĸ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714353355474,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5746670115\",\"nickname\":\"åĨåĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713248013644,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5752307329\",\"nickname\":\"11\",\"faceURL\":\"ic_avatar_04\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5762137067\",\"nickname\":\"ioi\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714275225749,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5763494246\",\"nickname\":\"ray\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714149455201,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5764725232\",\"nickname\":\"bryce\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702121028902,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5766348077\",\"nickname\":\"éŠŦį¨įŊ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5770532835\",\"nickname\":\"www\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715412336720,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5775768919\",\"nickname\":\"wao äēēīŧ #\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5778047866\",\"nickname\":\"CHEN\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707207792515,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5782315790\",\"nickname\":\" \",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717445974829,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5784013945\",\"nickname\":\"åžŽįąŗ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712907782968,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5788143929\",\"nickname\":\"11\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5788143929/image_cropper_1705453373761.jpg\",\"ex\":\"\",\"createTime\":1705284853654,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5788891525\",\"nickname\":\"A~CXQ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702044864665,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5790728514\",\"nickname\":\"éŗå
-垎įŦ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714978011620,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5794961319\",\"nickname\":\"paxy\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705288812533,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5795637205\",\"nickname\":\"helloworld\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705677466056,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5798749721\",\"nickname\":\"åĻåĻåĨŊ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698084286223,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5800725777\",\"nickname\":\"3213213\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700170614018,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5803896006\",\"nickname\":\"z\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705901782283,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5806188403\",\"nickname\":\"éžäšæˇą\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715864957255,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5814165285\",\"nickname\":\"aaa\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716948708964,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5816557466\",\"nickname\":\"åĻåĻåĻ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716278490610,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5816946439\",\"nickname\":\"qwer\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716518695763,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5817653065\",\"nickname\":\"test9527\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714311340503,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5817925510\",\"nickname\":\"godLei6\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705737842569,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5818783212\",\"nickname\":\"wjun\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705912971739,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5821718929\",\"nickname\":\"wisdom\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706520158123,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5822391747\",\"nickname\":\"LogoRun\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709177719001,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5823977481\",\"nickname\":\"bsmaa\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704858713499,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5839682145\",\"nickname\":\"alex\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709045279182,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5842361658\",\"nickname\":\"ååŽæåŽ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706259906876,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5842695634\",\"nickname\":\"xiaoxie\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715138008240,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5843381897\",\"nickname\":\"čĸåŽčž\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5843381897/1702171640794_Image_1701332479286.jpg\",\"ex\":\"\",\"createTime\":1702171372587,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5856396568\",\"nickname\":\"æĩč¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709773194436,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5857452412\",\"nickname\":\"xiongliang\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705280104288,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5860770188\",\"nickname\":\"åŽäģ˛åē\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709523178504,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5863894652\",\"nickname\":\"yier\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5864051915\",\"nickname\":\"coco\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708593041455,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5864943501\",\"nickname\":\"wxhpby\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702547039734,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5871437314\",\"nickname\":\"yazi\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712861036456,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5883787211\",\"nickname\":\"tanch\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706064681561,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5885080003\",\"nickname\":\"xth\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715101600950,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5887387594\",\"nickname\":\"ä¸åĸ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711066755171,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5890658001\",\"nickname\":\"Numb\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697964340085,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5894974847\",\"nickname\":\"éģč˛åšŊéģ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715218829872,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5896039030\",\"nickname\":\"大éģ夊\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716817055469,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5896150134\",\"nickname\":\"L\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705023524067,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5896186963\",\"nickname\":\"éǍæ
é\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710146088622,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5899173891\",\"nickname\":\"liuzihuang\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711704747225,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5904075897\",\"nickname\":\"lll\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716191317540,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5907279098\",\"nickname\":\"æĩč¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705466133602,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5908182038\",\"nickname\":\"įæĻ¨įąŗį˛\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709561299926,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5910546288\",\"nickname\":\"tonka\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707615893594,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5915346182\",\"nickname\":\"åå
åå°\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717408230601,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5915558310\",\"nickname\":\"1åˇäŊ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698548484392,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5918528750\",\"nickname\":\"w-gmailæĩč¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710473790405,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5921376933\",\"nickname\":\"æį¯äž \",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698804763663,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5921920938\",\"nickname\":\"wuzyhfa\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711873016926,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5925608879\",\"nickname\":\"imįį\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715767160499,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5928750409\",\"nickname\":\"čįĢ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698626150998,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5929046253\",\"nickname\":\"夿´ģį˛\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699256771013,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5929204367\",\"nickname\":\"fkfk\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716599034882,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5931929122\",\"nickname\":\"123456\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709222922742,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5932065188\",\"nickname\":\"MrWang\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716014527765,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5935225979\",\"nickname\":\"daybreakcold\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715748711142,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5935227089\",\"nickname\":\"éįåŗ°\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713844506687,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5936400835\",\"nickname\":\"13681409897\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710209142183,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5937916635\",\"nickname\":\"æĢé\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5937972697\",\"nickname\":\"--\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706579358107,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5939377886\",\"nickname\":\"test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704764544432,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5940571929\",\"nickname\":\"marstau\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714909994906,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5945434993\",\"nickname\":\"hehehe\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711134010546,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5948016835\",\"nickname\":\"ghj\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714113383929,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5950701783\",\"nickname\":\"abc\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709624386974,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5952571464\",\"nickname\":\"goodorbad\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697696925202,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5954565885\",\"nickname\":\"åĨåĨåĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700532414396,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5955203999\",\"nickname\":\"111\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715315947538,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5955873566\",\"nickname\":\"JC\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5955873566/image_cropper_60A0712F-389B-4095-A78D-75D24AA2576F-70507-0000087FB91B1AD9.jpg\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5959625032\",\"nickname\":\"åēˇ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714441750130,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5975439779\",\"nickname\":\"NimY.\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5975439779/storage/emulated/0/Android/data/io.openim.android.demo/cache/1706961762464/1706961759978.jpg\",\"ex\":\"\",\"createTime\":1706957419193,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5975476723\",\"nickname\":\"JJ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716944342718,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5977374952\",\"nickname\":\"ååīŧä¸äŧå§\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5981427132\",\"nickname\":\"P\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711690644254,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5983902361\",\"nickname\":\"avitori\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698592273386,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5984173458\",\"nickname\":\"å¸
ææ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713148719607,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5984271985\",\"nickname\":\"æēæēå°å°é
Ĩ\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/5984271985/667b867c63563b0ad76795198fdfc811.gif\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"5986232431\",\"nickname\":\"æį\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714886702881,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5996388709\",\"nickname\":\"į
čåģåĒäē\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709175665111,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5997395137\",\"nickname\":\"dongdong\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711460588241,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"5997701968\",\"nickname\":\"čļ
äēēåŧēåĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698402504002,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6005888406\",\"nickname\":\"kennyxjd\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717666041447,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6006128096\",\"nickname\":\"123\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715222966013,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6006290878\",\"nickname\":\"fooger\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707203456063,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6008066663\",\"nickname\":\"æčĒ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715166645446,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6013027606\",\"nickname\":\"moyeah\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706165215861,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6013955514\",\"nickname\":\"å
č¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6015794695\",\"nickname\":\"Hexi\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716197698989,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6016147145\",\"nickname\":\"feng3\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717669601472,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6018243921\",\"nickname\":\"11\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700126408939,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6023508071\",\"nickname\":\"h\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712913237599,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6026538705\",\"nickname\":\"sea.sky\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718258133653,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6031134585\",\"nickname\":\"Aaron\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701564474359,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6031667349\",\"nickname\":\"tsy\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718206169524,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6033028313\",\"nickname\":\"portguas\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712113363948,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6034497071\",\"nickname\":\"h\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716104851244,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6036151426\",\"nickname\":\"6666\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713953900643,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6036941107\",\"nickname\":\"æĩč¯1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715088623612,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6038779981\",\"nickname\":\"åĨŊä¸å¤´\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6048406952\",\"nickname\":\"yger\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713852954691,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6051177811\",\"nickname\":\"kevin\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714272886609,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6051934668\",\"nickname\":\"test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698927585399,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6055213651\",\"nickname\":\"åŊąå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6060091841\",\"nickname\":\"åįˇ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711508029830,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6060319919\",\"nickname\":\"huhu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709685283035,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6062924771\",\"nickname\":\"čąčą\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6064103151\",\"nickname\":\"amark\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715417072686,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6065191029\",\"nickname\":\"doogup99\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714208978850,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6068497884\",\"nickname\":\"hsguo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711502324162,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6074324251\",\"nickname\":\"ONLY\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700127039185,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6076551181\",\"nickname\":\"fields\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717258819082,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6078638343\",\"nickname\":\"坿Ļä¸åļčĢ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705922882235,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6083577052\",\"nickname\":\"č§åžįåŧįš\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6083951309\",\"nickname\":\"sunJsona\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705917424721,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6087811348\",\"nickname\":\"大į\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707380455745,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6088409125\",\"nickname\":\"Henry Wu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703601134258,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6093808210\",\"nickname\":\"æ åļ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714717648259,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6096605449\",\"nickname\":\"åé\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715305127729,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6099670645\",\"nickname\":\"į įŠļį įŠļ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712566900165,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6104556263\",\"nickname\":\"NIKKI\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712494785645,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6106775804\",\"nickname\":\"čąčą\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716447791196,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6113261132\",\"nickname\":\"Test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715844225164,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6115346815\",\"nickname\":\"åąå¤äēē\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714749860919,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6116849462\",\"nickname\":\"IcyFanta\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718071009330,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6116896250\",\"nickname\":\"wildlynx\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708229629010,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6118899713\",\"nickname\":\"ggg\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716599361072,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6126224779\",\"nickname\":\"dddkkk\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716964470527,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6128440220\",\"nickname\":\"įĢĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709272622898,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6132231740\",\"nickname\":\"MotisJA\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715504486301,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6133038339\",\"nickname\":\"aaaa\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713849753088,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6133543856\",\"nickname\":\"æĩč¯å\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709742113254,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6133844467\",\"nickname\":\"1216\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717570205554,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6134647314\",\"nickname\":\"åŧ įäē\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712560490035,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6135244436\",\"nickname\":\"qq\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717555940381,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6140652559\",\"nickname\":\"\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697523437733,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6141140222\",\"nickname\":\"longlongago\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715146202595,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6141620999\",\"nickname\":\"æŗ¨åä¸ä¸Ēč´Ļåˇč¯į¨ä¸ä¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699348757553,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6142166971\",\"nickname\":\"155\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6142186125\",\"nickname\":\"sezi\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703490742971,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6143363837\",\"nickname\":\"æĩč¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715135215636,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6145520493\",\"nickname\":\"17\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717591013223,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6149155248\",\"nickname\":\"556699\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712539316206,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6152830251\",\"nickname\":\"įé
¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6156827373\",\"nickname\":\"čĻįčĄ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707050358411,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6158590414\",\"nickname\":\"markerj\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699605978963,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6161718484\",\"nickname\":\"jack\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705016994326,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6165380448\",\"nickname\":\"zhanghang\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706084921338,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6168075727\",\"nickname\":\"æ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708941102175,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6168367570\",\"nickname\":\"eerr1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699003065728,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6171471555\",\"nickname\":\"zhazha\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717636444809,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6171560899\",\"nickname\":\"莞įŊŽäŋĄæ¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712742462482,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6171677006\",\"nickname\":\"crui990\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704712909042,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6179365429\",\"nickname\":\"RR\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714179750213,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6182458494\",\"nickname\":\"åäēē\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713677116237,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6182903129\",\"nickname\":\"zzz\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713511327992,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6195299101\",\"nickname\":\"jack\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718252859899,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6195752325\",\"nickname\":\"OpenIM\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716281285590,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6201510570\",\"nickname\":\"IM\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716266205139,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6203470761\",\"nickname\":\"åŠ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715423449365,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6204547412\",\"nickname\":\"Martin\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/6204547412/Snipaste_2021-09-23_18-29-58.webp\",\"ex\":\"\",\"createTime\":1705903718611,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6204882268\",\"nickname\":\"įĩé¨\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/6204882268/a6483-fmbp4.webp\",\"ex\":\"\",\"createTime\":1715244855500,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6205781501\",\"nickname\":\"Tashan\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6218720837\",\"nickname\":\"åååŋ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6219207142\",\"nickname\":\"zmq3821\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6219819108\",\"nickname\":\"åææįå°čĄæ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709111162077,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6224388014\",\"nickname\":\"tanxm\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710492859974,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6225512933\",\"nickname\":\"dawnswwwww\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716109435869,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6227325792\",\"nickname\":\"åŽæšæé\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714273194735,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6231818471\",\"nickname\":\"simon\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702459717566,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6232137221\",\"nickname\":\"éä¸ččĄåĒå¨äēē\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711948085952,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6237905746\",\"nickname\":\"rooike\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717315195840,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6240876322\",\"nickname\":\"ny\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698746275460,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6244724164\",\"nickname\":\"djn\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711942402777,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6246279298\",\"nickname\":\"im-test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717601292219,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6250904913\",\"nickname\":\"ss\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715676647089,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6254689070\",\"nickname\":\"HUI\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718263195295,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6257143773\",\"nickname\":\"tufeiyao\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715504780395,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6261322669\",\"nickname\":\"zxd\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708149763456,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6262174436\",\"nickname\":\"æ¸
æ°´ä¸æļ§\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708391318567,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6265354518\",\"nickname\":\"大åˇåˇ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697524536194,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6265776649\",\"nickname\":\"cunsheng\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704867599107,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6266941295\",\"nickname\":\"longxiang\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700117975404,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6270795380\",\"nickname\":\"ååå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713774785565,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6270908929\",\"nickname\":\"夿åĸ\",\"faceURL\":\"http://14.29.213.197:50002/object/6270908929/1714817973096_mmexport9493e7c86c9ce49c9725562bbbacdd7d_1714799451796.jpeg\",\"ex\":\"\",\"createTime\":1708738724853,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6271691561\",\"nickname\":\"TIM\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718160355573,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6273646617\",\"nickname\":\"į
į
\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/6273646617/垎äŋĄæĒåž_20231022201428.webp\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6277147514\",\"nickname\":\"įˇåŠ\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/6277147514/image_cropper_1706173937363.jpg\",\"ex\":\"\",\"createTime\":1706173794949,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6285709625\",\"nickname\":\"夊įŠē\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705045300664,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6288096156\",\"nickname\":\"åå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705904954369,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6291070602\",\"nickname\":\"éŊ夊大åŖ\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/6291070602/image_2023-09-02-59-26.227.png\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6292285317\",\"nickname\":\"įŋįåŦ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700190998634,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6302501675\",\"nickname\":\"ben\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716645235301,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6303051991\",\"nickname\":\"eightdoor\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698714198965,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6303348015\",\"nickname\":\"carlfeng\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700035043633,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6312531724\",\"nickname\":\"kjj\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716377987322,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6312576873\",\"nickname\":\"li\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714370008564,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6313231245\",\"nickname\":\"wolly\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6313419358\",\"nickname\":\"jerry119\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709003298944,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6317201698\",\"nickname\":\"åŦ蝴\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700462440032,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6319015024\",\"nickname\":\"OpenIM-wind\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/6319015024/pexels-photo-2174974.webp\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":2},{\"userID\":\"6319901751\",\"nickname\":\"åĨŊåĨŊįĄč§\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702954031401,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6322374743\",\"nickname\":\"å°æŦ§\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703744926758,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6326666004\",\"nickname\":\"czy\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707437812952,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6327876925\",\"nickname\":\"Done\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715567683183,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6330822619\",\"nickname\":\"Will\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700068204122,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6331971236\",\"nickname\":\"įēĸįąŗ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6334911076\",\"nickname\":\"hi\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6338240526\",\"nickname\":\"å¨å¨\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713767488554,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6339230517\",\"nickname\":\"čŋĒ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717587558384,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6346508066\",\"nickname\":\"åŊæ˛ģ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715583458599,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6347103724\",\"nickname\":\"hellworld\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702889138444,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6351160254\",\"nickname\":\"111\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703683935399,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6352104335\",\"nickname\":\"æĩĒčŋš\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707115492500,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6352490253\",\"nickname\":\"zzz\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700469516793,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6352839849\",\"nickname\":\"ss\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705097745097,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6353020967\",\"nickname\":\"Wendy\",\"faceURL\":\"ic_avatar_01\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6361976167\",\"nickname\":\"dsfdsf\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6362196673\",\"nickname\":\"Jane.com\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716869131003,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6363109385\",\"nickname\":\"įå¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717499488907,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6364600020\",\"nickname\":\"ln\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703036922780,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6373189805\",\"nickname\":\"įŧĨįŧ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711086160435,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6378176309\",\"nickname\":\"åčå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711353522589,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6381244261\",\"nickname\":\"\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700462199915,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6386210375\",\"nickname\":\"mg\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/6386210375/image_cropper_1711039284490.jpg\",\"ex\":\"\",\"createTime\":1704893926014,\"appMangerLevel\":0,\"globalRecvMsgOpt\":2},{\"userID\":\"6397860749\",\"nickname\":\"å¤įį\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699337112740,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6398540247\",\"nickname\":\"įč§å¸¸å¨åææĨįĻ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706260128787,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6401239370\",\"nickname\":\"čéŠŦ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701665831802,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6404356222\",\"nickname\":\"å°å°\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706181450233,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6406732941\",\"nickname\":\"tanjiang\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/6406732941/åå¸.webp\",\"ex\":\"\",\"createTime\":1715098730286,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6410043931\",\"nickname\":\"rhjiang\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715415804338,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6411073511\",\"nickname\":\"č´ĸįĨįˇ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718216398568,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6412329187\",\"nickname\":\"Lc\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6414911020\",\"nickname\":\"æą¤įŋæˇ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708240343690,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6416142584\",\"nickname\":\"chenhu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703669004103,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6417602965\",\"nickname\":\"damain\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715424260904,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6419911901\",\"nickname\":\"code000000\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699322804150,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6420701443\",\"nickname\":\"ä¸į\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705387857815,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6421051438\",\"nickname\":\"pppp\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713246350897,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6431088982\",\"nickname\":\"æ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699857833110,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6433354761\",\"nickname\":\"įŠē\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713146777180,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6438561890\",\"nickname\":\"lululemon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/6438561890/HUTiKj4__400x400.webp\",\"ex\":\"\",\"createTime\":1716363397625,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6441149641\",\"nickname\":\"felix\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708416112845,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6441650238\",\"nickname\":\"theeight\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710553264270,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6443345562\",\"nickname\":\"æĩį§°\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710399939954,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6444500926\",\"nickname\":\"test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716345073746,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6444929933\",\"nickname\":\"test9\",\"faceURL\":\"ic_avatar_06\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6447835862\",\"nickname\":\"MrJiaHe\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716971699377,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6448579919\",\"nickname\":\"äēįåä¸åˇ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706255272875,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6449138632\",\"nickname\":\"zyl\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718265452247,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6449141444\",\"nickname\":\"Dasin\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711029006798,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6453774519\",\"nickname\":\"panziyu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704699657837,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6453949619\",\"nickname\":\"Aragakiyui\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715139866078,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6454827578\",\"nickname\":\"tyhcmzy\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6458562938\",\"nickname\":\"čå
æŦ§\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/6458562938/image_cropper_1700369233784.jpg\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6460025590\",\"nickname\":\"AY\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715158774060,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6469392278\",\"nickname\":\"solomagic\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714100087785,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6481678351\",\"nickname\":\"åčĢ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712540938249,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6483893350\",\"nickname\":\"ååååäŊ æŗ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700585651986,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6484797725\",\"nickname\":\"automan001\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712543960990,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6487716839\",\"nickname\":\"fuck123\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703585468793,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6494483474\",\"nickname\":\"398131\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710924686027,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6496496312\",\"nickname\":\"5234\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6498376092\",\"nickname\":\"å
é\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714826527029,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6499282212\",\"nickname\":\"ååååąą\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715438833897,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6500329873\",\"nickname\":\"å¯čžžé¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701686576681,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6501494738\",\"nickname\":\"vicky\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6506881202\",\"nickname\":\"leebai\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715934838276,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6511811241\",\"nickname\":\"uniapp - app\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709715070779,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6512556770\",\"nickname\":\"123321\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708051238733,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6513275013\",\"nickname\":\"æ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711433013139,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6516498277\",\"nickname\":\"AA\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711861769942,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6516684062\",\"nickname\":\"lucis\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6518420590\",\"nickname\":\"äŊį§æ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716198806025,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6519854131\",\"nickname\":\"hhoo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711937010546,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6522084706\",\"nickname\":\"jason\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6524017485\",\"nickname\":\"jie\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697524476044,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6531017055\",\"nickname\":\"a123456\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715003524657,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6531826562\",\"nickname\":\"im_love\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/6531826562/storage/emulated/0/Android/data/io.openim.android.demo/cache/1706596723436/1706596722663.jpg\",\"ex\":\"\",\"createTime\":1706596651202,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6536907751\",\"nickname\":\"tsl\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712542889847,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6537610017\",\"nickname\":\"111111\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705283838390,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6538167968\",\"nickname\":\"guodz123\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715334406747,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6539096974\",\"nickname\":\"sl\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705458960170,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6549189747\",\"nickname\":\"CodeMax\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700208645574,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6549643089\",\"nickname\":\"å¯äš\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710289203094,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6551973401\",\"nickname\":\"å°čž\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6554716140\",\"nickname\":\"shuinan\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702034652466,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6557841892\",\"nickname\":\"į´å\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713154899636,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6557880147\",\"nickname\":\"T\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714106449647,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6559013673\",\"nickname\":\"withitren\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715320788518,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6561826343\",\"nickname\":\"Muzikoud\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701743119891,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6561879012\",\"nickname\":\"Jack\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706616334495,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6564186011\",\"nickname\":\"mikeooye\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714835375334,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6567751477\",\"nickname\":\"čŊ鍿éŖ\",\"faceURL\":\"http://14.29.213.197:50002/object/6567751477/storage/emulated/0/Android/data/io.openim.android.demo/cache/1715432443767/1715432390804.png\",\"ex\":\"\",\"createTime\":1715432353005,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6568661215\",\"nickname\":\"éŋæ¨\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705246939442,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6569298083\",\"nickname\":\"iwtbam\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713871616548,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6571764694\",\"nickname\":\"åēäŊ å¤Ēįž\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/6571764694/1706086377280jpg\",\"ex\":\"\",\"createTime\":1706085949202,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6572366754\",\"nickname\":\"scy\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718110497743,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6574042397\",\"nickname\":\"test1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700466791726,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6579374753\",\"nickname\":\"hello\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715221888117,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6582408770\",\"nickname\":\"æˇĄæˇĄįįą\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6582718155\",\"nickname\":\"bbnnnn\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711333416377,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6585308853\",\"nickname\":\"įĢįš\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706517172771,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6585436255\",\"nickname\":\"Arimis\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716279420743,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6587366044\",\"nickname\":\"čˇ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717097514181,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6588136652\",\"nickname\":\"1551\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714374323651,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6588496447\",\"nickname\":\"a12345678\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6591504507\",\"nickname\":\"å¨ååĨæĩč¯\",\"faceURL\":\"http://14.29.213.197:50002/object/6591504507/1717934829011_mmexport1717915202644.jpg\",\"ex\":\"\",\"createTime\":1717777221518,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6592301142\",\"nickname\":\"æéčŋåčĒčēĢįĄŦ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713145158414,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6592334053\",\"nickname\":\"jack\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6592691219\",\"nickname\":\"įč¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700818176499,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6593158401\",\"nickname\":\"test5\",\"faceURL\":\"ic_avatar_06\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6593585083\",\"nickname\":\"test7\",\"faceURL\":\"ic_avatar_03\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6602728377\",\"nickname\":\"Q\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713941272122,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6605809249\",\"nickname\":\"ldq\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708657803827,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6605893249\",\"nickname\":\"县233\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715433509418,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6606496379\",\"nickname\":\"åģåģ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713867786907,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6608487604\",\"nickname\":\"Aaron\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707100565866,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6611636445\",\"nickname\":\"yaohaha\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708309043861,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6614558445\",\"nickname\":\"helchuan\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707014306385,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6616366600\",\"nickname\":\"mailong\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706412666462,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6618248076\",\"nickname\":\"jojojo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705735319821,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6621259604\",\"nickname\":\"Etwases\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711511191559,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6625451597\",\"nickname\":\"lk\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711266159633,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6627105296\",\"nickname\":\"yuka\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710488302365,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6628117309\",\"nickname\":\"įĨæĸéŖæē头\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698144857352,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6629808721\",\"nickname\":\"ccyydd\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715416584212,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6630888513\",\"nickname\":\"ææĻ大åģX\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6631065279\",\"nickname\":\"čščš\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714047764223,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6640200986\",\"nickname\":\"æĩč¯1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713333738983,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6640754016\",\"nickname\":\"æ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6642201111\",\"nickname\":\"edx\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709549763097,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6644481571\",\"nickname\":\"lucky\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715077089602,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6650213351\",\"nickname\":\"éäžŋ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699804129649,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6655870493\",\"nickname\":\"éååĻ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703741764112,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6658903475\",\"nickname\":\"zheng\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/6658903475/ic_voice_blue.webp\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6662856855\",\"nickname\":\"፿æ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714381131594,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6663129968\",\"nickname\":\"éžåžįŗæļ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712040761897,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6663875174\",\"nickname\":\"įąéŧ æ įįĢåĒ\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/6663875174/IMG_20221231_114836744.webp\",\"ex\":\"\",\"createTime\":1707121637376,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6665134423\",\"nickname\":\"cj\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699200060383,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6667078727\",\"nickname\":\"wangc\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700819184358,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6670339193\",\"nickname\":\"é\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711336909534,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6670746810\",\"nickname\":\"aylian\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717572559288,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6670760760\",\"nickname\":\"adsf0021\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710731384906,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6675598583\",\"nickname\":\"Alan\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715222394316,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6676873258\",\"nickname\":\"18862194354\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715043763911,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6677772576\",\"nickname\":\"åé\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6683875714\",\"nickname\":\"MARK DUANYASONG\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711522678663,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6685902642\",\"nickname\":\"æčå¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705416251273,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6686526228\",\"nickname\":\"111\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709033569300,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6687633010\",\"nickname\":\"åļåģē\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715130897906,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6688995137\",\"nickname\":\"zz\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706018260536,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6689518881\",\"nickname\":\"kk\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717724846160,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6691071198\",\"nickname\":\"éŋä¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700117832188,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6691486515\",\"nickname\":\"liuted\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715651172747,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6692484993\",\"nickname\":\"yy\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707031339084,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6693315961\",\"nickname\":\"RonyTest\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710295876747,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6699224388\",\"nickname\":\"liubaogang\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708736012028,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6699700239\",\"nickname\":\"cxk\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704964409439,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6700192964\",\"nickname\":\"li\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698829518783,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6700296582\",\"nickname\":\"j2\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713181038988,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6700520119\",\"nickname\":\"äŧéŖįčé
\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708333358034,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6703162622\",\"nickname\":\"xiaolin\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716548787025,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6704991652\",\"nickname\":\"Alex\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710732669041,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6712048605\",\"nickname\":\"å°åčą\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700621237897,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6719767483\",\"nickname\":\"åĻåĻåĻ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6720463717\",\"nickname\":\"dskjfdsfjieee\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708492786866,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6723382158\",\"nickname\":\"aaaa\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715404331854,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6723843756\",\"nickname\":\"å°į\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712822643184,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6726134118\",\"nickname\":\"įĻæĩˇ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717405293734,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6740911583\",\"nickname\":\"henry\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716816461725,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6741909723\",\"nickname\":\"Joe\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710995385122,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6742265687\",\"nickname\":\"jiaoshui\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715267408691,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6742554919\",\"nickname\":\"åå¤ä¸Ŋ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6746838054\",\"nickname\":\"Molex\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710335931809,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6753861572\",\"nickname\":\"Stan \",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/6753861572/t3.webp\",\"ex\":\"\",\"createTime\":1715607985465,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6754011874\",\"nickname\":\"rover\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714977762519,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6754137880\",\"nickname\":\"Test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705246010756,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6754912650\",\"nickname\":\"Kite\",\"faceURL\":\"ic_avatar_01\",\"ex\":\"\",\"createTime\":1705628215032,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6755720200\",\"nickname\":\"Lansong\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711972133736,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6760352680\",\"nickname\":\"locdee\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713943260019,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6761468459\",\"nickname\":\"test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711627035649,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6761872625\",\"nickname\":\"testli\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699410553569,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6763043356\",\"nickname\":\"įĒåŋčĢ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704524935652,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6765773509\",\"nickname\":\"hjgkjh\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6765812585\",\"nickname\":\"th\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709265812527,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6767809967\",\"nickname\":\"lee\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698682274394,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6767821294\",\"nickname\":\"Fly\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711352462736,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6768590754\",\"nickname\":\"\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697598298343,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6770102525\",\"nickname\":\"tester\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717664142955,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6772352172\",\"nickname\":\"Huang\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705645758653,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6773909696\",\"nickname\":\"įŠēåĻ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715428058473,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6778602686\",\"nickname\":\"፿æē\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717490977142,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6784987176\",\"nickname\":\"wei564104865\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713423669252,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6786364682\",\"nickname\":\"jj\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711010364808,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6787283652\",\"nickname\":\"blooming3\",\"faceURL\":\"http://14.29.213.197:50002/object/6787283652/įģæŋ.png\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6791203959\",\"nickname\":\"įĻģåĢ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716275517377,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6802380858\",\"nickname\":\"xiaolai\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702721053515,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6806887201\",\"nickname\":\"VV\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710126028451,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6806913128\",\"nickname\":\"lyn\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718250899614,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6808160177\",\"nickname\":\"myIM\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713836874391,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6811700180\",\"nickname\":\"夊įŠēäšå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6814913395\",\"nickname\":\"čæąé¸Ą\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715763620833,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6814929287\",\"nickname\":\"åĨŊæŗįĸįą\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715433269310,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6816903047\",\"nickname\":\"Blue\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699502345646,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6817618499\",\"nickname\":\"å¤įĻš\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703001556973,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6818425876\",\"nickname\":\"xiaoH\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711073917980,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6820141548\",\"nickname\":\"åŧæēåĄ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716541084394,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6820503013\",\"nickname\":\"Arlo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715135084857,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6821762379\",\"nickname\":\"æĩč¯ä¸ä¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717655245356,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6829726306\",\"nickname\":\"æææä¸ļæå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703659478693,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6830551855\",\"nickname\":\"bm\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6832510780\",\"nickname\":\"æģ´æ°´æĩˇæ´\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709011617296,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6833055175\",\"nickname\":\"ops\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702541912480,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6838907936\",\"nickname\":\"æįąæåŽļ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6839612396\",\"nickname\":\"soend\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702787132351,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6840115382\",\"nickname\":\"yshen\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712561905357,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6845692313\",\"nickname\":\"NPCæē\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711701147328,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6845749447\",\"nickname\":\"į¨į¨į¨\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710903879856,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6845802743\",\"nickname\":\"eahau\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716641073507,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6848013573\",\"nickname\":\"Læ°\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697698652673,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6848660331\",\"nickname\":\"åŧåĨ2\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714017096243,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6850614360\",\"nickname\":\"dahezi\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699336334668,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6857178107\",\"nickname\":\"top\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704591467046,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6858024107\",\"nickname\":\"Albert\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710320120447,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6859717785\",\"nickname\":\"éŖé¸äšéĒ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716275642713,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6863876045\",\"nickname\":\"haose\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704989624899,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6864422826\",\"nickname\":\"runrunaway\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/6864422826/45a58c66743c3e7d8b5d04cdbceca2c2.webp\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6868678037\",\"nickname\":\"åĸ¨č˛0109\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705459011683,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6871533486\",\"nickname\":\"æ
å¤\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714111710140,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6871953976\",\"nickname\":\"z-x\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698830121455,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6875431039\",\"nickname\":\"jason\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704639155030,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6875498620\",\"nickname\":\"lywang\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715937959177,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6878072504\",\"nickname\":\"breeze\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715136612927,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6880909295\",\"nickname\":\"1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6881072860\",\"nickname\":\"Habit\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713323875452,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6881124784\",\"nickname\":\"feng\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709172726389,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6881765283\",\"nickname\":\"56456\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712570860852,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6891659611\",\"nickname\":\"yooome\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715153397275,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6892010385\",\"nickname\":\"yinwu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700809414997,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6893239717\",\"nickname\":\"å°æĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704876393807,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6895745083\",\"nickname\":\"éå¤\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/6895745083/DALL¡E 2024-05-15 02.16.37 - A logo for 'TrueMeet' featuring a rainbow, chat bubble, and connection elements. Use an animal character to create the logo, incorporating the followi.webp\",\"ex\":\"\",\"createTime\":1715841841632,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6897470526\",\"nickname\":\"čžåĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713259403999,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6897615973\",\"nickname\":\"æŠå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715423301104,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6900099844\",\"nickname\":\"leo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715099354079,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6902718642\",\"nickname\":\"xuexi\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713938579218,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6904613543\",\"nickname\":\"æ°äēē\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713433217788,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6908614794\",\"nickname\":\"xxxxx\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711971884256,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6912850481\",\"nickname\":\"Noi_q\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701855008525,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6913797339\",\"nickname\":\"æŠčĩ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704854655582,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6919005317\",\"nickname\":\"éĒæ´\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715091139914,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6920562819\",\"nickname\":\"nitzhou\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709785041429,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6921798228\",\"nickname\":\"hzb.gg\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706523869119,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6923431604\",\"nickname\":\"AA\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6924019193\",\"nickname\":\"ai\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714302268617,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6924749515\",\"nickname\":\"yt\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713750685786,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6926376717\",\"nickname\":\"19\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702100963329,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6926553569\",\"nickname\":\"15300011990\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709881241263,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6928564866\",\"nickname\":\"zzz\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6932367570\",\"nickname\":\"yuu\",\"faceURL\":\"ic_avatar_02\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6933150383\",\"nickname\":\"jeson\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706757325270,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6935877903\",\"nickname\":\"7åĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713515522609,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6937796198\",\"nickname\":\"åŋĢåŋĢåŋĢ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714059254403,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6937921006\",\"nickname\":\"xingbang\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714218318348,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6938235669\",\"nickname\":\"faker\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718177340790,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6945956112\",\"nickname\":\"æąæĩˇ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702807187108,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6947004749\",\"nickname\":\"OpenIM\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713159811823,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6947312143\",\"nickname\":\"soft\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706816624977,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6949156540\",\"nickname\":\"snac21\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714007829025,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6953173171\",\"nickname\":\"hello world\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714007540375,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6955315855\",\"nickname\":\"Sakura\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706889554929,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6955901539\",\"nickname\":\"Jason\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715736868945,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6957081032\",\"nickname\":\"大įš\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709199118054,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6960387254\",\"nickname\":\"KKKKK\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708946432998,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6966123174\",\"nickname\":\"110\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705630216291,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6966528341\",\"nickname\":\"äšäš\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704521347676,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6968350970\",\"nickname\":\"Harris\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716261533713,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6975622953\",\"nickname\":\"789å\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708680441740,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6976438725\",\"nickname\":\"furt\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713582243790,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6977731474\",\"nickname\":\"jim001\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700650885136,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6981901637\",\"nickname\":\"xy\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/6981901637/ratio.webp\",\"ex\":\"\",\"createTime\":1699824509466,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6982573684\",\"nickname\":\"Duci\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706734963362,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6982682917\",\"nickname\":\"åŧæē\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718267449017,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6985501517\",\"nickname\":\"æčŊĻåļ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"6986682620\",\"nickname\":\"æĩč¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701659486588,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6986974936\",\"nickname\":\"yue\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703161932186,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6987095163\",\"nickname\":\"ZHOU\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711206974885,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6995831660\",\"nickname\":\"krmnxd\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701401757750,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"6996870296\",\"nickname\":\"abc\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714201912012,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7001714127\",\"nickname\":\"runner\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712573794876,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7004255923\",\"nickname\":\"bb0002\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709711098810,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7004902560\",\"nickname\":\"é´éŗ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711722965093,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7005397943\",\"nickname\":\"éŋįå°ŧ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716798135929,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7007140315\",\"nickname\":\"ãã\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715425493019,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7009038964\",\"nickname\":\"pcweb\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7009965934\",\"nickname\":\"đâË¡Íāŧ¡ÍË*\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7009965934/image_cropper_1697097350170.jpg\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7015565477\",\"nickname\":\"encore\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718114532552,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7017747629\",\"nickname\":\"aini\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715652922236,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7020398872\",\"nickname\":\"baymax\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704872313829,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7020890145\",\"nickname\":\"luke\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7020890145/image_cropper_1709902646740.jpg\",\"ex\":\"\",\"createTime\":1705233100549,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7024387472\",\"nickname\":\"xiaoming\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718172767329,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7030017741\",\"nickname\":\"čĄåž
\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715777761127,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7030029150\",\"nickname\":\"dongliming\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718193345041,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7030053653\",\"nickname\":\"a\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714043386892,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7032035559\",\"nickname\":\"忍\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7033422792\",\"nickname\":\"24\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711511601536,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7033712582\",\"nickname\":\"ååå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7034540317\",\"nickname\":\"zhangsan\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708307259322,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7036122900\",\"nickname\":\"čąåčéēģčļ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712051682152,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7043986051\",\"nickname\":\"å°åĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7044261595\",\"nickname\":\"mkluo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705042693801,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7047604147\",\"nickname\":\"xox\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710481618083,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7050217790\",\"nickname\":\"YCF\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715303082351,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7050707914\",\"nickname\":\"Sky\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714528204453,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7051996866\",\"nickname\":\"æĩŠæĨ \",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703668422548,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7052078762\",\"nickname\":\"yefeng\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706606545557,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7059211536\",\"nickname\":\"åŧ čŋ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703502681513,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7059286958\",\"nickname\":\"čŋæšäŧ æĨéŖįŦ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715432899667,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7059354914\",\"nickname\":\"MRQ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697600112646,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7060900658\",\"nickname\":\"vvlzxl\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698826665424,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7061967847\",\"nickname\":\"taodailin\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715240159269,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7062785586\",\"nickname\":\"Luguo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7063162002\",\"nickname\":\"Alan\",\"faceURL\":\"ic_avatar_06\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7065253893\",\"nickname\":\"åčąåĩ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712651105336,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7066654553\",\"nickname\":\"cucucu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715174296360,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7075754042\",\"nickname\":\"å¯äš123\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717666802929,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7081432967\",\"nickname\":\"weric\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714209304530,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7087139357\",\"nickname\":\"åį§åŊĻ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700187828327,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7095536673\",\"nickname\":\"qq\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701064561172,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7100149191\",\"nickname\":\"æįæäŧéš
\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717152872628,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7102401732\",\"nickname\":\"éŖéąŧ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700662783236,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7102928206\",\"nickname\":\"äēēåå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705066621385,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7104903347\",\"nickname\":\"aoaoku\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706512099018,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7109035547\",\"nickname\":\"čį¨\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703567262030,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7113374792\",\"nickname\":\"Brave\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718177968123,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7113648606\",\"nickname\":\"įåå¤å¤Š\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7121367305\",\"nickname\":\"éĸåēĻéš
éš
éš
\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707391045116,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7135884608\",\"nickname\":\"Sergio Lau\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7138502039\",\"nickname\":\"muwue\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718160465652,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7140502744\",\"nickname\":\"raintrip\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713969789381,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7146687293\",\"nickname\":\"įŧ¤įēˇ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7147058580\",\"nickname\":\"Brian\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709130066120,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7147685522\",\"nickname\":\"åå10\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7147734002\",\"nickname\":\"luban\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717597736723,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7149811761\",\"nickname\":\"nattygui\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716365225236,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7151327021\",\"nickname\":\"Emotion\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716000583649,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7151680921\",\"nickname\":\"äŊ įæäšį\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711419501171,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7152114427\",\"nickname\":\"Tyler\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709880405937,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7156262588\",\"nickname\":\"夊æ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716519573192,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7158015552\",\"nickname\":\"į˛é
\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709273014191,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7158302033\",\"nickname\":\"åļé¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715423295627,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7159773067\",\"nickname\":\"leon\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711519708388,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7160106831\",\"nickname\":\"čŖčļ
1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714907564090,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7162252799\",\"nickname\":\"moozhd\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704957403775,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7169497233\",\"nickname\":\"shusc234\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710983797823,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7169812899\",\"nickname\":\"zsg\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717681193429,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7175306389\",\"nickname\":\"Pink04\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709920043238,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7175450468\",\"nickname\":\"123\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710167090139,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7179657685\",\"nickname\":\"åš´čŊģįčį´å\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714486723310,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7182741443\",\"nickname\":\"æåŦæļ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715307255149,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7184761084\",\"nickname\":\"wufeng\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699405591536,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7204234695\",\"nickname\":\"iii\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698707131416,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7205422956\",\"nickname\":\"zuzu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717037018669,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7207090799\",\"nickname\":\"Mcdull\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709090541460,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7207940426\",\"nickname\":\"åĨŊæą\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705971773160,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7213865012\",\"nickname\":\"hayden\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704943989259,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7218786842\",\"nickname\":\"leo1124\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713860316075,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7218943329\",\"nickname\":\"leslie\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706581567147,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7219300529\",\"nickname\":\"kumi\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715869119747,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7221656928\",\"nickname\":\"ty\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716368339714,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7222221088\",\"nickname\":\"123\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714269586190,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7225662708\",\"nickname\":\"aider\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703644118980,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7226539074\",\"nickname\":\"test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700162100880,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7233905359\",\"nickname\":\"cccc\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7236965387\",\"nickname\":\"å\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709116025592,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7238628207\",\"nickname\":\"į§įĸą\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7240565210\",\"nickname\":\"test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705745672837,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7244572239\",\"nickname\":\"åŋäŊŋæšå°å\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7244572239/1710414154073_mmexport1686620696790.jpg\",\"ex\":\"\",\"createTime\":1710414025017,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7256209079\",\"nickname\":\"illusionriver\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702005928464,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7259365264\",\"nickname\":\"hechoujie\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715424059511,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7260321633\",\"nickname\":\"mayhong\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7262156914\",\"nickname\":\"kkk\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698980924335,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7263485679\",\"nickname\":\"yangchunping\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709003047064,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7264586802\",\"nickname\":\"åį\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7265842354\",\"nickname\":\"caicai\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715935477636,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7268355749\",\"nickname\":\"éŊ叿ĩĒå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716952599476,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7269047472\",\"nickname\":\"qwee\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713867549921,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7271132643\",\"nickname\":\"Hello\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708568261088,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7272954153\",\"nickname\":\"莞įŊŽåå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711420526265,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7275425646\",\"nickname\":\"viv\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711219141513,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7275557315\",\"nickname\":\"Shawn\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706150797538,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7276122859\",\"nickname\":\"YEPIN\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716776328406,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7276333667\",\"nickname\":\"éæ.æ˛Ŋé
\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715655275653,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7276945407\",\"nickname\":\"Conan\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718076481456,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7277603401\",\"nickname\":\"æĒæĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7283174825\",\"nickname\":\"Summer\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715214595811,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7283356015\",\"nickname\":\"Bill.H\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715308313080,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7285011959\",\"nickname\":\"čąæ č¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716186453201,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7288601605\",\"nickname\":\"æĩč¯123\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7288601605/1708227568242png\",\"ex\":\"\",\"createTime\":1706855267917,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7291159326\",\"nickname\":\"xiguzai123\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714035492066,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7291327778\",\"nickname\":\"6699\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705455474406,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7291693120\",\"nickname\":\"æĩč¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705052301492,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7295332773\",\"nickname\":\"s\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7296742515\",\"nickname\":\"čĩĩæč\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700188106595,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7297734806\",\"nickname\":\"xiao ye\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699517227487,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7298268529\",\"nickname\":\"openim733\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703036702153,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7302196202\",\"nickname\":\"hello\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710575516491,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7306283423\",\"nickname\":\"፿ˇ101\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706866075585,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7307615373\",\"nickname\":\"čļæŗå¨čĄŖ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716548048218,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7310569328\",\"nickname\":\"Ggg\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703647313834,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7315198048\",\"nickname\":\"Simon\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711606924229,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7319360351\",\"nickname\":\"pawn\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707461797051,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7319611102\",\"nickname\":\"wmouren\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708868589901,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7319695659\",\"nickname\":\"å°ä¸į大åĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711614388440,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7320145013\",\"nickname\":\"kiwi\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710495475458,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7325441690\",\"nickname\":\"å°ååĻ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717604870801,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7327635605\",\"nickname\":\"æĩč¯å°å§å§\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712026913836,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7332567178\",\"nickname\":\"äŋĄåˇ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7335137190\",\"nickname\":\"asdasd\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707136315369,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7337859180\",\"nickname\":\"tang\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715759298447,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7342127502\",\"nickname\":\"yinzhe\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711354991091,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7343731800\",\"nickname\":\"åŗé\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7343731800/垎äŋĄæĒåž_20240308173203.webp\",\"ex\":\"\",\"createTime\":1709889995288,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7345483146\",\"nickname\":\"im\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698818032477,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7347440370\",\"nickname\":\"åļįļ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708922256789,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7348642114\",\"nickname\":\"Freeman\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699935924566,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7351077360\",\"nickname\":\"ååå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714034122101,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7351810180\",\"nickname\":\"eva1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701070592960,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7353212978\",\"nickname\":\"åēˇåĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718074741375,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7357465056\",\"nickname\":\"åŧå°ä¸æčą\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705767712103,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7360686805\",\"nickname\":\"jole\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710228987984,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7363109030\",\"nickname\":\"fgv\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716388496263,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7363253608\",\"nickname\":\"yapero\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705990816247,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7364897573\",\"nickname\":\"dorisoy\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715147229207,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7366211705\",\"nickname\":\"vvv\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715271253771,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7368376836\",\"nickname\":\"xy\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705738172179,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7372422050\",\"nickname\":\"openIMUser\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7376958320\",\"nickname\":\"å˛å˛å˛\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699593411056,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7377769800\",\"nickname\":\"LogoRun\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709177829208,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7378315752\",\"nickname\":\"yb\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700815584391,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7380309120\",\"nickname\":\"fei\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701588901766,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7383684265\",\"nickname\":\"Nora\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710142442001,\"appMangerLevel\":0,\"globalRecvMsgOpt\":2},{\"userID\":\"7386489423\",\"nickname\":\"å¨éŧé\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712730351256,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7387576608\",\"nickname\":\"大æĸĻä¸é\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716877274850,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7387723009\",\"nickname\":\"zmg\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708485275985,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7388505150\",\"nickname\":\"ijijni\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710774428645,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7390780798\",\"nickname\":\"æ¸
éŖ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705566115592,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7390960328\",\"nickname\":\"tom\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702887219297,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7401184711\",\"nickname\":\"å°é
忝éæį\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698574260319,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7401733669\",\"nickname\":\"dooby\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715322856794,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7405212428\",\"nickname\":\"UndGott\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709602492677,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7410291177\",\"nickname\":\"åĨŊ大åŋ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705136372926,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7410632813\",\"nickname\":\"13670914701\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7412034038\",\"nickname\":\"yyyzzzz\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714268027329,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7412111847\",\"nickname\":\"Hollis\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710138968867,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7413274712\",\"nickname\":\"aaaa\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712913147041,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7417541042\",\"nickname\":\"æĻå°\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714039418300,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7420437735\",\"nickname\":\"jesen\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717634350975,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7421821939\",\"nickname\":\"æįŋ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708337114087,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7421889399\",\"nickname\":\"Jincheng\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7428005405\",\"nickname\":\"xyz\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715227034965,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7434856012\",\"nickname\":\"åįŦåˇ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717081189958,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7435508463\",\"nickname\":\"æĩč¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713610198471,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7436833627\",\"nickname\":\"åĻå¨åĻ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718173700987,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7437040692\",\"nickname\":\"Yyy\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705458203991,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7439021681\",\"nickname\":\"įį\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711074573709,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7439714986\",\"nickname\":\"äēæįĢį°\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708494573909,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7440672921\",\"nickname\":\"themass\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704776634866,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7451137864\",\"nickname\":\"lln\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712038794682,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7455859973\",\"nickname\":\"vijay\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716771975361,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7457097377\",\"nickname\":\"z\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707268843908,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7457544036\",\"nickname\":\"spanull\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715667378826,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7460559805\",\"nickname\":\"éįŗ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715758342178,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7464954417\",\"nickname\":\"test0018473\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709129718890,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7466050106\",\"nickname\":\"1215\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7471550680\",\"nickname\":\"å°åå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717045229376,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7472541978\",\"nickname\":\"echo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712674355855,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7475442514\",\"nickname\":\"蝿ĸ
\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706508446470,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7482603409\",\"nickname\":\"whilewon\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710335251672,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7493990096\",\"nickname\":\"niko\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7497299557\",\"nickname\":\"åąąįĒ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711682177473,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7497605401\",\"nickname\":\"Jane1\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7497605401/åąåšæĒåž 2024-05-15 110821.webp\",\"ex\":\"\",\"createTime\":1702881681528,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7497646189\",\"nickname\":\"186\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711095651786,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7498515000\",\"nickname\":\"Young\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712476326458,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7498542248\",\"nickname\":\"i\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7498920587\",\"nickname\":\"andthink123\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698807813353,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7503981720\",\"nickname\":\"6\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708420213456,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7505224623\",\"nickname\":\"kf\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715933929063,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7507197097\",\"nickname\":\"what\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712567786219,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7516710182\",\"nickname\":\"Youth\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710186406632,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7520656744\",\"nickname\":\"0\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716385336230,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7522269845\",\"nickname\":\"dot\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706669139329,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7523266932\",\"nickname\":\"cmw\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712629034143,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7526687004\",\"nickname\":\"åŽĸæ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717418379081,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7528402713\",\"nickname\":\"WWNNL\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713196028771,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7529372532\",\"nickname\":\"åæåé\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715830364153,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7530200728\",\"nickname\":\"deem\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714099772110,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7534564044\",\"nickname\":\"test001\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711802176180,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7537628670\",\"nickname\":\"čĨæ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703121514621,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7537715718\",\"nickname\":\"å¯įą\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713340435319,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7537716241\",\"nickname\":\"test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710382151678,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7540355701\",\"nickname\":\"gggg\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7540355701/private/var/mobile/Containers/Data/Application/66111B4C-155C-4033-872D-7C0486D72283/tmp/image_cropper_A6D2BF20-9FEC-44B0-8B12-780E3213294C-8280-000002D8A34E59CA.jpg\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":2},{\"userID\":\"7542365341\",\"nickname\":\"test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712304945222,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7546299014\",\"nickname\":\"sshshshshs\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718266629505,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7546355222\",\"nickname\":\"į\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713497548909,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7547312758\",\"nickname\":\"danying\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700451286799,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7548971598\",\"nickname\":\"peng\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7548971598/image_cropper_1712467789049.jpg\",\"ex\":\"\",\"createTime\":1710313150789,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7548985362\",\"nickname\":\"ppppphbh\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714991240785,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7551761509\",\"nickname\":\"9497\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716186847151,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7552860065\",\"nickname\":\"æ¨æ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714222912432,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7552997387\",\"nickname\":\"lcj\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7563312911\",\"nickname\":\"klen\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702001164183,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7564012880\",\"nickname\":\"5249\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700620787902,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7567294877\",\"nickname\":\"sheng\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708329058553,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7568242587\",\"nickname\":\"yi7u\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711609509272,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7569247517\",\"nickname\":\"Hhh\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706067936049,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7580742612\",\"nickname\":\"yuiye\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713407910634,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7583295966\",\"nickname\":\"zkt\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715134109696,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7586062692\",\"nickname\":\"ååå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713279978383,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7587745030\",\"nickname\":\"éčĄŋ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712463894831,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7588612675\",\"nickname\":\"į§į§\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701828356899,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7589005247\",\"nickname\":\"alpacino\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718097644298,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7591217919\",\"nickname\":\"Zahin\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706254506151,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7592899422\",\"nickname\":\"å°éŦŧ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715444106870,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7594017872\",\"nickname\":\"2211\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716097395317,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7595717000\",\"nickname\":\"zuifufengxue\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701040425132,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7595722240\",\"nickname\":\"ben\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712848126171,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7597673862\",\"nickname\":\"éŋå
¨\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711009402619,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7597689214\",\"nickname\":\"æč§\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705234013596,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7598489536\",\"nickname\":\"æį\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715431650284,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7598799824\",\"nickname\":\"jiajia\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713153476852,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7601958347\",\"nickname\":\"1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704870463839,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7608360478\",\"nickname\":\"w\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701413600401,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7609581785\",\"nickname\":\"į¯įĢéį\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7609581785/qq.webp\",\"ex\":\"\",\"createTime\":1717655551401,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7614708020\",\"nickname\":\"Darcy4537\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706080573958,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7616246303\",\"nickname\":\"éæŗäēē\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717752523431,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7617553749\",\"nickname\":\"wusm\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716278441176,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7619603154\",\"nickname\":\"Will\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714832896535,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7620665389\",\"nickname\":\"Robert\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705134238122,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7622429074\",\"nickname\":\"carlos\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712807882775,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7623650329\",\"nickname\":\"guoshaobao\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713486274190,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7625288814\",\"nickname\":\"gaga\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700462882831,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7626760720\",\"nickname\":\"123\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715756060939,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7626981398\",\"nickname\":\"z\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7638046648\",\"nickname\":\"stelle\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713429449052,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7638679939\",\"nickname\":\"huey\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717734033901,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7640096597\",\"nickname\":\"įŊéŠŦ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711464432485,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7643653997\",\"nickname\":\"åĨæžįå°éžčž\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708499154455,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7644290746\",\"nickname\":\"į§Ļå¸
\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7644290746/image_cropper_1700186280345.jpg\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7645589134\",\"nickname\":\"Holiday\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7645589134/1714270067250jpg\",\"ex\":\"\",\"createTime\":1712475616099,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7646760743\",\"nickname\":\"Ray\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710676364986,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7650768661\",\"nickname\":\"hsb\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717605746405,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7651888817\",\"nickname\":\"11111\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716868279225,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7652778337\",\"nickname\":\"bulita\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710316464319,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7657717068\",\"nickname\":\"įå¨\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715657433530,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7663168591\",\"nickname\":\"大æĩˇ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703064351474,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7664966167\",\"nickname\":\"įŊå¤Šä¸æå¤įéģ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699262948472,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7666852933\",\"nickname\":\"123122\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703675565723,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7668827828\",\"nickname\":\"I'm a fan\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7671876973\",\"nickname\":\"æēäēæēäē\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715763088026,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7672451658\",\"nickname\":\"čĄčĩ°įįĩéŖæ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708507371969,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7672563564\",\"nickname\":\"xixi\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7672563564/86ad8ec8088443769b181f46cbee52de.webp\",\"ex\":\"\",\"createTime\":1716630704422,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7673707661\",\"nickname\":\"čĨčĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706250313024,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7674566777\",\"nickname\":\"wgxweb\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718101195673,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7681112296\",\"nickname\":\"ricardo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708499667981,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7681600518\",\"nickname\":\"ddd\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715411001879,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7683585131\",\"nickname\":\"vam\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715933798084,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7686286348\",\"nickname\":\"qwe\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712492200935,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7687164838\",\"nickname\":\"brooks\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702090729661,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7687371321\",\"nickname\":\"sunnysteam\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7687371321/image.webp\",\"ex\":\"\",\"createTime\":1702373726194,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7687657759\",\"nickname\":\"liu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698633906924,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7688471458\",\"nickname\":\"AMOG\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699967043859,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7690669440\",\"nickname\":\"wukd\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707122436871,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7690891476\",\"nickname\":\"gzy666\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712464189166,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7692607035\",\"nickname\":\"įĨčĄč
\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710138011365,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7693122919\",\"nickname\":\"æå¤´éŖåš\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710757549381,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7695096009\",\"nickname\":\"åŽæ\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7695096009/1711431501677png\",\"ex\":\"\",\"createTime\":1711418412958,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7700927556\",\"nickname\":\"åĻ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717575003169,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7705431741\",\"nickname\":\"yun\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7706735929\",\"nickname\":\"å°äģ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705969077500,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7713778154\",\"nickname\":\"zy\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712136769169,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7718471566\",\"nickname\":\"å°įąŗ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7720758526\",\"nickname\":\"simon1121\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712712113061,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7723567114\",\"nickname\":\"apeng\",\"faceURL\":\"ic_avatar_05\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7724890013\",\"nickname\":\"msbolang\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705903520648,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7725196248\",\"nickname\":\"Sam\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712742508663,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7735663030\",\"nickname\":\"åå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713427097847,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7735805334\",\"nickname\":\"jst4me\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712634394183,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7738761244\",\"nickname\":\"é¸ŋčžž\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714980228997,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7739798150\",\"nickname\":\"æå¤į\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707978099296,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7740091536\",\"nickname\":\"panguclick\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712758128541,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7742247612\",\"nickname\":\"xiaok\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699760498861,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7743491557\",\"nickname\":\"éļ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715223869583,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7743820010\",\"nickname\":\"å´į123\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707205720311,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7744500881\",\"nickname\":\"wx\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702429537111,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7746006896\",\"nickname\":\"ldt\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718162168320,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7748421044\",\"nickname\":\"䏿ĩˇįįŽĄåą\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7752672529\",\"nickname\":\"Goodie\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713195749669,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7760208560\",\"nickname\":\"éåŊĻ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713426789856,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7763239948\",\"nickname\":\"Ven\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710550214216,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7772289742\",\"nickname\":\"åįļ\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7772289742/u=256816879,771155532\\u0026fm=253\\u0026fmt=auto\\u0026app=120\\u0026f=JPEG.webp\",\"ex\":\"\",\"createTime\":1711090323357,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7773809772\",\"nickname\":\"å
å
\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706664449949,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7775655960\",\"nickname\":\"፿ˇ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718161377972,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7782213970\",\"nickname\":\"xzc\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706942469942,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7788742199\",\"nickname\":\"Caixinfeng\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697648462375,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7794187489\",\"nickname\":\"åŧ ä¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716192791068,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7795360622\",\"nickname\":\"qeerdd\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715418384944,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7802400332\",\"nickname\":\"įŦ¨įĢ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710487620720,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7804901425\",\"nickname\":\"a7373773\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718004859094,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7805584149\",\"nickname\":\"Jhonor\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712842129703,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7819384782\",\"nickname\":\"yun666\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698668875130,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7820542710\",\"nickname\":\"äŧ大įįĨåŊ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699151158413,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7821370665\",\"nickname\":\"éč¸éĒ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711260867497,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7821811338\",\"nickname\":\"æåŋč§æ§\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715830048027,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7821875317\",\"nickname\":\"wongwen\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717660275512,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7827297461\",\"nickname\":\"Unimsc\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711199556246,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7828193903\",\"nickname\":\"ååå\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7828193903/21.webp\",\"ex\":\"\",\"createTime\":1705902032553,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7829456745\",\"nickname\":\"åŋĩä¸ļ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715847461446,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7831969873\",\"nickname\":\"aaapei\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700729575314,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7832427972\",\"nickname\":\"įŽč\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717666961587,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7835799312\",\"nickname\":\"kiss\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712126421992,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7838322353\",\"nickname\":\"å°čž\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712024798434,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7839142209\",\"nickname\":\"xx\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706801253212,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7841293205\",\"nickname\":\"tutuba\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715226807526,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7845216380\",\"nickname\":\"äŊįŗč¯åĸ¨åĸ¨\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717120185361,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7847107135\",\"nickname\":\"mao\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711637971571,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7848167680\",\"nickname\":\"web-open\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710378807451,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7848975164\",\"nickname\":\"duyuxuan\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712329611833,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7849831301\",\"nickname\":\"003\",\"faceURL\":\"http://14.29.213.197:50002/object/7849831301/flutter_android_qrcode.png\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7849988024\",\"nickname\":\"11111\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717749386291,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7852754787\",\"nickname\":\"Set\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704516804335,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7853258354\",\"nickname\":\"æĩˇįēŗįžåˇ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714906098450,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7853514710\",\"nickname\":\"lcn\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708484161878,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7854235526\",\"nickname\":\"č\",\"faceURL\":\"ic_avatar_06\",\"ex\":\"\",\"createTime\":1705993242670,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7854288559\",\"nickname\":\"test1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709725146220,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7856252983\",\"nickname\":\"Ayao\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705652800128,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7856301343\",\"nickname\":\"é¨į°\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710742593630,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7859279941\",\"nickname\":\"nika\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717463411991,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7863511599\",\"nickname\":\"we123\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711957346177,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7863641493\",\"nickname\":\"cary\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711678045306,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7864246599\",\"nickname\":\"abelwei123\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706082768011,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7864780164\",\"nickname\":\"大įåĢææĨåˇĄåąą\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7864780164/image_cropper_1711359857083.jpg\",\"ex\":\"\",\"createTime\":1702275463367,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7864796432\",\"nickname\":\"æĨåŖéžæĨ\",\"faceURL\":\"ic_avatar_01\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7867796641\",\"nickname\":\"Yakult\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709640648627,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7872751431\",\"nickname\":\"åŧ æ˛ģčļ
\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7873990031\",\"nickname\":\"zzk\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7881930526\",\"nickname\":\"flyshines\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711843222198,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7882581966\",\"nickname\":\"333\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703127213679,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7882873434\",\"nickname\":\"åč§\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709267111396,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7883407249\",\"nickname\":\"夿\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715320972102,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7883425769\",\"nickname\":\"åŽæš\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714276127759,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7884892250\",\"nickname\":\"12su\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699262772066,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7885995213\",\"nickname\":\"åŽ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713503412341,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7886158239\",\"nickname\":\"Dian\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716970245821,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7894596798\",\"nickname\":\"SKAIXX\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710303202257,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7899640700\",\"nickname\":\"åå˛å¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706688418577,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7908367677\",\"nickname\":\"oyl\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699328553016,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7910017356\",\"nickname\":\"NoDoes\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715149203846,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7910323746\",\"nickname\":\"amber001\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714037706548,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7916509152\",\"nickname\":\"zergmk2\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707271649632,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7920004051\",\"nickname\":\"a\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716949519075,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7924475094\",\"nickname\":\"eR.Lang\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708913411362,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7931463251\",\"nickname\":\"č¯į¨æŗ¨å\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710315124019,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7933792440\",\"nickname\":\"æåŽ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717160177257,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7935004142\",\"nickname\":\"muzishan\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709965063602,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7937047670\",\"nickname\":\"atom\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712023808800,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7939778002\",\"nickname\":\"eee\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711441429339,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7940483102\",\"nickname\":\"Funny\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704682378575,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7940823833\",\"nickname\":\"qs\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708512178221,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7943196334\",\"nickname\":\"Take\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708609609341,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7948102945\",\"nickname\":\"nn\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715146766340,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7953410222\",\"nickname\":\"erlking\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716643779000,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7963718443\",\"nickname\":\"mach\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710834454545,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7965689513\",\"nickname\":\"rabbit\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700534969645,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7966350266\",\"nickname\":\"huangyh\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708610512613,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7968032251\",\"nickname\":\"chenyiming@ticatch.com\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7968032251/image_cropper_1702970453357.jpg\",\"ex\":\"\",\"createTime\":1702374101125,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7971745226\",\"nickname\":\"11\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718153907730,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7977523116\",\"nickname\":\"ljs\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713765747550,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7978095612\",\"nickname\":\"ä¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716968826921,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7983666862\",\"nickname\":\"joe\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7983666862/horse.webp\",\"ex\":\"\",\"createTime\":1713338662293,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7986340950\",\"nickname\":\"ååĨå°éąŧ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710746170007,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7989321704\",\"nickname\":\"įĻįįš\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699337701054,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"7992150449\",\"nickname\":\"bangeel\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705178611476,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"7999383414\",\"nickname\":\"shon\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711207576408,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8001403844\",\"nickname\":\"å
ļ厞\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701999521754,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8001502447\",\"nickname\":\"åž\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8002441294\",\"nickname\":\"Pearson\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/8002441294/éŖæ¯1.webp\",\"ex\":\"\",\"createTime\":1708393869655,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8002908818\",\"nickname\":\"GateCross\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711442951885,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8003800642\",\"nickname\":\"大å\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704709074114,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8004543435\",\"nickname\":\"č¯č¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709876612550,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8005444087\",\"nickname\":\"alvin\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705372374072,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8007107275\",\"nickname\":\"David\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718200392695,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8010325165\",\"nickname\":\"hclabxing\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703641796134,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8014326203\",\"nickname\":\"123\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706089271649,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8014370177\",\"nickname\":\"duyun\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715761349802,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8014785059\",\"nickname\":\"TOM\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705206057915,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8016586723\",\"nickname\":\"laster\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712588145290,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8016920139\",\"nickname\":\"åæĒå°č´¤\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699321187894,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8019506801\",\"nickname\":\"123\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705913530827,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8019770129\",\"nickname\":\"33\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705653479085,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8024594170\",\"nickname\":\"ä¸äēē\",\"faceURL\":\"ic_avatar_06\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8027945462\",\"nickname\":\"defortest\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714526535855,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8027972177\",\"nickname\":\"æ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712759785914,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8030188604\",\"nickname\":\"kk\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703660397630,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8032860565\",\"nickname\":\"zhiwen\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704789801039,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8035205991\",\"nickname\":\"åŧ \",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715423717520,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8035577893\",\"nickname\":\"æ¸
éŖ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705388948375,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8035733598\",\"nickname\":\"andy\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714116444674,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8039982396\",\"nickname\":\"test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711349206703,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8042010769\",\"nickname\":\"hhh\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700633543388,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8045511039\",\"nickname\":\"ččŋ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709737725541,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8046031043\",\"nickname\":\"vicent\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699801797995,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8046251549\",\"nickname\":\"åŽæĩŠæĩŠ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709783627725,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8046375945\",\"nickname\":\"å°ąäŊ éŖ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709099187581,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8046583538\",\"nickname\":\"čļå°čĒč´Ąäē\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711942936931,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8050675645\",\"nickname\":\"lenny\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699010472558,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8053445313\",\"nickname\":\"hy\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706877972973,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8054377408\",\"nickname\":\"aa\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712800729817,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8054772199\",\"nickname\":\"w003\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715431278850,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8055581136\",\"nickname\":\"åŦ夊å°äē\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702601955945,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8058212949\",\"nickname\":\"æĩč¯éŗéĸ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715327731581,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8059620844\",\"nickname\":\"DEMO\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718167497083,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8062088375\",\"nickname\":\"www\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713842019057,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8063035464\",\"nickname\":\"å°įŗå¤´\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714179678682,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8067185378\",\"nickname\":\"111\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713610524985,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8073435095\",\"nickname\":\"7597\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715682385286,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8075032607\",\"nickname\":\"Mr.Wang\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713940409275,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8084106990\",\"nickname\":\"skytop\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699249114223,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8086917283\",\"nickname\":\"HZL-ä¸įĨåæŠįå¸å
\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713920456522,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8087242742\",\"nickname\":\"įĢĨåĨåĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697613913272,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8097498221\",\"nickname\":\"Qq\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718101823065,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8097902004\",\"nickname\":\"koala\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717650616739,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8100796382\",\"nickname\":\"hholqiwh\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715255922736,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8103868360\",\"nickname\":\"夿\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8108968441\",\"nickname\":\"benson\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718161915369,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8111508018\",\"nickname\":\"Sera\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714581857888,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8112346923\",\"nickname\":\"éąŧéąŧ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707057446719,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8113999096\",\"nickname\":\"abcd\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697723330886,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8120706844\",\"nickname\":\"äŊ åĨŊ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698807708162,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8122384069\",\"nickname\":\"zouzhouzhou\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716542874286,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8122645018\",\"nickname\":\"god\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716646838029,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8126770108\",\"nickname\":\"æå¤§å¤§\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712472705105,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8130195053\",\"nickname\":\"a\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713000738984,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8130294134\",\"nickname\":\"æŽį§\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703155035271,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8131886443\",\"nickname\":\"æĻæ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702431391722,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8132082620\",\"nickname\":\"liu12345\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698991678824,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8132192086\",\"nickname\":\"wei\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718267787232,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8133515450\",\"nickname\":\"éģéŋį´čĩéĢ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715791288726,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8135354869\",\"nickname\":\"é
ˇåŋ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703399418762,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8141443295\",\"nickname\":\"IMtest\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714240345988,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8141818865\",\"nickname\":\"åįŋ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712651295731,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8151192752\",\"nickname\":\"lhy\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707096617441,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8152315569\",\"nickname\":\"damian\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717134414726,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8154138523\",\"nickname\":\"åĨŊäš
\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712477031597,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8156807776\",\"nickname\":\"hello\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714752959029,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8157216998\",\"nickname\":\"123\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716617596577,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8160058880\",\"nickname\":\"æįĸ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715870461626,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8160095492\",\"nickname\":\"æĩč¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714289017852,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8166932809\",\"nickname\":\"įå¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715610377057,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8167633898\",\"nickname\":\"awen\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698679163972,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8169511346\",\"nickname\":\"æŗæ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697594593580,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8170675637\",\"nickname\":\"åģēįŗģååæ \",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713947434220,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8172345347\",\"nickname\":\"åŧ åŧ åŧ \",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709116508954,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8180241502\",\"nickname\":\"QWE\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/8180241502/1.webp\",\"ex\":\"\",\"createTime\":1706079494914,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8182249376\",\"nickname\":\"leo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705456417157,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8186105078\",\"nickname\":\"cc\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713854282140,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8187575584\",\"nickname\":\"åĨåŋ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715599056690,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8189440989\",\"nickname\":\"tbc\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710755618326,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8190298841\",\"nickname\":\"häŊ åĨŊ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705893684018,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8193549184\",\"nickname\":\"æĨæĨæĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710761674892,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8197784678\",\"nickname\":\"Eric\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714295517166,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8203292432\",\"nickname\":\"alex\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708225746833,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8207174748\",\"nickname\":\"www\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712735908683,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8210397277\",\"nickname\":\"RoinbowZing\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708928472151,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8211720551\",\"nickname\":\"test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715389632014,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8213594817\",\"nickname\":\"boys\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712977804065,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8215486465\",\"nickname\":\"tao\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711528996376,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8216642294\",\"nickname\":\"å¤Ēéŗ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717053430184,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8217169171\",\"nickname\":\"gsh\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715230318867,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8217784296\",\"nickname\":\"123zxcsss\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712814996181,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8219584363\",\"nickname\":\"å§å§æĨå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711372978560,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8220710471\",\"nickname\":\"daluhuo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713567115349,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8222037249\",\"nickname\":\"yunfeng\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713236936670,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8222979522\",\"nickname\":\"æ´éĄ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715422703342,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8223657315\",\"nickname\":\"æĩč¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8223705362\",\"nickname\":\"čļ
įē§čžįąŗ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717229123244,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8228094145\",\"nickname\":\"xiaoming\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706879691713,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8228097998\",\"nickname\":\"å°åģē\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717600800057,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8229812969\",\"nickname\":\"æ˛å°įåĄæčĸ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715440040534,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8231032558\",\"nickname\":\"111111\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699264810975,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8233508874\",\"nickname\":\"etsail\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714126820330,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8235499624\",\"nickname\":\"kkkk\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708431401899,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8235631682\",\"nickname\":\"åŧ æŦJobs\",\"faceURL\":\"http://14.29.213.197:50002/object/8235631682/1716369214002_d61c841855aff397f43ea48568fc29d4.jpg\",\"ex\":\"\",\"createTime\":1716368507340,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8242204929\",\"nickname\":\"liu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709869389040,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8246905074\",\"nickname\":\"æ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708646627481,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8248153723\",\"nickname\":\"æĩč¯2\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713333872191,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8251671425\",\"nickname\":\"romero\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698895373919,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8253692052\",\"nickname\":\"å¤å¤Š\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698473456305,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8257796971\",\"nickname\":\"maocai\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8273990937\",\"nickname\":\"test8\",\"faceURL\":\"ic_avatar_05\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8277724734\",\"nickname\":\"å
æ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8281432408\",\"nickname\":\"Alex\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716371591821,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8288812105\",\"nickname\":\"vida\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702881634011,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8290926771\",\"nickname\":\"ččĩĩ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715763561872,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8303454241\",\"nickname\":\"tmz\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716445980628,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8309118101\",\"nickname\":\"äēčž\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701997042876,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8309865529\",\"nickname\":\"Hbhh\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708504088336,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8310010694\",\"nickname\":\"charles\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8310070431\",\"nickname\":\"éäŧé\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705850453387,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8311991667\",\"nickname\":\"įéĄŋ7999999999999999999999999999999999999999999999999999999\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/8311991667/data/user/0/cn.rentsoft.openim.flutter.rtc/cache/image_cropper_1693303487351.jpg\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8313094015\",\"nickname\":\"Daodao\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713147843291,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8317468172\",\"nickname\":\"test\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/8317468172/digital_art_CG_wallpaper_cyril_van_der_haegen_01.webp\",\"ex\":\"\",\"createTime\":1703328506135,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8319353787\",\"nickname\":\"ä¸äēäēäš\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708396778131,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8322698564\",\"nickname\":\"wolis\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707755876979,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8327482141\",\"nickname\":\"é大č\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704525170627,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8327820770\",\"nickname\":\"lin\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715319165822,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8328543245\",\"nickname\":\"chw\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702982760586,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8328850356\",\"nickname\":\"1213William\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/8328850356/į°å¤Ēįŧ1.webp\",\"ex\":\"\",\"createTime\":1717397830165,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8329982339\",\"nickname\":\"ww\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713856175395,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8331569195\",\"nickname\":\"čžå§\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716276622704,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8335825785\",\"nickname\":\"helloworld1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717482869029,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8337539661\",\"nickname\":\"goln\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710907181466,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8341999149\",\"nickname\":\"â
Š\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701766115448,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8342189311\",\"nickname\":\"yz\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717654609738,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8344051901\",\"nickname\":\"åŽå鸥\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/8344051901/ikun.webp\",\"ex\":\"\",\"createTime\":1710412968647,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8346004149\",\"nickname\":\"curry\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714213865810,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8347503157\",\"nickname\":\"zbl\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702458065848,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8350518493\",\"nickname\":\"ä¸ä¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710483376748,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8351972815\",\"nickname\":\"ct2asdf\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713181427839,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8352206292\",\"nickname\":\"hhh\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712644980124,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8353064427\",\"nickname\":\"54thC\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705574199041,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8353160172\",\"nickname\":\"æžåŧæįˇįĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698311227778,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8353955233\",\"nickname\":\"æąĒ业\",\"faceURL\":\"ic_avatar_01\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8355159098\",\"nickname\":\"ä¸ä¸įĢ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709632500515,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8358518421\",\"nickname\":\"æĩč¯ä¸ä¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713496850341,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8359082623\",\"nickname\":\"455579367@qq.com\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698928486844,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8366012391\",\"nickname\":\"yzs\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8367461388\",\"nickname\":\"jinshi\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717168639262,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8372997122\",\"nickname\":\"sky\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709883391722,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8377093987\",\"nickname\":\"zhouht\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8381623910\",\"nickname\":\"openIMUser\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8382061243\",\"nickname\":\"wkb\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716864817626,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8384057593\",\"nickname\":\"xNie\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705461639038,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8384689749\",\"nickname\":\"laozudamo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718115125823,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8386666767\",\"nickname\":\"äŊčž\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708737144565,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8386793499\",\"nickname\":\"LBR\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711693642812,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8388063569\",\"nickname\":\"ganbb\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711780811008,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8389624275\",\"nickname\":\"įåĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704854590492,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8392406358\",\"nickname\":\"å°å˛ŗ\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/8392406358/storage/emulated/0/Android/data/io.openim.android.demo/cache/1705403678772/1705403675257.png\",\"ex\":\"\",\"createTime\":1705403628590,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8393853819\",\"nickname\":\"fengxici\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712037212169,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8395917828\",\"nickname\":\"444\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702270384298,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8396980904\",\"nickname\":\"Zeus\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700489899735,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8398865107\",\"nickname\":\"Dove\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717409649759,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8399956257\",\"nickname\":\"jq\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715147574972,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8400344163\",\"nickname\":\"Dreaming\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/8400344163/ef3cb816863aebc2cea4558ee4e09ab (1).webp\",\"ex\":\"\",\"createTime\":1710655753460,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8404373294\",\"nickname\":\"1Q86\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713884216982,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8407403125\",\"nickname\":\"chat\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/8407403125/image_cropper_1697447277122.jpg\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8409494864\",\"nickname\":\"saber\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715313134814,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8411599332\",\"nickname\":\"æ¨æ°\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715846860706,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8421561159\",\"nickname\":\"æ¨åįåŋ§äŧ¤\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700549574682,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8423008156\",\"nickname\":\"Brian\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/8423008156/image_cropper_1712464415807.jpg\",\"ex\":\"\",\"createTime\":1712463660079,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8426622833\",\"nickname\":\"xvane\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700727491328,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8427634569\",\"nickname\":\"jiii\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713089078413,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8428572486\",\"nickname\":\"qian\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715412401030,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8436024021\",\"nickname\":\"bt\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710416056911,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8436643404\",\"nickname\":\"test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702201476956,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8439362049\",\"nickname\":\"yooranchen\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709797444365,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8440760987\",\"nickname\":\"æŗå¤įåžåŧ ä¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8442809460\",\"nickname\":\"joe\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717236271886,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8443036798\",\"nickname\":\"å°åŖ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711077964606,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8443805897\",\"nickname\":\"huangpj\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704510356822,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8445041485\",\"nickname\":\"tang\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704903543246,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8445330073\",\"nickname\":\"常å¨åŋ\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/8445330073/image_cropper_1697321213194.jpg\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8446005763\",\"nickname\":\"äŊ åĨŊ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713601938657,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8446372231\",\"nickname\":\"åįąæ°\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715935127490,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8447534661\",\"nickname\":\"å°å¤Š\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716518282791,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8447585718\",\"nickname\":\"åąąå¤\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715334157492,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8447830068\",\"nickname\":\"soldier\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713509159117,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8448409603\",\"nickname\":\"Li yuan\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/8448409603/image_cropper_E9B09BD4-4AF6-45F4-9617-D1F9F5D47C14-1619-0000008CB406D173.jpg\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":2},{\"userID\":\"8450512511\",\"nickname\":\"howie\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705224275408,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8451470030\",\"nickname\":\"äŊŋį¨äēē1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8454189295\",\"nickname\":\"697919\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711336989302,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8455239611\",\"nickname\":\"ååšŗ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707202861636,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8455935596\",\"nickname\":\"sonriku\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708910591821,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8460084433\",\"nickname\":\"123\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708500928764,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8460784953\",\"nickname\":\"lean\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709657634975,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8463876330\",\"nickname\":\"éåå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8472084588\",\"nickname\":\"čļčļ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698374768636,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8474885327\",\"nickname\":\"äēåįŽ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714271705144,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8476059904\",\"nickname\":\"cheery\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704780122503,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8477220212\",\"nickname\":\"vbochao\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710461453803,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8477469958\",\"nickname\":\"kk\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717576576589,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8480505964\",\"nickname\":\"solar\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714964530217,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8485512774\",\"nickname\":\"xjdjjdjd\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":2},{\"userID\":\"8486013399\",\"nickname\":\"å čŊįēŋæĄFallingline\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703337417659,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8486574742\",\"nickname\":\"éŖé°\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716040718877,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8491654430\",\"nickname\":\"test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715148093939,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8491971056\",\"nickname\":\"lh\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718271688375,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8491976474\",\"nickname\":\"įįąŗæéĒ¨æą¤\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711636452531,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8492016735\",\"nickname\":\"åŧ ä¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715652115539,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8494962468\",\"nickname\":\"aå
蝴\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710077945031,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8500228563\",\"nickname\":\"kpskare\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717636496518,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8506767167\",\"nickname\":\"fujiaxing\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709115545919,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8506981030\",\"nickname\":\"hugang\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713942437673,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8513362072\",\"nickname\":\"armo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714966200168,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8513600314\",\"nickname\":\"lulu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697786715499,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8514393726\",\"nickname\":\"jack\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715409420498,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8518800133\",\"nickname\":\"å¨å
į\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712709160482,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8519918280\",\"nickname\":\"Bx\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700726429514,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8521256224\",\"nickname\":\"System \",\"faceURL\":\"ic_avatar_01\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8525520412\",\"nickname\":\"įæ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715324084211,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8527411023\",\"nickname\":\"sinsay\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714378009244,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8528240286\",\"nickname\":\"įéĻ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706603843100,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8528989010\",\"nickname\":\"mrG\\n\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8529766319\",\"nickname\":\"Mr.H\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713960230303,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8532602548\",\"nickname\":\"åĻäš åĻäš \",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697613949821,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8533102456\",\"nickname\":\"aries\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708589183775,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8535351180\",\"nickname\":\"tufei\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709904896553,\"appMangerLevel\":0,\"globalRecvMsgOpt\":2},{\"userID\":\"8536119014\",\"nickname\":\"é\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705476232712,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8542303515\",\"nickname\":\"1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705636346180,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8542573282\",\"nickname\":\"tiew\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700554971667,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8544654562\",\"nickname\":\"cj\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708407824507,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8550907162\",\"nickname\":\"kiki\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715713242857,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8551912178\",\"nickname\":\"éąŧéąŧ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715423677539,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8552815569\",\"nickname\":\"leg\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8558447046\",\"nickname\":\"ééĢåŗ°\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705150470606,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8558757778\",\"nickname\":\"åå°æŗĸ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709914921094,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8560487083\",\"nickname\":\"xxss\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715434149133,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8560709818\",\"nickname\":\"JoieLu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705303400269,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8560928083\",\"nickname\":\"HappyJohn\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713119261203,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8569604066\",\"nickname\":\"åĻåĻ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707185859658,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8571433263\",\"nickname\":\"ouhou\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703416274246,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8571544480\",\"nickname\":\"queue\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712836388475,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8573571335\",\"nickname\":\"test1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712827220143,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8578360952\",\"nickname\":\"x\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709796467633,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8580630933\",\"nickname\":\"įąŗéĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702273331614,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8583690065\",\"nickname\":\"why so diao\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708307074385,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8586878608\",\"nickname\":\"qing\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698921572790,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8592196566\",\"nickname\":\"äŊæåĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717580742501,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8595026997\",\"nickname\":\"æĩč¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698809051929,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8596140148\",\"nickname\":\"King\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698222295378,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8596270879\",\"nickname\":\"Eric-k\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705630684217,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8602919066\",\"nickname\":\"jeff123123\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699328028366,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8604696550\",\"nickname\":\"hhr\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715219051295,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8605733793\",\"nickname\":\"NoYo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703259044221,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8606367434\",\"nickname\":\"Halo117\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711600738548,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8607110044\",\"nickname\":\"Region\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708832794805,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8607773408\",\"nickname\":\"adam\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710799361814,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8612888823\",\"nickname\":\"imtiyan\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706079818573,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8613544365\",\"nickname\":\"äģģ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708389928576,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8614413702\",\"nickname\":\"isvictorli\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706789765920,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8627323715\",\"nickname\":\"åä¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715581789208,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8630184960\",\"nickname\":\"54wty\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715427979357,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8632216197\",\"nickname\":\"äŧ įģåæŗ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710296188012,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8633297465\",\"nickname\":\"7580\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706255386466,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8634312196\",\"nickname\":\"nuko\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713164340881,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8638304663\",\"nickname\":\"Joel\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8640390697\",\"nickname\":\"įąįæ´ģ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712794311684,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8640727499\",\"nickname\":\"gg\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708673031934,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8643787495\",\"nickname\":\"Cali Wang\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712824772755,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8645597251\",\"nickname\":\"Sagel1ke\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715433301753,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8651668431\",\"nickname\":\"Marj\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8655191799\",\"nickname\":\"éč§äŊ æ¯åŊ䏿ŗ¨åŽ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715430062947,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8658174960\",\"nickname\":\"kele\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712560417983,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8661722129\",\"nickname\":\"éé¨\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714050851536,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8662971476\",\"nickname\":\"åå\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/8662971476/storage/emulated/0/Android/data/io.openim.android.demo/cache/1712738191969.jpg\",\"ex\":\"\",\"createTime\":1712737999606,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8670587296\",\"nickname\":\"å°įįĢ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714185286647,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8673764134\",\"nickname\":\"123456\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697784917246,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8674470583\",\"nickname\":\"demo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697699221106,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8684237507\",\"nickname\":\"čĄå°\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715361126039,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8685038399\",\"nickname\":\"åŽä¸å°ŧ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716358957582,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8688389470\",\"nickname\":\"čé¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710045941488,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8690034954\",\"nickname\":\"įŊæ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706259515537,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8702643096\",\"nickname\":\"hahah\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703075753748,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8703200712\",\"nickname\":\"apple\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8703273727\",\"nickname\":\"bunianxia\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701422990731,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8704081460\",\"nickname\":\"aaaa\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699848201994,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8706087313\",\"nickname\":\"ou\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715154565275,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8707396681\",\"nickname\":\"yeebing\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712310567383,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8707676360\",\"nickname\":\"įčž\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697629524780,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8710375221\",\"nickname\":\"åĨŊåĨŊåĨŊ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717759667695,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8710553462\",\"nickname\":\"įäēå°\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715227131216,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8713397018\",\"nickname\":\"éĻéĻ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712558672064,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8715898882\",\"nickname\":\"7234\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8716098319\",\"nickname\":\"axlis\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702171817794,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8716428571\",\"nickname\":\"éŋä¸å°åˇ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700117939611,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8720844433\",\"nickname\":\"夊夊åä¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703152918172,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8726009685\",\"nickname\":\"æ´ģéˇé\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703739261435,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8728868295\",\"nickname\":\"éŗå
åĨŊ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8729072173\",\"nickname\":\"éčąĒ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711856492217,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8730568673\",\"nickname\":\"æĸ
ä¸\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/8730568673/storage/emulated/0/Android/data/io.openim.android.demo/cache/1702634052321/1702634048232.jpg\",\"ex\":\"\",\"createTime\":1702632330649,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8733936530\",\"nickname\":\"J1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713180832692,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8734166382\",\"nickname\":\"lululemon\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/8734166382/u=3570018058,3795593131\\u0026fm=253\\u0026fmt=auto\\u0026app=138\\u0026f=JPEG.webp\",\"ex\":\"\",\"createTime\":1699250840640,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8737115397\",\"nickname\":\"äģģå\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/8737115397/image_cropper_1706078028206.jpg\",\"ex\":\"\",\"createTime\":1705283900151,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8742211895\",\"nickname\":\"åŧåŋå°ąåĨŊ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702002637911,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8742676847\",\"nickname\":\"test01\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709721561105,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8744886846\",\"nickname\":\"Wan\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/8744886846/1705646572659_32fad69f716d07de3940bd509832d6643be07028_raw.jpg\",\"ex\":\"\",\"createTime\":1705645559834,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8745122471\",\"nickname\":\"jkn\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710571130272,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8747127597\",\"nickname\":\"fire888888\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715410808495,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8749558646\",\"nickname\":\"9935\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718096275700,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8753413980\",\"nickname\":\"taoshide1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714472425595,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8754850165\",\"nickname\":\"giming\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718164433102,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8755718549\",\"nickname\":\"zyx\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713550759290,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8756835768\",\"nickname\":\"å¨į\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714306251583,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8759251402\",\"nickname\":\"webinc\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711808734669,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8760812670\",\"nickname\":\"ckl\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715656167413,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8762493296\",\"nickname\":\"å°æ°\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716900978438,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8763788974\",\"nickname\":\"allen wong\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713507999731,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8770027856\",\"nickname\":\"yks\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709001171157,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8772228740\",\"nickname\":\"įŋå\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/8772228740/icon.png\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8773081922\",\"nickname\":\"bingo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8776392357\",\"nickname\":\"éŋæ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712138008266,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8777730167\",\"nickname\":\"åæ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715436852593,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8778175043\",\"nickname\":\"Stone\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715312651882,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8780182642\",\"nickname\":\"momo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711991468017,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8783516485\",\"nickname\":\"xialugui\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710747934671,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8785536899\",\"nickname\":\"åæ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707021918749,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8790335385\",\"nickname\":\"Smart\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702431484688,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8795307407\",\"nickname\":\"åįžįž\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700925764782,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8804352974\",\"nickname\":\"čŊĻåå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711465616040,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8804394305\",\"nickname\":\"大æäēŽ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710916960066,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8808621985\",\"nickname\":\"lg0812\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707128860991,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8810821200\",\"nickname\":\"夿æ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710210748168,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8811129708\",\"nickname\":\"åčč\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700186688115,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8816137600\",\"nickname\":\"嚸čŋįˇ\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/8816137600/storage/emulated/0/Android/data/io.openim.android.demo/cache/1701050023662/1701050020675.jpg\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8818424284\",\"nickname\":\"æ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705857575077,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8822537455\",\"nickname\":\"zzz\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700210359260,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8823387090\",\"nickname\":\"test0220\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708420193708,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8825966823\",\"nickname\":\"厍æ¯įš\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703318338893,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8834765444\",\"nickname\":\"shadow\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716517585272,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8835887772\",\"nickname\":\"zw\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8837652030\",\"nickname\":\"įĢįĒéįį\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712113631595,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8838551480\",\"nickname\":\"jeff\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715155194233,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8842425902\",\"nickname\":\"zell\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708305720085,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8843246052\",\"nickname\":\"wfwf\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712134778710,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8844820087\",\"nickname\":\"taibai\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715239394771,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8845469662\",\"nickname\":\"å¸
\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715839983724,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8849899924\",\"nickname\":\"testand\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714310313072,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8854356304\",\"nickname\":\"kayorl\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712904511877,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8856017589\",\"nickname\":\"wjq\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703559974667,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8861830064\",\"nickname\":\"akin\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711413584918,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8862348169\",\"nickname\":\"budou\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702713217412,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8864056106\",\"nickname\":\"æļĩéĩ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715182711327,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8864850031\",\"nickname\":\"test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714724214347,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8866143916\",\"nickname\":\"SakuraFubuki\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717551917299,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8867254112\",\"nickname\":\"æ°æ°\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712848184318,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8867850391\",\"nickname\":\"andrew\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8871211861\",\"nickname\":\"123\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701341495128,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8871946613\",\"nickname\":\"zzz\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713248870774,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8875139244\",\"nickname\":\"moran\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8879166186\",\"nickname\":\"PwJane\",\"faceURL\":\"http://14.29.213.197:50002/object/8879166186/storage/emulated/0/Android/data/io.openim.android.demo/cache/1715072796388/1715072794908.jpg\",\"ex\":\"\",\"createTime\":1705420518928,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8887175905\",\"nickname\":\"æļå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718207230134,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8888752880\",\"nickname\":\"2993150260\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699460019819,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8890058811\",\"nickname\":\"111\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715052460825,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8893611164\",\"nickname\":\"heihei\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/8893611164/storage/emulated/0/Android/data/io.openim.android.demo/cache/1713950734360/1713950733878.jpg\",\"ex\":\"\",\"createTime\":1713879419923,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8893615815\",\"nickname\":\"lin\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713537763179,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8895487701\",\"nickname\":\"ppzw\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715599338971,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8897379573\",\"nickname\":\"Jeson\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699462718133,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8900826469\",\"nickname\":\".ãã\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717571698967,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8902885136\",\"nickname\":\"HOPE\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715447923735,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8903011297\",\"nickname\":\"youth\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703335264376,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8904622411\",\"nickname\":\"user\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711203066228,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8906837393\",\"nickname\":\"chents\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718176504228,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8909124208\",\"nickname\":\"čå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8913400006\",\"nickname\":\"zzy\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714485009350,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8915465584\",\"nickname\":\"dsj\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715430999140,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8916321939\",\"nickname\":\"æ˛Ąææĩį§°\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8920262959\",\"nickname\":\"simon\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702983357240,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8923283070\",\"nickname\":\"äēéĄé\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700186059520,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8929623425\",\"nickname\":\"rainey\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705109035249,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8929662634\",\"nickname\":\"SteveChen\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705161080838,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8930133512\",\"nickname\":\"ahmad\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8930791679\",\"nickname\":\"varphp\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713385062665,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8933317719\",\"nickname\":\"į¯å\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702980747695,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8935113461\",\"nickname\":\"halo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706689569218,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8938639079\",\"nickname\":\"äēåĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709639745829,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8941452423\",\"nickname\":\"å čŊįå°å
å\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707010604294,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8942102453\",\"nickname\":\"å°įž\",\"faceURL\":\"http://14.29.213.197:50002/object/8942102453/storage/emulated/0/Android/data/io.openim.android.demo/cache/1717181484376/1717181471051.png\",\"ex\":\"\",\"createTime\":1717167964529,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8947488684\",\"nickname\":\"æ
æ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714986978808,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8954088752\",\"nickname\":\"mm\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716218534630,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8960131587\",\"nickname\":\" éŖ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715134647558,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8962513708\",\"nickname\":\"Eugene \",\"faceURL\":\"/storage/emulated/0/Pictures/1695466636852.jpg\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8965027422\",\"nickname\":\"éŠåšŋæ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712992387393,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8968372134\",\"nickname\":\"ååĨŗåŠįå°įĢæ´\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8968471931\",\"nickname\":\"åå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8970340990\",\"nickname\":\"éģåĨŊåĨŊ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717557514449,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8970561974\",\"nickname\":\"mikasa\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706162707261,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8973956467\",\"nickname\":\"\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698054561490,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8977536940\",\"nickname\":\"zhaorongrong\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718072628566,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8983932611\",\"nickname\":\"gawfi\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718189260590,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8985349171\",\"nickname\":\"įžįˇå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705567345388,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8989584694\",\"nickname\":\"186\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713497759083,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"8995127909\",\"nickname\":\"įŊåå¤\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/8995127909/jhk-1700186287275.webp\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"8996361146\",\"nickname\":\"ygl\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713324565111,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9000953253\",\"nickname\":\"panghu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706321588310,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9003478301\",\"nickname\":\"hiworld\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718173793299,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9003815934\",\"nickname\":\"lin\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705039334757,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9007292080\",\"nickname\":\"admin1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717569151857,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9010532005\",\"nickname\":\"Boots\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9020451503\",\"nickname\":\"Leo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717319826066,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9020580531\",\"nickname\":\"wanna\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702966391831,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9025203324\",\"nickname\":\"æ´å¤Šäž\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709758490855,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9027590510\",\"nickname\":\"éĒįŗ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715650982912,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9029297866\",\"nickname\":\"Brabem\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/9029297866/image_cropper_B9E61D5D-92C1-4141-BAF0-6CE4A81749C9-65204-00002A7765C42B49.jpg\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9032177660\",\"nickname\":\"hys\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705976574716,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9034112568\",\"nickname\":\"å°éš\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697706565400,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9037074021\",\"nickname\":\"fctest\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715995140922,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9037264818\",\"nickname\":\"openIMUser\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9040385718\",\"nickname\":\"ååį\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701667509432,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9040944073\",\"nickname\":\"å´é¯åŠ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9044201385\",\"nickname\":\"æå¤§\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706077081386,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9045616204\",\"nickname\":\"åįĨĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700124095439,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9049515564\",\"nickname\":\"QQ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715396241791,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9051266058\",\"nickname\":\"1321čŗæĩ2\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715756783801,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9056140426\",\"nickname\":\"raymond-lee\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717747026305,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9067017669\",\"nickname\":\"Wyn11\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710557204578,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9068307497\",\"nickname\":\"1258\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711521428909,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9068605463\",\"nickname\":\"dongjie\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709003250065,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9070071192\",\"nickname\":\"lllo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710294272760,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9071076459\",\"nickname\":\"å°åŽå¸Ŋ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718124975989,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9080019804\",\"nickname\":\"Mr.Hanyee\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716988987895,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9080128965\",\"nickname\":\"pokid\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712909171904,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9082391908\",\"nickname\":\"įĨæŽåŊĄ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714128085117,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9083542109\",\"nickname\":\"äŊ åĨŊ2åˇ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698814973404,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9085091731\",\"nickname\":\"åå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718175454671,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9089447149\",\"nickname\":\"åæĨčĩ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709103781246,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9090358505\",\"nickname\":\"qwer\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709196087715,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9096135733\",\"nickname\":\"éύ鍿æ´\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717306308284,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9100792481\",\"nickname\":\"ä¸įĨé\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9103065505\",\"nickname\":\"Luck66668\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716865630774,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9105258430\",\"nickname\":\"Himan\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709099535079,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9107290642\",\"nickname\":\"sky\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715322980882,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9114286848\",\"nickname\":\"ä¸äēééŖ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713952159575,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9116950939\",\"nickname\":\"001\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9118393507\",\"nickname\":\"admin\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718201228875,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9118795910\",\"nickname\":\"so2liu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710553484066,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9119188102\",\"nickname\":\"www\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711591016202,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9131370628\",\"nickname\":\"GodShit\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9135721405\",\"nickname\":\"ting\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/9135721405/image_cropper_1697442723972.jpg\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9135822963\",\"nickname\":\"å°åčą\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697771653404,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9141546417\",\"nickname\":\"linkan\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701757723856,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9145170670\",\"nickname\":\"chenzhip_1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716081398227,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9147986978\",\"nickname\":\"æŦį å°åĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709538370396,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9149427188\",\"nickname\":\"ip11\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699262833770,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9150657351\",\"nickname\":\"ChenJian\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701053742255,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9151446701\",\"nickname\":\"91WangSiLing\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715439862753,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9154529184\",\"nickname\":\"ä¸äŧéįįžåŠåŠ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713920743087,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9160100453\",\"nickname\":\"RobertWang\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703667463446,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9162279391\",\"nickname\":\"h\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713420666546,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9163061763\",\"nickname\":\"Sunny\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711354514540,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9163773981\",\"nickname\":\"æåĨļåĨļ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715832991265,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9169530932\",\"nickname\":\"AiRobot\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709689658711,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9172155059\",\"nickname\":\"äŊ åĨŊ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718084926960,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9174875302\",\"nickname\":\"xlyyqx214\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715222969740,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9174916284\",\"nickname\":\"flynn\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715405871289,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9186764264\",\"nickname\":\"mt\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9187643068\",\"nickname\":\"czhczh\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717575292555,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9192054233\",\"nickname\":\"gmail\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710473541099,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9194384134\",\"nickname\":\"Maingo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9199088622\",\"nickname\":\"keyring\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711333853952,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9200307656\",\"nickname\":\"liebeayaka\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710605936394,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9201875027\",\"nickname\":\"awar\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708257279591,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9203035243\",\"nickname\":\"zjjszmx\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710923966659,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9204866505\",\"nickname\":\"æčžžæŗĸ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705440217902,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9207250971\",\"nickname\":\"įåykYR\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715303139557,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9207372851\",\"nickname\":\"æĩį§°\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708397551483,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9210231392\",\"nickname\":\"louie\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716569732367,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9212086649\",\"nickname\":\"hello\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714663944229,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9213219531\",\"nickname\":\"Gaubee\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/9213219531/1706269991405png\",\"ex\":\"\",\"createTime\":1705177941587,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9213270709\",\"nickname\":\"åå
į\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701920057103,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9215480998\",\"nickname\":\"äŊčĒå
\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705461580258,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9222153994\",\"nickname\":\"īŧīŧ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699615718809,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9226474938\",\"nickname\":\"andy\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9226621324\",\"nickname\":\"å¸å°\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697706374370,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9230292610\",\"nickname\":\"cp\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713499158574,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9232651207\",\"nickname\":\"åˇ
庰䏍å°éģ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715428086637,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9232803518\",\"nickname\":\"alex_wyh\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714035230824,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9235143815\",\"nickname\":\"éąŧéąŧéąŧ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709523415009,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9236237184\",\"nickname\":\"demo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713014635334,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9239211252\",\"nickname\":\"tutu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703255809067,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9241165972\",\"nickname\":\"æå
åŊŦ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698043081121,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9245513894\",\"nickname\":\"å°ä¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705633997889,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9256183013\",\"nickname\":\"夿Ģ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700016025482,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9258059350\",\"nickname\":\"test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713257511342,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9259033011\",\"nickname\":\"åŊäģ¤\",\"faceURL\":\"ic_avatar_05\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9260806687\",\"nickname\":\"Flybird\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706862848840,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9270676203\",\"nickname\":\"éĸč\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698044371766,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9278741003\",\"nickname\":\"hgfyjbcg\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717070828747,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9279909751\",\"nickname\":\"tets\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717556478597,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9284068632\",\"nickname\":\"å\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700210390628,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9286519455\",\"nickname\":\"breeze\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/9286519455/1703593744043.jpg\",\"ex\":\"\",\"createTime\":1703593606345,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9287504890\",\"nickname\":\"echo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705848530390,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9287571322\",\"nickname\":\"hexiaoshi\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712824802076,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9292952971\",\"nickname\":\"æŖ åĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9294815765\",\"nickname\":\"tony\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708409511488,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9297701491\",\"nickname\":\"xiaobai426\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9300628809\",\"nickname\":\"test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703660078739,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9304736762\",\"nickname\":\"159\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713426722786,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9307746287\",\"nickname\":\"čįĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713145538810,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9308608945\",\"nickname\":\"2164119593\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/9308608945/storage/emulated/0/Android/data/io.openim.android.demo/cache/1711445808389/1711445800805.jpg\",\"ex\":\"\",\"createTime\":1710590535484,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9314613531\",\"nickname\":\"wodom\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699530359753,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9314649429\",\"nickname\":\"1312312\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716050969976,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9319190585\",\"nickname\":\"\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699951806137,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9321533406\",\"nickname\":\"åĄåĄ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9322486252\",\"nickname\":\"įĸįĸ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9323583122\",\"nickname\":\"xc\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716189799551,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9325103737\",\"nickname\":\"WAndroid\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713926376957,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9325129123\",\"nickname\":\"ä¸äēēčĄ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705913916591,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9325990223\",\"nickname\":\"įēĸéģč\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717554055592,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9327284155\",\"nickname\":\".\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714042322085,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9333402846\",\"nickname\":\"ddddaqi\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715432215186,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9339787004\",\"nickname\":\"įä¸ģäģģ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699410723269,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9340752329\",\"nickname\":\"33\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717679505668,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9341886465\",\"nickname\":\"haris\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/9341886465/image_cropper_1714382625943.jpg\",\"ex\":\"\",\"createTime\":1714369835885,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9344140649\",\"nickname\":\"leizi8799\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703424193952,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9346971193\",\"nickname\":\"li3000\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711345153905,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9352579651\",\"nickname\":\"lf01\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9352645028\",\"nickname\":\"tony\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9356390327\",\"nickname\":\"11\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708878543313,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9361332642\",\"nickname\":\"bona\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718089474202,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9362736373\",\"nickname\":\"éŠŦåĸå¸
\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700184915528,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9364103352\",\"nickname\":\"į大é¤\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715591513214,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9366122795\",\"nickname\":\"xu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717818596073,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9368797440\",\"nickname\":\"i77yomi\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700191419861,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9372262219\",\"nickname\":\"大åŽļäŧ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699598971789,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9373564014\",\"nickname\":\"å¨å°\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/9373564014/垎äŋĄæĒåž_20240613104140.webp\",\"ex\":\"\",\"createTime\":1718246360338,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9377917340\",\"nickname\":\"leyton\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716823181569,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9379217721\",\"nickname\":\"ä¸ä¸į\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714047536011,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9387380418\",\"nickname\":\"į\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715751748372,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9387672850\",\"nickname\":\"Jiannan\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9387674715\",\"nickname\":\"æĩč¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699707290463,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9389457938\",\"nickname\":\"hmbb\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706363467569,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9389885910\",\"nickname\":\"LL\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711090023607,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9391314599\",\"nickname\":\"PeterGao\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702438006787,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9393341134\",\"nickname\":\"é˛äēē\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712651095464,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9395180616\",\"nickname\":\"mq\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699845900571,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9397128201\",\"nickname\":\"æĢæ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703754120307,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9397440115\",\"nickname\":\"libaxuan\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709790528087,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9397654697\",\"nickname\":\"laoliu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716620444756,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9398362109\",\"nickname\":\"1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9404981493\",\"nickname\":\"å°é˛¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716176514253,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9408449152\",\"nickname\":\"zzazz\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706498734910,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9410605811\",\"nickname\":\"luyoi\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710469806266,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9410947536\",\"nickname\":\"įģ§įģįģ§įģå°ą\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709045259463,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9413853471\",\"nickname\":\"wjw\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710488406876,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9418340681\",\"nickname\":\"qhutaozz\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704452025069,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9418897256\",\"nickname\":\"æįæŖæĨ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711071602141,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9419791140\",\"nickname\":\"momo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716254867231,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9422344882\",\"nickname\":\"åąå¤äēē1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714870597574,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9422520919\",\"nickname\":\"å
´åŽ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715395303783,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9423702981\",\"nickname\":\"æĸĩčå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717325889017,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9431649345\",\"nickname\":\"åå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711323445753,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9432000750\",\"nickname\":\"įæŦč˛\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702540553478,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9438519163\",\"nickname\":\"fox\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703643939046,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9438619402\",\"nickname\":\"äē夊\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701867356261,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9438981908\",\"nickname\":\"坿\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708481465836,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9443124661\",\"nickname\":\"marks\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715175916250,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9444808535\",\"nickname\":\"Glsong7\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711089883959,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9447003536\",\"nickname\":\"bb123\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/9447003536/avatar.webp\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9449123364\",\"nickname\":\"æåŗ°\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705634145490,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9450945642\",\"nickname\":\"äģ°ææįŠē\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700730266459,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9453001659\",\"nickname\":\"kingyzf\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699983369172,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9454312989\",\"nickname\":\"Uu\",\"faceURL\":\"ic_avatar_06\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9454452545\",\"nickname\":\"weiv\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698631678619,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9458613234\",\"nickname\":\"åĻåĻåĻåĻåĻåĻåĻåĻåĻ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708516599094,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9460029109\",\"nickname\":\"dong\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710302983927,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9460753612\",\"nickname\":\"įģäŊ \",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718187662993,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9471807266\",\"nickname\":\"OpenIM-vida\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702520178911,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9472932551\",\"nickname\":\"godd\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709274425564,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9475126952\",\"nickname\":\"æĨæĨæĨ\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/9475126952/image_cropper_1701017882979.jpg\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9477456745\",\"nickname\":\"hjm\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/9477456745/image_cropper_1717253977200.jpg\",\"ex\":\"\",\"createTime\":1717140751377,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9479262868\",\"nickname\":\"Guanjian104\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699408089802,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9480889921\",\"nickname\":\"hellok\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/9480889921/image_cropper_1708675073998.jpg\",\"ex\":\"\",\"createTime\":1708674658851,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9482224389\",\"nickname\":\"QingYu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714371546510,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9486728724\",\"nickname\":\"äē˛äē˛äē˛\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709169664839,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9486760817\",\"nickname\":\"hyh\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716515453262,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9489899104\",\"nickname\":\"stephen\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713344551563,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9490698152\",\"nickname\":\"夊åŽ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714300536651,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9494685925\",\"nickname\":\"æĩč¯\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703741751123,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9499885295\",\"nickname\":\"fwj\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709654677906,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9503928702\",\"nickname\":\"Changan\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1701401779187,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9504590132\",\"nickname\":\"hui666\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714987411692,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9510908752\",\"nickname\":\"demi\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711098381935,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9511397734\",\"nickname\":\"painso\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717920033773,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9515603026\",\"nickname\":\"laker\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9520465181\",\"nickname\":\"yyyy\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705290644794,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9525788516\",\"nickname\":\"junko2\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712224674146,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9526715559\",\"nickname\":\"čĄå¤§\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697851306540,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9527221323\",\"nickname\":\"jack\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699107520766,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9527412250\",\"nickname\":\"jop\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710418229752,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9528720745\",\"nickname\":\"ssss\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706680959764,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9531540758\",\"nickname\":\"int jo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712820848393,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9533255877\",\"nickname\":\"zz\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708246434070,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9540077489\",\"nickname\":\"kevin\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9543282502\",\"nickname\":\"KevIn\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9547736560\",\"nickname\":\"openim\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714548057983,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9550992804\",\"nickname\":\"åäēįŗ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710860462704,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9554479163\",\"nickname\":\"å°éŠŦ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698459780994,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9556144042\",\"nickname\":\"xu2\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705469802368,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9560430025\",\"nickname\":\"8888A\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712826457470,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9560540812\",\"nickname\":\"į§åŋ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717667049294,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9564525723\",\"nickname\":\"æĢåļ\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/9564525723/data/user/0/cn.rentsoft.openim.flutter.rtc/cache/8b633afc-1944-4a6f-8d25-b1e3f9c3bfb2/a5b9d7f7bbcfd7a33a2f4f99ced4a622.gif\",\"ex\":\"\",\"createTime\":1698909193159,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9564624893\",\"nickname\":\"åå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715187459621,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9566846106\",\"nickname\":\"admin\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716878065073,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9567110804\",\"nickname\":\"yangzhou\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717061569689,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9568064166\",\"nickname\":\"Mr.Zhu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711096367957,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9569742620\",\"nickname\":\"manman\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712564380379,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9575344330\",\"nickname\":\"æ´äŋĄ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703610528549,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9582809602\",\"nickname\":\"åŗå¨č
\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707979724517,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9584879278\",\"nickname\":\"åįŗå¤´\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716615644038,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9588309595\",\"nickname\":\"čéŠŦ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712671292387,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9593910181\",\"nickname\":\"夊éé
Ŧå¤\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713322876514,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9594595817\",\"nickname\":\"17520320253\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716534475155,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9596530901\",\"nickname\":\"äŧéš
\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717485214570,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9598993999\",\"nickname\":\"Trepang\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699350137514,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9600160441\",\"nickname\":\"hans\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9600612423\",\"nickname\":\"DFtest\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704790780684,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9603303533\",\"nickname\":\"åŧ æ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9605342546\",\"nickname\":\"čĄ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715951046347,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9609727061\",\"nickname\":\"1111\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714093848256,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9612741669\",\"nickname\":\"įåŽĸ\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/9612741669/1.webp\",\"ex\":\"\",\"createTime\":1715668919236,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9615126029\",\"nickname\":\"jeff\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706519936012,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9617075837\",\"nickname\":\"d\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713865039579,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9621471724\",\"nickname\":\"ddd\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715225110653,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9624703660\",\"nickname\":\"éĨŧéĨŧå
Ŋ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708412553332,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9626290005\",\"nickname\":\"蝎æį
§23\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9630683705\",\"nickname\":\"æĄļ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705288009642,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9632964455\",\"nickname\":\"wds\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9633093534\",\"nickname\":\"gni\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715430303972,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9636841804\",\"nickname\":\"大čå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714462123192,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9640092689\",\"nickname\":\"å´įåˇŊ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713406638455,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9640271868\",\"nickname\":\"\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698055489809,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9643981165\",\"nickname\":\"moyu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709087659803,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9644984361\",\"nickname\":\"hello\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706256991421,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9646811476\",\"nickname\":\"Archer\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712114872827,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9652403347\",\"nickname\":\"James\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9653906508\",\"nickname\":\"lau\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705915859635,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9653932291\",\"nickname\":\"weiliang\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716881742718,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9654809682\",\"nickname\":\"jac\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709890044634,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9655460349\",\"nickname\":\"ryan\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712891546144,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9661736644\",\"nickname\":\"åŧ ä¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9662422985\",\"nickname\":\"\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698891873594,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9665249754\",\"nickname\":\"Run\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699190737724,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9666798322\",\"nickname\":\"æŠ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715134823001,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9668702178\",\"nickname\":\"huang\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718243266286,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9675738355\",\"nickname\":\"č čč\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9676545595\",\"nickname\":\"åĨļįļ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712646412108,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9680261978\",\"nickname\":\"9527\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715426321612,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9681562907\",\"nickname\":\"Forever\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697520237313,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9682481051\",\"nickname\":\"LBW\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705650581167,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9688178922\",\"nickname\":\"rain\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714108383599,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9692122176\",\"nickname\":\"į¨ååžˇ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699405499922,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9694696718\",\"nickname\":\"lian1234\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712818260149,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9701519461\",\"nickname\":\"zb\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711015230252,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9701705776\",\"nickname\":\"fear\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709209988746,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9702179908\",\"nickname\":\"minicuper\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713250061768,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9702639521\",\"nickname\":\"tom\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710247257155,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9704234829\",\"nickname\":\"colin\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705509683885,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9705413308\",\"nickname\":\"evan\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706679429855,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9715723472\",\"nickname\":\"Yui\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/9715723472/image_cropper_1710309656880.jpg\",\"ex\":\"\",\"createTime\":1710309498557,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9716918074\",\"nickname\":\"test1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1707032012086,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9719817461\",\"nickname\":\"äŊ 大įˇ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717753010492,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9720699376\",\"nickname\":\"gary\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713926976109,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9721005199\",\"nickname\":\"头\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708261855079,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9726843811\",\"nickname\":\"æĩč¯2\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9729290732\",\"nickname\":\"yy\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713855384284,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9729475227\",\"nickname\":\"1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700455374568,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9730546629\",\"nickname\":\"IMser \",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713183305128,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9732821029\",\"nickname\":\"gg\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715610168484,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9735131442\",\"nickname\":\"mark\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714128589727,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9735240223\",\"nickname\":\"carl\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717484243899,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9735279232\",\"nickname\":\"æ¨åēˇ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716203492132,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9736240141\",\"nickname\":\"éž\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715239513648,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9738388188\",\"nickname\":\"vkrian\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711509591904,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9740262193\",\"nickname\":\"SmartGateway01\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9740640735\",\"nickname\":\"å°įēĸ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717126785406,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9743886962\",\"nickname\":\"leon\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702020144425,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9745952656\",\"nickname\":\"å¤äŊŗæĄ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1697531871890,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9751997142\",\"nickname\":\"åžåĨŊ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9758913988\",\"nickname\":\"dejohn\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703122912988,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9760925339\",\"nickname\":\"ä¸čŋ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703594110689,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9761298760\",\"nickname\":\"wjt123125\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715214601531,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9762221880\",\"nickname\":\"h123456\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713343230921,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9762257538\",\"nickname\":\"Snowyoung\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708148717055,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9762702751\",\"nickname\":\"kk\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698892395907,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9762995627\",\"nickname\":\"æåą\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711413931872,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9765318831\",\"nickname\":\"åž\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715137052104,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9765325563\",\"nickname\":\"éčĄ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709788015390,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9769121468\",\"nickname\":\"dyn4771\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715156729453,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9771313310\",\"nickname\":\"Test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9773300745\",\"nickname\":\"lmm\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711159231687,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9778520303\",\"nickname\":\"ååååå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9783316715\",\"nickname\":\"æ¨å\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705992982615,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9783788754\",\"nickname\":\"riversdark\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705743059741,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9784306149\",\"nickname\":\"čąå°\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711440701524,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9786979096\",\"nickname\":\"kkk\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717842611077,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9789697248\",\"nickname\":\"įĒįĒäž \",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699351726278,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9790545188\",\"nickname\":\"WW\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706866943184,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9792414833\",\"nickname\":\"text\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702607120075,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9793764585\",\"nickname\":\"Mike\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708361948167,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9800821226\",\"nickname\":\"Bitcoin\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711532191453,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9803514269\",\"nickname\":\"guo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718259692545,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9808385174\",\"nickname\":\"fmzh\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704698203230,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9810980246\",\"nickname\":\"louis\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698715938405,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9811311058\",\"nickname\":\"åŧ ä¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717119350568,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9811354776\",\"nickname\":\"towqi\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717747361863,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9812341763\",\"nickname\":\"sven\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704965926376,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9815283232\",\"nickname\":\"ååŊsssa\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/9815283232/image_cropper_1703210813293.jpg\",\"ex\":\"\",\"createTime\":1703210768794,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9817116271\",\"nickname\":\"mydawn\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712458558420,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9820063434\",\"nickname\":\"čļå°ŧ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698733637047,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9820372523\",\"nickname\":\"Mortal\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699105669187,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9827942549\",\"nickname\":\"åēå°š\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715430518340,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9829542126\",\"nickname\":\"ã\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711950120055,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9833458575\",\"nickname\":\"michael\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711532558802,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9835297214\",\"nickname\":\"test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715759953363,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9840028485\",\"nickname\":\"kaikai\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712755117365,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9840166478\",\"nickname\":\"vi\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698044067011,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9841449469\",\"nickname\":\"VE\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698374663355,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9844056821\",\"nickname\":\"ææ°\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712117615572,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9845775616\",\"nickname\":\"čĨŋįįå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712654284173,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9845972476\",\"nickname\":\"éŠŦæ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709521582177,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9846367663\",\"nickname\":\"Niven\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709257587674,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9846974241\",\"nickname\":\"seven\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711462739633,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9848437402\",\"nickname\":\"æ¨å¤´\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700639724277,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9852576405\",\"nickname\":\"aa\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9852778536\",\"nickname\":\"Nico\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715761606582,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9859217551\",\"nickname\":\"chao\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9860821940\",\"nickname\":\"tsker\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9862545908\",\"nickname\":\"å°åéĨŧåš˛\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9863185338\",\"nickname\":\"luckycoder\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9868600919\",\"nickname\":\"kevin96\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/openIM123456/WeChatd1084e59e8fbe01350d6b9c773e8e910.jpg\",\"ex\":\"\",\"createTime\":1706864792054,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9870300498\",\"nickname\":\"zb\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712832099804,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9871424491\",\"nickname\":\"bruo\",\"faceURL\":\"ic_avatar_06\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9871558792\",\"nickname\":\"čŋˇæ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713920910160,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9874112427\",\"nickname\":\"echo\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708592895125,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9874390196\",\"nickname\":\"æĩŽå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708828182138,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9875288022\",\"nickname\":\"Jason\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704903253856,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9875597823\",\"nickname\":\"test\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702618043813,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9879946936\",\"nickname\":\"夊éŖčŊŠ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710822144549,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9883171407\",\"nickname\":\"aa123456\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714389455018,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9885315814\",\"nickname\":\"yun\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712541249908,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9889105718\",\"nickname\":\"xuqing\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702040305079,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9893953153\",\"nickname\":\"luke\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698821469298,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9894477008\",\"nickname\":\"you\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711328625554,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9901933233\",\"nickname\":\"dean\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713318641855,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9910194984\",\"nickname\":\"æ¸
æ°´æ˛ŗį\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698634593870,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9912087463\",\"nickname\":\"rainyday\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714357141840,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9913922612\",\"nickname\":\"a\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698640254578,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9914300355\",\"nickname\":\"jaimy\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708412289873,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9915273695\",\"nickname\":\"Alan\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713231604638,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9916361292\",\"nickname\":\"qihua\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715132809972,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9920591606\",\"nickname\":\"fc\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705909848709,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9924223480\",\"nickname\":\"jason liao\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705543992676,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9926873986\",\"nickname\":\"GA666666\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715415012121,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9928589670\",\"nickname\":\"čé\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702367758062,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9929919200\",\"nickname\":\"å
°å\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711186677443,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9930623477\",\"nickname\":\"wolf\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/9930623477/baozi.webp\",\"ex\":\"\",\"createTime\":1698812519312,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9932444003\",\"nickname\":\"æ
č\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716280058710,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9935307700\",\"nickname\":\"Deepblue\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716369147485,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9939908351\",\"nickname\":\"k\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1705931885530,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9940283309\",\"nickname\":\"įįĢ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1706387418019,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9940929924\",\"nickname\":\"įįĢå
Ŧä¸ģ\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/9940929924/data/user/0/cn.rentsoft.openim.flutter.rtc/cache/8704304c-da21-429c-b2e8-63fe0c599497/22ba830771efb794.gif\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9942703170\",\"nickname\":\"haihai\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709629914569,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9942891463\",\"nickname\":\"feilongxman\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1712022429746,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9943302646\",\"nickname\":\"1\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1699603567912,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9945163346\",\"nickname\":\"\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703144643318,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9947889277\",\"nickname\":\"å°į ´æĩ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713145991514,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9951072285\",\"nickname\":\"pk\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1711560849364,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9956133955\",\"nickname\":\"lxc\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1710781563766,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9959516434\",\"nickname\":\"zhanqia\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1702300196195,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9960038846\",\"nickname\":\"wgq\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1718174275114,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9962903434\",\"nickname\":\"åˇŽä¸å¤\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1704876042623,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9970101670\",\"nickname\":\"įąåčĄįŊå\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1714973578369,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9970293910\",\"nickname\":\"bory \",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1716628892600,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9970999905\",\"nickname\":\"ghost\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/9970999905/违.png\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9976280245\",\"nickname\":\"čĄäģéš\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715285805812,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9976445095\",\"nickname\":\"mumu\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1717600753682,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9977492096\",\"nickname\":\"Ossas777777777777777\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1713247976561,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9980842418\",\"nickname\":\"åĒ大ä¸\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1703647216850,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9981239412\",\"nickname\":\"čŊģįåŠæ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1698042027932,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"9984169865\",\"nickname\":\"įįˇ\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715433277089,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9987229337\",\"nickname\":\"alisend\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1708947811605,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9989242253\",\"nickname\":\"æįŠēä¸å¤é\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1715425451214,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9990136696\",\"nickname\":\"įąįžčįž\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1709550795938,\"appMangerLevel\":0,\"globalRecvMsgOpt\":0},{\"userID\":\"9997591117\",\"nickname\":\"lllll\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1700725117207,\"appMangerLevel\":1,\"globalRecvMsgOpt\":0},{\"userID\":\"openIM123456\",\"nickname\":\"įŗģįģįŽĄįå\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/openIM123456/favicon.ico\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":2,\"globalRecvMsgOpt\":0},{\"userID\":\"openIM654321\",\"nickname\":\"chat2\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/openIM654321/åå Ą08.png\",\"ex\":\"\",\"createTime\":0,\"appMangerLevel\":2,\"globalRecvMsgOpt\":0},{\"userID\":\"openIMAdmin\",\"nickname\":\"system3\",\"faceURL\":\"\",\"ex\":\"\",\"createTime\":1691345640238,\"appMangerLevel\":2,\"globalRecvMsgOpt\":0}]}}"}
+2024-06-24 10:57:10.252 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/user/get_users_info", "state": "success", "cost time": "1341ms"}
+2024-06-24 10:57:10.256 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:91] ApiRequest {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_groups_info", "body": "{\"groupIDs\":[\"104250651\",\"1062802274\",\"1098167418\",\"1161663520\",\"1162405312\",\"1171979965\",\"1181175668\",\"1196923925\",\"1209319003\",\"1212532780\",\"1219707992\",\"1307714144\",\"1348263733\",\"1355048295\",\"1397022909\",\"1430191635\",\"1431423795\",\"1438747528\",\"1472131068\",\"1477824418\",\"1533379639\",\"1566911564\",\"161019322\",\"1629977487\",\"1639333330\",\"1661305134\",\"1687917547\",\"1708658560\",\"1765818066\",\"1780190492\",\"1785857431\",\"1845606214\",\"1851829045\",\"1959629060\",\"2008565166\",\"2062637119\",\"2103648114\",\"2105177423\",\"2138010215\",\"2141832100\",\"2156407784\",\"2186335908\",\"2206344631\",\"22125508\",\"2264748085\",\"2276584901\",\"2287005875\",\"2300748497\",\"2306232581\",\"2311972027\",\"2314844644\",\"2328086176\",\"2337816601\",\"2338619613\",\"2338903916\",\"2377136176\",\"2386261452\",\"2388518829\",\"2417467281\",\"2438710897\",\"244473388\",\"246329239\",\"2481127587\",\"2526989903\",\"254264603\",\"2546075374\",\"254754437\",\"2563467770\",\"2600924814\",\"261042702\",\"2637047860\",\"2700512134\",\"2703056345\",\"2712739968\",\"2715338888\",\"2738270862\",\"2744603618\",\"2783925829\",\"2825124274\",\"2833552317\",\"2836218947\",\"2839621663\",\"2842792512\",\"28456085\",\"2866659389\",\"2889681075\",\"2991140459\",\"2991351838\",\"3134715281\",\"3158680188\",\"3187706596\",\"3204313055\",\"3253663629\",\"3266228942\",\"3276743019\",\"3295574908\",\"3369946551\",\"3416772962\",\"3430036352\",\"3438817431\",\"3456954170\",\"3489091446\",\"3523019119\",\"359361212\",\"3595843332\",\"3610850870\",\"3634650086\",\"3636664095\",\"3652923926\",\"3704855948\",\"3809568826\",\"3831608740\",\"3845608473\",\"3901598750\",\"3923775376\",\"3926645279\",\"3927081813\",\"3953092196\",\"3969556509\",\"400360852\",\"4015084780\",\"4018907989\",\"4023358894\",\"4034544053\",\"4039998258\",\"405867780\",\"4089861802\",\"4220354893\",\"4227056539\",\"4261141770\",\"4265149432\",\"4273540010\",\"430333127\",\"471852741\",\"474494913\",\"489539319\",\"499550676\",\"547125611\",\"549432318\",\"567855415\",\"572273208\",\"578214705\",\"578691343\",\"591858077\",\"630329009\",\"632811645\",\"700804699\",\"714498155\",\"741425278\",\"751776298\",\"757454731\",\"778158059\",\"809953832\",\"831402134\",\"841314012\",\"84614448\",\"899043316\",\"917923491\",\"930244142\",\"953210402\",\"976556305\",\"981246811\"]}"}
+2024-06-24 10:57:10.435 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:115] ApiResponse {"operationID": "1719197817604066041", "url": "http://14.29.168.56:10002/group/get_groups_info", "status": "200 OK", "body": "{\"errCode\":0,\"errMsg\":\"\",\"errDlt\":\"\",\"data\":{\"groupInfos\":[{\"groupID\":\"104250651\",\"groupName\":\"test111111\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4080264659/åąåšæĒåž 2024-04-24 151850.png\",\"ownerUserID\":\"4080264659\",\"createTime\":1716532505217,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4080264659\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1062802274\",\"groupName\":\"test\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/7724890013/tes.png\",\"ownerUserID\":\"7724890013\",\"createTime\":1705903563072,\"memberCount\":9,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"7724890013\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1098167418\",\"groupName\":\"2\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4641688133/image_cropper_1713168784498.jpg\",\"ownerUserID\":\"\",\"createTime\":1713168654837,\"memberCount\":0,\"ex\":\"\",\"status\":2,\"creatorUserID\":\"4641688133\",\"groupType\":2,\"needVerification\":2,\"lookMemberInfo\":1,\"applyMemberFriend\":1,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1161663520\",\"groupName\":\"ä¸Ēäŧ莥\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"http://14.29.213.197:50002/object/6270908929/1714779668917_MTXX_MR20240501_113827651.jpg\",\"ownerUserID\":\"6270908929\",\"createTime\":1714779703261,\"memberCount\":8,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"6270908929\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1162405312\",\"groupName\":\"æĩč¯įž¤\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3224719808\",\"createTime\":1709375808457,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3224719808\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1171979965\",\"groupName\":\"æĩč¯\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"8661722129\",\"createTime\":1714050879268,\"memberCount\":7,\"ex\":\"\",\"status\":3,\"creatorUserID\":\"8661722129\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":1,\"applyMemberFriend\":1,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1181175668\",\"groupName\":\"test\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"8273990937\",\"createTime\":1693504929966,\"memberCount\":6,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"8273990937\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":-28800000,\"notificationUserID\":\"\"},{\"groupID\":\"1196923925\",\"groupName\":\"æįæĩč¯įž¤\",\"notification\":\"ååå\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4738033186\",\"createTime\":1700471292134,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4738033186\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1700644646479,\"notificationUserID\":\"4738033186\"},{\"groupID\":\"1209319003\",\"groupName\":\"æĩč¯\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"5349221317\",\"createTime\":1693253022246,\"memberCount\":18,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"5349221317\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":-28800000,\"notificationUserID\":\"\"},{\"groupID\":\"1212532780\",\"groupName\":\"įž¤č001\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"\",\"createTime\":1702814564840,\"memberCount\":0,\"ex\":\"\",\"status\":2,\"creatorUserID\":\"1774484110\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1219707992\",\"groupName\":\"ccc\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"\",\"createTime\":1691625369163,\"memberCount\":0,\"ex\":\"\",\"status\":2,\"creatorUserID\":\"6787283652\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":-28800000,\"notificationUserID\":\"\"},{\"groupID\":\"1307714144\",\"groupName\":\"æĩč¯\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1597446517\",\"createTime\":1713776247040,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"1597446517\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1348263733\",\"groupName\":\"åäēãJane1ãOpenIM-Gordon\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1820723584\",\"createTime\":1704692993537,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"1820723584\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1355048295\",\"groupName\":\"test\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"2509310711\",\"createTime\":1697620071193,\"memberCount\":2,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"2509310711\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1397022909\",\"groupName\":\"æĩč¯åĻäē˛\",\"notification\":\"æĩč¯įå
Ŧå\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3628521511\",\"createTime\":1710819123675,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3628521511\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1710819144600,\"notificationUserID\":\"3628521511\"},{\"groupID\":\"1430191635\",\"groupName\":\"å°åé\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"2298259901\",\"createTime\":1712899207915,\"memberCount\":10,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"2298259901\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1431423795\",\"groupName\":\"æĩč¯21\",\"notification\":\"1233680995vjkjggfhh gjk\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4911414951\",\"createTime\":1703210584213,\"memberCount\":4,\"ex\":\"\",\"status\":3,\"creatorUserID\":\"4911414951\",\"groupType\":2,\"needVerification\":1,\"lookMemberInfo\":1,\"applyMemberFriend\":1,\"notificationUpdateTime\":1717497197501,\"notificationUserID\":\"4911414951\"},{\"groupID\":\"1438747528\",\"groupName\":\"ååŠ\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"8310070431\",\"createTime\":1716954297098,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"8310070431\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1472131068\",\"groupName\":\"æģ´æģ´\",\"notification\":\"čŋæ¯įįä¸ä¸æ¯åĨŊäē\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3565888306\",\"createTime\":1700201997846,\"memberCount\":2,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3565888306\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1701395861973,\"notificationUserID\":\"3565888306\"},{\"groupID\":\"1477824418\",\"groupName\":\"čĩĩäēéŖæĩč¯įž¤\",\"notification\":\"čŋæ¯čĩĩäēéŖįæĩč¯įž¤īŧ\\nhttps://www.openim.online/zh/about\",\"introduction\":\"\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4102041542/ä¸į.png\",\"ownerUserID\":\"4102041542\",\"createTime\":1716942833435,\"memberCount\":2,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4102041542\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1716942897736,\"notificationUserID\":\"4102041542\"},{\"groupID\":\"1533379639\",\"groupName\":\"ææįŽ\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"2872689322\",\"createTime\":1706803909793,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"2872689322\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":1,\"applyMemberFriend\":1,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1566911564\",\"groupName\":\"æĩč¯aa\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"9736240141\",\"createTime\":1715239607667,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"9736240141\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"161019322\",\"groupName\":\"æĩč¯įž¤\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3923864156\",\"createTime\":1716449051809,\"memberCount\":2,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3923864156\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1629977487\",\"groupName\":\"122121\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"\",\"createTime\":1706000559970,\"memberCount\":0,\"ex\":\"\",\"status\":2,\"creatorUserID\":\"7687164838\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1639333330\",\"groupName\":\"æĩč¯įž¤2\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"9730546629\",\"createTime\":1713183474197,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"9730546629\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1661305134\",\"groupName\":\"æĩč¯įž¤įŽĄįåčŊ\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"6591504507\",\"createTime\":1717780002904,\"memberCount\":12,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"6591504507\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":1,\"applyMemberFriend\":1,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1687917547\",\"groupName\":\"æĩč¯įž¤ä¸\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7497605401\",\"createTime\":1716535248061,\"memberCount\":2425,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"7497605401\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":1,\"applyMemberFriend\":1,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1708658560\",\"groupName\":\"寚寚寚\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"8494962468\",\"createTime\":1710077995316,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"8494962468\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1765818066\",\"groupName\":\"test\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1203300972\",\"createTime\":1702974026619,\"memberCount\":2,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"1203300972\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1780190492\",\"groupName\":\"åįéŽéĸ莰åŊåéĻ\",\"notification\":\"įž¤å
Ŧå\\nįž¤å
Ŧå111111111111111111111111111111111111111111111111111111111įž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧå\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7009965934\",\"createTime\":1694630067425,\"memberCount\":10,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"needVerification\":2,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1695625126370,\"notificationUserID\":\"7009965934\"},{\"groupID\":\"1785857431\",\"groupName\":\"å§åąéĸä¸ē\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3402038544\",\"createTime\":1709976773815,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3402038544\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1845606214\",\"groupName\":\"æĩč¯11\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3787170103\",\"createTime\":1697597966662,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3787170103\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1851829045\",\"groupName\":\"æĩč¯įž¤č\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1820723584\",\"createTime\":1704693003906,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"1820723584\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"1959629060\",\"groupName\":\"111\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"\",\"createTime\":1694487544164,\"memberCount\":0,\"ex\":\"\",\"status\":2,\"creatorUserID\":\"4293913125\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":-28800000,\"notificationUserID\":\"\"},{\"groupID\":\"2008565166\",\"groupName\":\"æĩč¯\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"\",\"createTime\":1714465228665,\"memberCount\":0,\"ex\":\"\",\"status\":2,\"creatorUserID\":\"7497605401\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2062637119\",\"groupName\":\"åĻåĻ\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"\",\"createTime\":1709362069443,\"memberCount\":0,\"ex\":\"\",\"status\":2,\"creatorUserID\":\"3751457430\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2103648114\",\"groupName\":\"æĩč¯\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1035025841\",\"createTime\":1702972783908,\"memberCount\":10,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"1035025841\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2105177423\",\"groupName\":\"test1111\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1695766238\",\"createTime\":1704889886479,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"1695766238\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2138010215\",\"groupName\":\"ss\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"6240876322\",\"createTime\":1698746356870,\"memberCount\":1,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"6240876322\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2141832100\",\"groupName\":\"1\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"8818424284\",\"createTime\":1705860115781,\"memberCount\":1,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"8818424284\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2156407784\",\"groupName\":\"æäšäŊŋį¨č´äš°\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4300349125/image_cropper_1708211055534.jpg\",\"ownerUserID\":\"4300349125\",\"createTime\":1708211065286,\"memberCount\":9,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4300349125\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2186335908\",\"groupName\":\"æĩč¯įž¤ä¸\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"\",\"createTime\":1716535168483,\"memberCount\":0,\"ex\":\"\",\"status\":2,\"creatorUserID\":\"7497605401\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2206344631\",\"groupName\":\"čĄæįŽą\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"\",\"createTime\":1705150512475,\"memberCount\":0,\"ex\":\"\",\"status\":2,\"creatorUserID\":\"8558447046\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"22125508\",\"groupName\":\"æ¯čžéēģįĻ\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4988969273\",\"createTime\":1709787022098,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4988969273\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":1,\"applyMemberFriend\":1,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2264748085\",\"groupName\":\"åŋĢåäē\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3971926306\",\"createTime\":1709998249659,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3971926306\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2276584901\",\"groupName\":\"æĩč¯\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4616348536\",\"createTime\":1693529330174,\"memberCount\":2,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4616348536\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":-28800000,\"notificationUserID\":\"\"},{\"groupID\":\"2287005875\",\"groupName\":\"čŋåĨŊåååããã\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7009965934\",\"createTime\":1695065271547,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":-28800000,\"notificationUserID\":\"\"},{\"groupID\":\"2300748497\",\"groupName\":\"æĩč¯\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"2738308088\",\"createTime\":1692906300817,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"2738308088\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":-28800000,\"notificationUserID\":\"\"},{\"groupID\":\"2306232581\",\"groupName\":\"xx\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1119049102\",\"createTime\":1709732267212,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"1119049102\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2311972027\",\"groupName\":\"åļåģēãAiRobotãDFđđ¤\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"\",\"createTime\":1715906244791,\"memberCount\":0,\"ex\":\"\",\"status\":2,\"creatorUserID\":\"6687633010\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2314844644\",\"groupName\":\"éąéąéą\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"5896186963\",\"createTime\":1710146250091,\"memberCount\":6,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"5896186963\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2328086176\",\"groupName\":\"æĩč¯\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"5864051915\",\"createTime\":1708593641767,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"5864051915\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2337816601\",\"groupName\":\"ååŧåĨå\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"2554845832\",\"createTime\":1697599746472,\"memberCount\":14,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"2554845832\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2338619613\",\"groupName\":\"åŋĢäščąįŊ2\",\"notification\":\"åéĄē丰į大č¨åéĄē丰į大č¨åéĄē丰į大č¨åéĄē丰į大č¨åéĄē丰į大č¨åéĄē丰į大č¨åéĄē丰į大č¨åéĄē丰į大č¨åéĄē丰į大č¨åéĄē丰į大č¨åéĄē丰į大č¨åéĄē丰į大č¨åéĄē丰į大č¨åéĄē丰į大č¨åéĄē丰į大č¨åéĄē丰į大č¨åéĄē丰į大č¨åéĄē丰į大č¨åéĄē丰į大č¨åéĄē丰į大č¨åéĄē丰į大č¨å¤§č¨čžžæåéĄē丰į大č¨åéĄē丰į大č¨åéĄē丰į大č¨åéĄē丰į大č¨åéĄē丰į大č¨åéĄē丰į大č¨åéĄē丰į大č¨åéĄē丰į大č¨åéĄē丰į大č¨åéĄē丰į大č¨åéĄē丰į大č¨åéĄē丰į大č¨åéĄē丰įåååååååååååååååååååååååååååååååååååååååååååå\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1762559417\",\"createTime\":1695175479462,\"memberCount\":9,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"5292156665\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1703736758694,\"notificationUserID\":\"5292156665\"},{\"groupID\":\"2338903916\",\"groupName\":\"vv\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"2981246162\",\"createTime\":1710514175547,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"2981246162\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2377136176\",\"groupName\":\"æĩč¯\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"9215480998\",\"createTime\":1705461605875,\"memberCount\":2,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"9215480998\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2386261452\",\"groupName\":\"æĩč¯\",\"notification\":\"112164\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1035025841\",\"createTime\":1702972793809,\"memberCount\":9,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"1035025841\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1706776622869,\"notificationUserID\":\"1035025841\"},{\"groupID\":\"2388518829\",\"groupName\":\"å¯\",\"notification\":\"įåš˛æēéäē\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1876795205\",\"createTime\":1713715979465,\"memberCount\":11,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"1876795205\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1713854953970,\"notificationUserID\":\"1876795205\"},{\"groupID\":\"2417467281\",\"groupName\":\"æģ´æģ´įį\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3217545671\",\"createTime\":1710918939794,\"memberCount\":10,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3217545671\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2438710897\",\"groupName\":\"åå\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"5240408296\",\"createTime\":1713279809314,\"memberCount\":5,\"ex\":\"\",\"status\":3,\"creatorUserID\":\"5240408296\",\"groupType\":2,\"needVerification\":2,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"244473388\",\"groupName\":\"by by\",\"notification\":\"čŋæ¯äģäšéŦŧå\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"\",\"createTime\":1700531096805,\"memberCount\":0,\"ex\":\"\",\"status\":2,\"creatorUserID\":\"6397860749\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1700709316057,\"notificationUserID\":\"6397860749\"},{\"groupID\":\"246329239\",\"groupName\":\"yyyyyyyyyyy\",\"notification\":\"asdassaddasasdwqwwwwwwwwwwwwwwddddddddddddddddddddddddddwwwwwwwwww\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"9564624893\",\"createTime\":1715187814490,\"memberCount\":9,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"9564624893\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1715190460357,\"notificationUserID\":\"9564624893\"},{\"groupID\":\"2481127587\",\"groupName\":\"test11111\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4080264659\",\"createTime\":1716532603979,\"memberCount\":6,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4080264659\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2526989903\",\"groupName\":\"éŖįŋ\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"6723843756\",\"createTime\":1712822699157,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"6723843756\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"254264603\",\"groupName\":\"hh\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"\",\"createTime\":1714465173346,\"memberCount\":0,\"ex\":\"\",\"status\":2,\"creatorUserID\":\"7497605401\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2546075374\",\"groupName\":\"dfddd\",\"notification\":\"ssddsdsdsds\\n\",\"introduction\":\"\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/2823062805/å æ˛š.gif\",\"ownerUserID\":\"2823062805\",\"createTime\":1712107706349,\"memberCount\":2,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"2823062805\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1714092497329,\"notificationUserID\":\"2823062805\"},{\"groupID\":\"254754437\",\"groupName\":\"11\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"\",\"createTime\":1699001227143,\"memberCount\":0,\"ex\":\"\",\"status\":2,\"creatorUserID\":\"3120559487\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2563467770\",\"groupName\":\"test1111\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1695766238\",\"createTime\":1715137753761,\"memberCount\":2,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"2527123914\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2600924814\",\"groupName\":\"čļ
įē§įž¤æĩč¯\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"9609727061\",\"createTime\":1714093877982,\"memberCount\":8,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"9609727061\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"261042702\",\"groupName\":\"į§å¤Šįž¤1\",\"notification\":\"GG\\n123\",\"introduction\":\"\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/9135721405/Autumn.jpeg\",\"ownerUserID\":\"9135721405\",\"createTime\":1696936825410,\"memberCount\":12,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"9135721405\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1697619011482,\"notificationUserID\":\"9135721405\"},{\"groupID\":\"2637047860\",\"groupName\":\"test\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4849669261\",\"createTime\":1694751156633,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4849669261\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":-28800000,\"notificationUserID\":\"\"},{\"groupID\":\"2700512134\",\"groupName\":\"hi there\",\"notification\":\"įž¤å
Ŧåæĩč¯22\",\"introduction\":\"\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4648916002/image_cropper_1705882770229.jpg\",\"ownerUserID\":\"\",\"createTime\":1705845215329,\"memberCount\":0,\"ex\":\"\",\"status\":2,\"creatorUserID\":\"4648916002\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1705902134287,\"notificationUserID\":\"4648916002\"},{\"groupID\":\"2703056345\",\"groupName\":\"æĩč¯įž¤\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"\",\"createTime\":1706077527096,\"memberCount\":0,\"ex\":\"\",\"status\":2,\"creatorUserID\":\"2823062805\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2712739968\",\"groupName\":\"į§äēēæĩč¯įž¤\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/8835887772/FgeBQDvVsAA9scn.jpg\",\"ownerUserID\":\"8835887772\",\"createTime\":1697442485582,\"memberCount\":9,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"8835887772\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2715338888\",\"groupName\":\"éĸ渊æĒäē\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1447253383\",\"createTime\":1703033805176,\"memberCount\":2,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"1447253383\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2738270862\",\"groupName\":\"ææææ\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"8929623425\",\"createTime\":1705300287424,\"memberCount\":7,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"8929623425\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2744603618\",\"groupName\":\"å§Ŧč§čžįģ\",\"notification\":\"įž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤å
Ŧåįž¤\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"2359475267\",\"createTime\":1700187100445,\"memberCount\":1,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"2359475267\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1700187122177,\"notificationUserID\":\"2359475267\"},{\"groupID\":\"2783925829\",\"groupName\":\"æĩč¯čå¤ŠčŽ°åŊæŧĢæ¸¸\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"5003938059\",\"createTime\":1711954797894,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"5003938059\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2825124274\",\"groupName\":\"æĩč¯\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"8426622833\",\"createTime\":1700732606307,\"memberCount\":10,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"8426622833\",\"groupType\":2,\"needVerification\":2,\"lookMemberInfo\":1,\"applyMemberFriend\":1,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2833552317\",\"groupName\":\"å\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"5124623407\",\"createTime\":1710512464007,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"5124623407\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2836218947\",\"groupName\":\"æĩč¯įž¤įŽĄį\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4918276559\",\"createTime\":1715065335408,\"memberCount\":6,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4918276559\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":1,\"applyMemberFriend\":1,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2839621663\",\"groupName\":\"莝å
å
\",\"notification\":\"åĻäēåĻå¯åĻå¯åĻå¯\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7864796432\",\"createTime\":1695147481306,\"memberCount\":6,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"7864796432\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1695147509523,\"notificationUserID\":\"7864796432\"},{\"groupID\":\"2842792512\",\"groupName\":\"æĩč¯įž¤88\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"2872689322\",\"createTime\":1704698538065,\"memberCount\":1,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"2872689322\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":1,\"applyMemberFriend\":1,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"28456085\",\"groupName\":\"æĩč¯groupat\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1531800981\",\"createTime\":1715657249312,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"1695766238\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2866659389\",\"groupName\":\"ååå\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"6767936802\",\"createTime\":1693247696823,\"memberCount\":16,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"6767936802\",\"groupType\":2,\"needVerification\":2,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":-28800000,\"notificationUserID\":\"\"},{\"groupID\":\"2889681075\",\"groupName\":\"ååģē\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"\",\"createTime\":1709886435841,\"memberCount\":0,\"ex\":\"\",\"status\":2,\"creatorUserID\":\"5818783212\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"2991140459\",\"groupName\":\"æĩč¯\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"9037264818\",\"createTime\":1695344992646,\"memberCount\":3,\"ex\":\"\",\"status\":2,\"creatorUserID\":\"9037264818\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":-28800000,\"notificationUserID\":\"\"},{\"groupID\":\"2991351838\",\"groupName\":\"æĩč¯åˇ\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7291693120\",\"createTime\":1705052832260,\"memberCount\":7,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"7291693120\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"3134715281\",\"groupName\":\"æĩč¯\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"2367330798\",\"createTime\":1708932208979,\"memberCount\":2,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"2367330798\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"3158680188\",\"groupName\":\"test\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4359161104\",\"createTime\":1717138858819,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4359161104\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"3187706596\",\"groupName\":\"éģčŽ¤įž¤-æĩč¯\",\"notification\":\"rag-gptīŧåēäēæŦå°įĨč¯åēįåŧæēæēčŊåŽĸæ \\nhttps://github.com/open-kf/rag-gpt\\n\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7497605401\",\"createTime\":1692559307052,\"memberCount\":3902,\"ex\":\"xxx\",\"status\":0,\"creatorUserID\":\"7009965934\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1716968428635,\"notificationUserID\":\"3418577436\"},{\"groupID\":\"3204313055\",\"groupName\":\"æĩč¯įž¤\",\"notification\":\"大åŽļåĨŊ\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"\",\"createTime\":1706165462444,\"memberCount\":0,\"ex\":\"\",\"status\":2,\"creatorUserID\":\"6013027606\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1706165480856,\"notificationUserID\":\"6013027606\"},{\"groupID\":\"3253663629\",\"groupName\":\"æĩč¯\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"5557876583\",\"createTime\":1701761670602,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"5557876583\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"3266228942\",\"groupName\":\"ååąąčŽēå\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3322768391\",\"createTime\":1707204175041,\"memberCount\":9,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3322768391\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"3276743019\",\"groupName\":\"æĩč¯\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"5496039772\",\"createTime\":1718192212286,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"5496039772\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"3295574908\",\"groupName\":\"įéĄŋ8ãellan_IOSãGordon\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3939590154\",\"createTime\":1693261422200,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3939590154\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":-28800000,\"notificationUserID\":\"\"},{\"groupID\":\"3369946551\",\"groupName\":\"æĩč¯įž¤\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3865122896\",\"createTime\":1701691000828,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3865122896\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"3416772962\",\"groupName\":\"åˇĨäŊįž¤1\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"8941452423\",\"createTime\":1709774772036,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"8941452423\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"3430036352\",\"groupName\":\"¡1\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"6554716140\",\"createTime\":1702888459585,\"memberCount\":2,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"6554716140\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"3438817431\",\"groupName\":\"åˇåąbug\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"5620768201\",\"createTime\":1705804289818,\"memberCount\":7,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"5620768201\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"3456954170\",\"groupName\":\"æĩč¯\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"\",\"createTime\":1714465181839,\"memberCount\":0,\"ex\":\"\",\"status\":2,\"creatorUserID\":\"7497605401\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"3489091446\",\"groupName\":\"test\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3849018031\",\"createTime\":1717475447099,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3849018031\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"3523019119\",\"groupName\":\"åååå\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"5503837684\",\"createTime\":1704899581543,\"memberCount\":15,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"5503837684\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"359361212\",\"groupName\":\"æĨæĨæĨ\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"8632216197\",\"createTime\":1717048028960,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"8632216197\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"3595843332\",\"groupName\":\"æä¸å°\",\"notification\":\"æĩč¯\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"\",\"createTime\":1694048653027,\"memberCount\":0,\"ex\":\"\",\"status\":2,\"creatorUserID\":\"5410355545\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1694204249286,\"notificationUserID\":\"5410355545\"},{\"groupID\":\"3610850870\",\"groupName\":\"12580\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7687164838\",\"createTime\":1712125949241,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"7687164838\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"3634650086\",\"groupName\":\"æĩč¯hhhhhhh\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4024116306\",\"createTime\":1701866329619,\"memberCount\":2,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4024116306\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"3636664095\",\"groupName\":\"å¯\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4569497081\",\"createTime\":1715418965570,\"memberCount\":6,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4569497081\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"3652923926\",\"groupName\":\"大čä¸č¯\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"6686846215\",\"createTime\":1704433726033,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"6686846215\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"3704855948\",\"groupName\":\"test\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"6254689070\",\"createTime\":1718263256138,\"memberCount\":12,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"6254689070\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"3809568826\",\"groupName\":\"Hi\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4911414951/image_2024-04-29-08-01.377.png\",\"ownerUserID\":\"\",\"createTime\":1714363684141,\"memberCount\":0,\"ex\":\"\",\"status\":2,\"creatorUserID\":\"4911414951\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"3831608740\",\"groupName\":\"æĩč¯\",\"notification\":\"åį大åš
åēĻ\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4786954344\",\"createTime\":1712225462931,\"memberCount\":2,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4786954344\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":1,\"applyMemberFriend\":1,\"notificationUpdateTime\":1712226177053,\"notificationUserID\":\"4786954344\"},{\"groupID\":\"3845608473\",\"groupName\":\"ååå\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"2677077317\",\"createTime\":1709534490130,\"memberCount\":6,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"2677077317\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"3901598750\",\"groupName\":\"111\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"\",\"createTime\":1699431009955,\"memberCount\":0,\"ex\":\"\",\"status\":2,\"creatorUserID\":\"6871953976\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"3923775376\",\"groupName\":\"12\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"\",\"createTime\":1706852310007,\"memberCount\":0,\"ex\":\"\",\"status\":2,\"creatorUserID\":\"7854235526\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":1,\"applyMemberFriend\":1,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"3926645279\",\"groupName\":\"yo123\",\"notification\":\"new notification\",\"introduction\":\"new notification\",\"faceURL\":\"faceURL url\",\"ownerUserID\":\"1695766238\",\"createTime\":1718952270504,\"memberCount\":2,\"ex\":\"new ex\",\"status\":0,\"creatorUserID\":\"\",\"groupType\":2,\"needVerification\":1,\"lookMemberInfo\":1,\"applyMemberFriend\":1,\"notificationUpdateTime\":1718968191355,\"notificationUserID\":\"imAdmin\"},{\"groupID\":\"3927081813\",\"groupName\":\"æ°´įĩč´š\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"2563100730\",\"createTime\":1693003223717,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"2563100730\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":-28800000,\"notificationUserID\":\"\"},{\"groupID\":\"3953092196\",\"groupName\":\"æå°æš\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4333324598\",\"createTime\":1713595045408,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4333324598\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"3969556509\",\"groupName\":\"yyy\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"\",\"createTime\":1695004778668,\"memberCount\":0,\"ex\":\"\",\"status\":2,\"creatorUserID\":\"9135721405\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":-28800000,\"notificationUserID\":\"\"},{\"groupID\":\"400360852\",\"groupName\":\"test\",\"notification\":\"sdfsdfsdfsdf\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"6587366044\",\"createTime\":1717097634108,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"6587366044\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1717097641992,\"notificationUserID\":\"6587366044\"},{\"groupID\":\"4015084780\",\"groupName\":\"æĩč¯\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"8772228740\",\"createTime\":1715692280884,\"memberCount\":2,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"1695766238\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"4018907989\",\"groupName\":\"ååå\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1429778434\",\"createTime\":1715829460601,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"1429778434\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"4023358894\",\"groupName\":\"2222\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"\",\"createTime\":1706001694727,\"memberCount\":0,\"ex\":\"\",\"status\":2,\"creatorUserID\":\"7687164838\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"4034544053\",\"groupName\":\"ååąąčŽēå\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"\",\"createTime\":1707204192264,\"memberCount\":0,\"ex\":\"\",\"status\":2,\"creatorUserID\":\"3322768391\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"4039998258\",\"groupName\":\"äģŖį č§č\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3418577436\",\"createTime\":1709518884461,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3418577436\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"405867780\",\"groupName\":\"æĩč¯įž¤05\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1774484110\",\"createTime\":1704596441146,\"memberCount\":6,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"1774484110\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"4089861802\",\"groupName\":\"æĩč¯ä¸ä¸įž¤čéŋ\",\"notification\":\"æĩč¯įž¤å
Ŧå34åĻåŠååŽļæ\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"8310070431\",\"createTime\":1718113550061,\"memberCount\":10,\"ex\":\"\",\"status\":3,\"creatorUserID\":\"8310070431\",\"groupType\":2,\"needVerification\":1,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1718186183853,\"notificationUserID\":\"8310070431\"},{\"groupID\":\"4220354893\",\"groupName\":\"3321\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"\",\"createTime\":1694752274670,\"memberCount\":0,\"ex\":\"\",\"status\":2,\"creatorUserID\":\"6787283652\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":-28800000,\"notificationUserID\":\"\"},{\"groupID\":\"4227056539\",\"groupName\":\"éžč\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7497605401\",\"createTime\":1715870332157,\"memberCount\":7,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"1689589076\",\"groupType\":2,\"needVerification\":1,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"4261141770\",\"groupName\":\"äģŖį äŧååč§č\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3418577436\",\"createTime\":1711419710932,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3418577436\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"4265149432\",\"groupName\":\"æĩč¯\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"2872689322\",\"createTime\":1704696804958,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"2872689322\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"4273540010\",\"groupName\":\"æĩč¯įž¤č\",\"notification\":\"åąąå¸Ļ\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"6572366754\",\"createTime\":1718116947591,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"6572366754\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1718116965564,\"notificationUserID\":\"6572366754\"},{\"groupID\":\"430333127\",\"groupName\":\"æĩč¯įž¤2\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"8310070431\",\"createTime\":1718155970959,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"8310070431\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"471852741\",\"groupName\":\"æĩč¯\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"5073192046\",\"createTime\":1712488258653,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"5073192046\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"474494913\",\"groupName\":\"įįå§å§\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"\",\"createTime\":1696783483747,\"memberCount\":0,\"ex\":\"\",\"status\":2,\"creatorUserID\":\"8001502447\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"489539319\",\"groupName\":\"åŧ ä¸įįž¤\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3424924792\",\"createTime\":1702425681777,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3424924792\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"499550676\",\"groupName\":\"vvv\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"6406732941\",\"createTime\":1715098829414,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"6406732941\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"547125611\",\"groupName\":\"æĩč¯įž¤\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"6141140222\",\"createTime\":1715146237097,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"6141140222\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"549432318\",\"groupName\":\"ååå\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"6821762379\",\"createTime\":1717673019012,\"memberCount\":12,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"6821762379\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"567855415\",\"groupName\":\"111212\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"\",\"createTime\":1706000549221,\"memberCount\":0,\"ex\":\"\",\"status\":2,\"creatorUserID\":\"7687164838\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"572273208\",\"groupName\":\"æ°æįž¤\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4393448866\",\"createTime\":1704345074793,\"memberCount\":4,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4393448866\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"578214705\",\"groupName\":\"æäŋæ°\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"8001502447\",\"createTime\":1696783661485,\"memberCount\":6,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"8001502447\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"578691343\",\"groupName\":\"test\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3845663923\",\"createTime\":1710759323014,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3845663923\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"591858077\",\"groupName\":\"æĩč¯\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4835400415\",\"createTime\":1706095891307,\"memberCount\":2,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4835400415\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"630329009\",\"groupName\":\"æč¯č¯\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4440534964\",\"createTime\":1700293109255,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4440534964\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"632811645\",\"groupName\":\"1111\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"\",\"createTime\":1710813993779,\"memberCount\":0,\"ex\":\"\",\"status\":2,\"creatorUserID\":\"1250766516\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"700804699\",\"groupName\":\"333\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"\",\"createTime\":1694752032327,\"memberCount\":0,\"ex\":\"\",\"status\":2,\"creatorUserID\":\"6787283652\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":-28800000,\"notificationUserID\":\"\"},{\"groupID\":\"714498155\",\"groupName\":\"6666\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"\",\"createTime\":1693512068268,\"memberCount\":0,\"ex\":\"\",\"status\":2,\"creatorUserID\":\"3939999665\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":-28800000,\"notificationUserID\":\"\"},{\"groupID\":\"741425278\",\"groupName\":\"123\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4080264659\",\"createTime\":1716973719758,\"memberCount\":1,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4080264659\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"751776298\",\"groupName\":\"ä¸äēēå¤ä礿ĩ\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3418577436\",\"createTime\":1697126276694,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3418577436\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"757454731\",\"groupName\":\"å¯į 888\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"\",\"createTime\":1694227250687,\"memberCount\":0,\"ex\":\"\",\"status\":2,\"creatorUserID\":\"4293913125\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":-28800000,\"notificationUserID\":\"\"},{\"groupID\":\"778158059\",\"groupName\":\"æąčޝ\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"3418577436\",\"createTime\":1699010081486,\"memberCount\":5,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"3418577436\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"809953832\",\"groupName\":\"test\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"6981901637\",\"createTime\":1705873192956,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"6981901637\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"831402134\",\"groupName\":\"æĩč¯įž¤č\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1820723584\",\"createTime\":1704693002360,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"1820723584\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"841314012\",\"groupName\":\"įŽĄįįčŽē\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"https://web.rentsoft.cn/api_enterprise/object/4413835259/1703073883109_Screenshot_20231208_194327.jpg\",\"ownerUserID\":\"4413835259\",\"createTime\":1703073824541,\"memberCount\":10,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4413835259\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":1,\"applyMemberFriend\":1,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"84614448\",\"groupName\":\"įž¤č两æĄä¸åæļ厞č¯ģ\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"1695766238\",\"createTime\":1697015456454,\"memberCount\":1,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"1695766238\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"899043316\",\"groupName\":\"ææ¯æĩč¯įž¤\",\"notification\":\"čŋæ¯ä¸ä¸Ēæĩč¯įž¤\\n123213213\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"9612741669\",\"createTime\":1716191366695,\"memberCount\":8,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"9612741669\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1716191426152,\"notificationUserID\":\"9612741669\"},{\"groupID\":\"917923491\",\"groupName\":\"88888\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"\",\"createTime\":1693512324908,\"memberCount\":0,\"ex\":\"\",\"status\":2,\"creatorUserID\":\"3939999665\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":-28800000,\"notificationUserID\":\"\"},{\"groupID\":\"930244142\",\"groupName\":\"ABC\",\"notification\":\"ABCSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSFFFFFFFFFFFFBGBBBBBBBBBBBFGSDFSDFSDF\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"5115816718\",\"createTime\":1713164157702,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"5115816718\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":1713164264393,\"notificationUserID\":\"5115816718\"},{\"groupID\":\"953210402\",\"groupName\":\"åŋĢäščąįŊ\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"\",\"createTime\":1695175475319,\"memberCount\":0,\"ex\":\"\",\"status\":2,\"creatorUserID\":\"5292156665\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":-28800000,\"notificationUserID\":\"\"},{\"groupID\":\"976556305\",\"groupName\":\"æĩč¯įįįž¤č\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"7821811338\",\"createTime\":1715830240838,\"memberCount\":10,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"7821811338\",\"groupType\":2,\"needVerification\":1,\"lookMemberInfo\":1,\"applyMemberFriend\":1,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"},{\"groupID\":\"981246811\",\"groupName\":\"ååå\",\"notification\":\"\",\"introduction\":\"\",\"faceURL\":\"\",\"ownerUserID\":\"4064402118\",\"createTime\":1706692965170,\"memberCount\":3,\"ex\":\"\",\"status\":0,\"creatorUserID\":\"4064402118\",\"groupType\":2,\"needVerification\":0,\"lookMemberInfo\":0,\"applyMemberFriend\":0,\"notificationUpdateTime\":0,\"notificationUserID\":\"\"}]}}"}
+2024-06-24 10:57:10.466 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [util/post.go:68] CallApi {"operationID": "1719197817604066041", "api": "/group/get_groups_info", "state": "success", "cost time": "209ms"}
+2024-06-24 10:57:10.467 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1012900607","conversationType":3,"userID":"","groupID":"1012900607","showName":"cdaac123","faceURL":"https://web.rentsoft.cn/api_enterprise/object/8772228740/avatar.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":4,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:10.473 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.473 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_104250651","conversationType":3,"userID":"","groupID":"104250651","showName":"test111111","faceURL":"https://web.rentsoft.cn/api_enterprise/object/4080264659/åąåšæĒåž 2024-04-24 151850.png","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.478 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.479 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:152] not same {"conversationID": "sg_105081877", "server": 0, "local": 0}
+2024-06-24 10:57:10.479 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:293] sync update {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_105081877","conversationType":3,"userID":"","groupID":"105081877","showName":"d","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}, "local": {"conversationID":"sg_105081877","conversationType":3,"userID":"","groupID":"105081877","showName":"d","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"{\"clientMsgID\":\"edc317755ca9c374d7a42e270abe5bc3\",\"serverMsgID\":\"db07a9027981f628e056ba6f18774eff\",\"createTime\":1718937610489,\"sendTime\":1718937610490,\"sessionType\":3,\"sendID\":\"imAdmin\",\"recvID\":\"105081877\",\"msgFrom\":200,\"contentType\":1504,\"senderPlatformID\":0,\"groupID\":\"105081877\",\"seq\":2,\"isRead\":false,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"group\\\":{\\\"groupID\\\":\\\"105081877\\\",\\\"groupName\\\":\\\"d\\\",\\\"notification\\\":\\\"\\\",\\\"introduction\\\":\\\"\\\",\\\"faceURL\\\":\\\"\\\",\\\"ownerUserID\\\":\\\"5248385191\\\",\\\"createTime\\\":1710490825413,\\\"memberCount\\\":5,\\\"ex\\\":\\\"\\\",\\\"status\\\":0,\\\"creatorUserID\\\":\\\"5248385191\\\",\\\"groupType\\\":2,\\\"needVerification\\\":0,\\\"lookMemberInfo\\\":0,\\\"applyMemberFriend\\\":0,\\\"notificationUpdateTime\\\":0,\\\"notificationUserID\\\":\\\"\\\"},\\\"quitUser\\\":{\\\"groupID\\\":\\\"105081877\\\",\\\"userID\\\":\\\"5292156665\\\",\\\"roleLevel\\\":20,\\\"joinTime\\\":1710490848503,\\\"nickname\\\":\\\"Oliver\\\",\\\"faceURL\\\":\\\"https://web.rentsoft.cn/api_enterprise/object/5292156665/storage/emulated/0/Android/data/io.openim.android.demo/cache/1706265155247/1706265148858.png\\\",\\\"appMangerLevel\\\":0,\\\"joinSource\\\":2,\\\"operatorUserID\\\":\\\"5248385191\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":0,\\\"inviterUserID\\\":\\\"5248385191\\\"},\\\"operationTime\\\":0,\\\"groupMemberVersion\\\":2,\\\"groupMemberVersionID\\\":\\\"6672d39de27166fe77811753\\\"}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}}","latestMsgSendTime":1718937610490,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":2,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:10.485 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[{\"conversationID\":\"sg_105081877\",\"conversationType\":3,\"userID\":\"\",\"groupID\":\"105081877\",\"showName\":\"d\",\"faceURL\":\"\",\"recvMsgOpt\":0,\"unreadCount\":0,\"groupAtType\":0,\"latestMsg\":\"{\\\"clientMsgID\\\":\\\"edc317755ca9c374d7a42e270abe5bc3\\\",\\\"serverMsgID\\\":\\\"db07a9027981f628e056ba6f18774eff\\\",\\\"createTime\\\":1718937610489,\\\"sendTime\\\":1718937610490,\\\"sessionType\\\":3,\\\"sendID\\\":\\\"imAdmin\\\",\\\"recvID\\\":\\\"105081877\\\",\\\"msgFrom\\\":200,\\\"contentType\\\":1504,\\\"senderPlatformID\\\":0,\\\"groupID\\\":\\\"105081877\\\",\\\"seq\\\":2,\\\"isRead\\\":false,\\\"status\\\":2,\\\"notificationElem\\\":{\\\"detail\\\":\\\"{\\\\\\\"group\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"105081877\\\\\\\",\\\\\\\"groupName\\\\\\\":\\\\\\\"d\\\\\\\",\\\\\\\"notification\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"introduction\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"ownerUserID\\\\\\\":\\\\\\\"5248385191\\\\\\\",\\\\\\\"createTime\\\\\\\":1710490825413,\\\\\\\"memberCount\\\\\\\":5,\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"status\\\\\\\":0,\\\\\\\"creatorUserID\\\\\\\":\\\\\\\"5248385191\\\\\\\",\\\\\\\"groupType\\\\\\\":2,\\\\\\\"needVerification\\\\\\\":0,\\\\\\\"lookMemberInfo\\\\\\\":0,\\\\\\\"applyMemberFriend\\\\\\\":0,\\\\\\\"notificationUpdateTime\\\\\\\":0,\\\\\\\"notificationUserID\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"quitUser\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"105081877\\\\\\\",\\\\\\\"userID\\\\\\\":\\\\\\\"5292156665\\\\\\\",\\\\\\\"roleLevel\\\\\\\":20,\\\\\\\"joinTime\\\\\\\":1710490848503,\\\\\\\"nickname\\\\\\\":\\\\\\\"Oliver\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"https://web.rentsoft.cn/api_enterprise/object/5292156665/storage/emulated/0/Android/data/io.openim.android.demo/cache/1706265155247/1706265148858.png\\\\\\\",\\\\\\\"appMangerLevel\\\\\\\":0,\\\\\\\"joinSource\\\\\\\":2,\\\\\\\"operatorUserID\\\\\\\":\\\\\\\"5248385191\\\\\\\",\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"muteEndTime\\\\\\\":0,\\\\\\\"inviterUserID\\\\\\\":\\\\\\\"5248385191\\\\\\\"},\\\\\\\"operationTime\\\\\\\":0,\\\\\\\"groupMemberVersion\\\\\\\":2,\\\\\\\"groupMemberVersionID\\\\\\\":\\\\\\\"6672d39de27166fe77811753\\\\\\\"}\\\"},\\\"attachedInfoElem\\\":{\\\"groupHasReadInfo\\\":{\\\"hasReadCount\\\":0,\\\"groupMemberCount\\\":0},\\\"isPrivateChat\\\":false,\\\"burnDuration\\\":0,\\\"hasReadTime\\\":0,\\\"isEncryption\\\":false,\\\"inEncryptStatus\\\":false}}\",\"latestMsgSendTime\":1718937610490,\"draftText\":\"\",\"draftTextTime\":0,\"isPinned\":false,\"isPrivateChat\":false,\"burnDuration\":0,\"isNotInGroup\":false,\"updateUnreadCountTime\":0,\"attachedInfo\":\"\",\"ex\":\"\",\"maxSeq\":0,\"minSeq\":0,\"hasReadSeq\":0,\"msgDestructTime\":0,\"isMsgDestruct\":false}]"}
+2024-06-24 10:57:10.486 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1062802274","conversationType":3,"userID":"","groupID":"1062802274","showName":"test","faceURL":"https://web.rentsoft.cn/api_enterprise/object/7724890013/tes.png","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.492 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.492 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1098167418","conversationType":3,"userID":"","groupID":"1098167418","showName":"2","faceURL":"https://web.rentsoft.cn/api_enterprise/object/4641688133/image_cropper_1713168784498.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.501 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.501 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1137299436","conversationType":3,"userID":"","groupID":"1137299436","showName":"qqqqqqqqqqqqq","faceURL":"https://web.rentsoft.cn/api_enterprise/object/4036830742/æčˇ2.PNG","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:10.505 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.506 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1161663520","conversationType":3,"userID":"","groupID":"1161663520","showName":"ä¸Ēäŧ莥","faceURL":"http://14.29.213.197:50002/object/6270908929/1714779668917_MTXX_MR20240501_113827651.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.511 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.511 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1162405312","conversationType":3,"userID":"","groupID":"1162405312","showName":"æĩč¯įž¤","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.516 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.516 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1170336331","conversationType":3,"userID":"","groupID":"1170336331","showName":"2","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.520 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.520 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1171979965","conversationType":3,"userID":"","groupID":"1171979965","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.524 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.525 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:152] not same {"conversationID": "sg_1177987017", "server": 0, "local": 0}
+2024-06-24 10:57:10.525 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:293] sync update {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1177987017","conversationType":3,"userID":"","groupID":"1177987017","showName":"123123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}, "local": {"conversationID":"sg_1177987017","conversationType":3,"userID":"","groupID":"1177987017","showName":"123123","faceURL":"","recvMsgOpt":0,"unreadCount":2,"groupAtType":0,"latestMsg":"{\"clientMsgID\":\"93ce372f1170782d5961e3831c9e7d30\",\"serverMsgID\":\"c5ee404e47c5b104d38baae24bea8d98\",\"createTime\":1718373366841,\"sendTime\":1718373366842,\"sessionType\":3,\"sendID\":\"imAdmin\",\"recvID\":\"1177987017\",\"msgFrom\":200,\"contentType\":1504,\"senderPlatformID\":0,\"groupID\":\"1177987017\",\"seq\":2,\"isRead\":false,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"group\\\":{\\\"groupID\\\":\\\"1177987017\\\",\\\"groupName\\\":\\\"123123\\\",\\\"notification\\\":\\\"\\\",\\\"introduction\\\":\\\"\\\",\\\"faceURL\\\":\\\"\\\",\\\"ownerUserID\\\":\\\"1695766238\\\",\\\"createTime\\\":1705046435331,\\\"memberCount\\\":1,\\\"ex\\\":\\\"\\\",\\\"status\\\":0,\\\"creatorUserID\\\":\\\"1695766238\\\",\\\"groupType\\\":2,\\\"needVerification\\\":0,\\\"lookMemberInfo\\\":0,\\\"applyMemberFriend\\\":0,\\\"notificationUpdateTime\\\":0,\\\"notificationUserID\\\":\\\"\\\"},\\\"quitUser\\\":{\\\"groupID\\\":\\\"1177987017\\\",\\\"userID\\\":\\\"4911414951\\\",\\\"roleLevel\\\":20,\\\"joinTime\\\":1705046985971,\\\"nickname\\\":\\\"OpenimAnd-Jane\\\",\\\"faceURL\\\":\\\"https://web.rentsoft.cn/api_enterprise/object/4911414951/image_2024-05-06-20-59.111.png\\\",\\\"appMangerLevel\\\":0,\\\"joinSource\\\":2,\\\"operatorUserID\\\":\\\"1695766238\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":0,\\\"inviterUserID\\\":\\\"1695766238\\\"},\\\"operationTime\\\":0,\\\"groupMemberVersion\\\":3}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}}","latestMsgSendTime":1718373366842,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:10.531 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[{\"conversationID\":\"sg_1177987017\",\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1177987017\",\"showName\":\"123123\",\"faceURL\":\"\",\"recvMsgOpt\":0,\"unreadCount\":2,\"groupAtType\":0,\"latestMsg\":\"{\\\"clientMsgID\\\":\\\"93ce372f1170782d5961e3831c9e7d30\\\",\\\"serverMsgID\\\":\\\"c5ee404e47c5b104d38baae24bea8d98\\\",\\\"createTime\\\":1718373366841,\\\"sendTime\\\":1718373366842,\\\"sessionType\\\":3,\\\"sendID\\\":\\\"imAdmin\\\",\\\"recvID\\\":\\\"1177987017\\\",\\\"msgFrom\\\":200,\\\"contentType\\\":1504,\\\"senderPlatformID\\\":0,\\\"groupID\\\":\\\"1177987017\\\",\\\"seq\\\":2,\\\"isRead\\\":false,\\\"status\\\":2,\\\"notificationElem\\\":{\\\"detail\\\":\\\"{\\\\\\\"group\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"1177987017\\\\\\\",\\\\\\\"groupName\\\\\\\":\\\\\\\"123123\\\\\\\",\\\\\\\"notification\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"introduction\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"ownerUserID\\\\\\\":\\\\\\\"1695766238\\\\\\\",\\\\\\\"createTime\\\\\\\":1705046435331,\\\\\\\"memberCount\\\\\\\":1,\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"status\\\\\\\":0,\\\\\\\"creatorUserID\\\\\\\":\\\\\\\"1695766238\\\\\\\",\\\\\\\"groupType\\\\\\\":2,\\\\\\\"needVerification\\\\\\\":0,\\\\\\\"lookMemberInfo\\\\\\\":0,\\\\\\\"applyMemberFriend\\\\\\\":0,\\\\\\\"notificationUpdateTime\\\\\\\":0,\\\\\\\"notificationUserID\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"quitUser\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"1177987017\\\\\\\",\\\\\\\"userID\\\\\\\":\\\\\\\"4911414951\\\\\\\",\\\\\\\"roleLevel\\\\\\\":20,\\\\\\\"joinTime\\\\\\\":1705046985971,\\\\\\\"nickname\\\\\\\":\\\\\\\"OpenimAnd-Jane\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"https://web.rentsoft.cn/api_enterprise/object/4911414951/image_2024-05-06-20-59.111.png\\\\\\\",\\\\\\\"appMangerLevel\\\\\\\":0,\\\\\\\"joinSource\\\\\\\":2,\\\\\\\"operatorUserID\\\\\\\":\\\\\\\"1695766238\\\\\\\",\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"muteEndTime\\\\\\\":0,\\\\\\\"inviterUserID\\\\\\\":\\\\\\\"1695766238\\\\\\\"},\\\\\\\"operationTime\\\\\\\":0,\\\\\\\"groupMemberVersion\\\\\\\":3}\\\"},\\\"attachedInfoElem\\\":{\\\"groupHasReadInfo\\\":{\\\"hasReadCount\\\":0,\\\"groupMemberCount\\\":0},\\\"isPrivateChat\\\":false,\\\"burnDuration\\\":0,\\\"hasReadTime\\\":0,\\\"isEncryption\\\":false,\\\"inEncryptStatus\\\":false}}\",\"latestMsgSendTime\":1718373366842,\"draftText\":\"\",\"draftTextTime\":0,\"isPinned\":false,\"isPrivateChat\":false,\"burnDuration\":0,\"isNotInGroup\":false,\"updateUnreadCountTime\":0,\"attachedInfo\":\"\",\"ex\":\"\",\"maxSeq\":0,\"minSeq\":0,\"hasReadSeq\":0,\"msgDestructTime\":0,\"isMsgDestruct\":false}]"}
+2024-06-24 10:57:10.533 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1181175668","conversationType":3,"userID":"","groupID":"1181175668","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:10.538 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.538 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1193166060","conversationType":3,"userID":"","groupID":"1193166060","showName":"22222222222","faceURL":"https://web.rentsoft.cn/api_enterprise/object/7497605401/åąåšæĒåž 2024-04-10 095644 - 坿Ŧ.png","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.542 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.542 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1196923925","conversationType":3,"userID":"","groupID":"1196923925","showName":"æįæĩč¯įž¤","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:10.547 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.547 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1209319003","conversationType":3,"userID":"","groupID":"1209319003","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:10.552 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.553 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1212532780","conversationType":3,"userID":"","groupID":"1212532780","showName":"įž¤č001","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.558 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.559 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1219707992","conversationType":3,"userID":"","groupID":"1219707992","showName":"ccc","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:10.566 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.566 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1237366857","conversationType":3,"userID":"","groupID":"1237366857","showName":"11","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.572 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.572 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:152] not same {"conversationID": "sg_1254300734", "server": 0, "local": 0}
+2024-06-24 10:57:10.572 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:293] sync update {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1254300734","conversationType":3,"userID":"","groupID":"1254300734","showName":"fjh","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}, "local": {"conversationID":"sg_1254300734","conversationType":3,"userID":"","groupID":"1254300734","showName":"fjh","faceURL":"","recvMsgOpt":0,"unreadCount":1,"groupAtType":0,"latestMsg":"{\"clientMsgID\":\"02756e84af58c58d3ad9cd320fed4a65\",\"serverMsgID\":\"58c48ac004f5769a44a8038c1b2e4f95\",\"createTime\":1718805424659,\"sendTime\":1718805424661,\"sessionType\":3,\"sendID\":\"imAdmin\",\"recvID\":\"1254300734\",\"msgFrom\":200,\"contentType\":1504,\"senderPlatformID\":0,\"groupID\":\"1254300734\",\"seq\":1,\"isRead\":false,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"group\\\":{\\\"groupID\\\":\\\"1254300734\\\",\\\"groupName\\\":\\\"fjh\\\",\\\"notification\\\":\\\"\\\",\\\"introduction\\\":\\\"\\\",\\\"faceURL\\\":\\\"\\\",\\\"ownerUserID\\\":\\\"4681582191\\\",\\\"createTime\\\":1713582441625,\\\"memberCount\\\":9,\\\"ex\\\":\\\"\\\",\\\"status\\\":0,\\\"creatorUserID\\\":\\\"4681582191\\\",\\\"groupType\\\":2,\\\"needVerification\\\":0,\\\"lookMemberInfo\\\":0,\\\"applyMemberFriend\\\":0,\\\"notificationUpdateTime\\\":0,\\\"notificationUserID\\\":\\\"\\\"},\\\"quitUser\\\":{\\\"groupID\\\":\\\"1254300734\\\",\\\"userID\\\":\\\"2725451243\\\",\\\"roleLevel\\\":20,\\\"joinTime\\\":1713582441627,\\\"nickname\\\":\\\"OpenIM-Andrew123\\\",\\\"faceURL\\\":\\\"\\\",\\\"appMangerLevel\\\":0,\\\"joinSource\\\":2,\\\"operatorUserID\\\":\\\"4681582191\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":0,\\\"inviterUserID\\\":\\\"4681582191\\\"},\\\"operationTime\\\":0,\\\"groupMemberVersion\\\":2,\\\"groupMemberVersionID\\\":\\\"6672d39de27166fe778116b5\\\"}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}}","latestMsgSendTime":1718805424661,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:10.578 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[{\"conversationID\":\"sg_1254300734\",\"conversationType\":3,\"userID\":\"\",\"groupID\":\"1254300734\",\"showName\":\"fjh\",\"faceURL\":\"\",\"recvMsgOpt\":0,\"unreadCount\":1,\"groupAtType\":0,\"latestMsg\":\"{\\\"clientMsgID\\\":\\\"02756e84af58c58d3ad9cd320fed4a65\\\",\\\"serverMsgID\\\":\\\"58c48ac004f5769a44a8038c1b2e4f95\\\",\\\"createTime\\\":1718805424659,\\\"sendTime\\\":1718805424661,\\\"sessionType\\\":3,\\\"sendID\\\":\\\"imAdmin\\\",\\\"recvID\\\":\\\"1254300734\\\",\\\"msgFrom\\\":200,\\\"contentType\\\":1504,\\\"senderPlatformID\\\":0,\\\"groupID\\\":\\\"1254300734\\\",\\\"seq\\\":1,\\\"isRead\\\":false,\\\"status\\\":2,\\\"notificationElem\\\":{\\\"detail\\\":\\\"{\\\\\\\"group\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"1254300734\\\\\\\",\\\\\\\"groupName\\\\\\\":\\\\\\\"fjh\\\\\\\",\\\\\\\"notification\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"introduction\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"ownerUserID\\\\\\\":\\\\\\\"4681582191\\\\\\\",\\\\\\\"createTime\\\\\\\":1713582441625,\\\\\\\"memberCount\\\\\\\":9,\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"status\\\\\\\":0,\\\\\\\"creatorUserID\\\\\\\":\\\\\\\"4681582191\\\\\\\",\\\\\\\"groupType\\\\\\\":2,\\\\\\\"needVerification\\\\\\\":0,\\\\\\\"lookMemberInfo\\\\\\\":0,\\\\\\\"applyMemberFriend\\\\\\\":0,\\\\\\\"notificationUpdateTime\\\\\\\":0,\\\\\\\"notificationUserID\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"quitUser\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"1254300734\\\\\\\",\\\\\\\"userID\\\\\\\":\\\\\\\"2725451243\\\\\\\",\\\\\\\"roleLevel\\\\\\\":20,\\\\\\\"joinTime\\\\\\\":1713582441627,\\\\\\\"nickname\\\\\\\":\\\\\\\"OpenIM-Andrew123\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"appMangerLevel\\\\\\\":0,\\\\\\\"joinSource\\\\\\\":2,\\\\\\\"operatorUserID\\\\\\\":\\\\\\\"4681582191\\\\\\\",\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"muteEndTime\\\\\\\":0,\\\\\\\"inviterUserID\\\\\\\":\\\\\\\"4681582191\\\\\\\"},\\\\\\\"operationTime\\\\\\\":0,\\\\\\\"groupMemberVersion\\\\\\\":2,\\\\\\\"groupMemberVersionID\\\\\\\":\\\\\\\"6672d39de27166fe778116b5\\\\\\\"}\\\"},\\\"attachedInfoElem\\\":{\\\"groupHasReadInfo\\\":{\\\"hasReadCount\\\":0,\\\"groupMemberCount\\\":0},\\\"isPrivateChat\\\":false,\\\"burnDuration\\\":0,\\\"hasReadTime\\\":0,\\\"isEncryption\\\":false,\\\"inEncryptStatus\\\":false}}\",\"latestMsgSendTime\":1718805424661,\"draftText\":\"\",\"draftTextTime\":0,\"isPinned\":false,\"isPrivateChat\":false,\"burnDuration\":0,\"isNotInGroup\":false,\"updateUnreadCountTime\":0,\"attachedInfo\":\"\",\"ex\":\"\",\"maxSeq\":0,\"minSeq\":0,\"hasReadSeq\":0,\"msgDestructTime\":0,\"isMsgDestruct\":false}]"}
+2024-06-24 10:57:10.579 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1268986309","conversationType":3,"userID":"","groupID":"1268986309","showName":"summer","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:10.584 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.584 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1273621475","conversationType":3,"userID":"","groupID":"1273621475","showName":"rretrd","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.589 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.589 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1295978993","conversationType":3,"userID":"","groupID":"1295978993","showName":"12345","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.595 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.596 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_129612413","conversationType":3,"userID":"","groupID":"129612413","showName":"ces","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.599 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.600 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1307714144","conversationType":3,"userID":"","groupID":"1307714144","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.604 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.604 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1348263733","conversationType":3,"userID":"","groupID":"1348263733","showName":"åäēãJane1ãOpenIM-Gordon","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.609 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.609 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1355048295","conversationType":3,"userID":"","groupID":"1355048295","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:10.614 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.614 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1393169672","conversationType":3,"userID":"","groupID":"1393169672","showName":"asdasd","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.620 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.620 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1397022909","conversationType":3,"userID":"","groupID":"1397022909","showName":"æĩč¯åĻäē˛","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":4,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.625 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.626 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1430191635","conversationType":3,"userID":"","groupID":"1430191635","showName":"å°åé","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.632 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.632 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1431423795","conversationType":3,"userID":"","groupID":"1431423795","showName":"æĩč¯21","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.638 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.638 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1438747528","conversationType":3,"userID":"","groupID":"1438747528","showName":"ååŠ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.685 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.687 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1472131068","conversationType":3,"userID":"","groupID":"1472131068","showName":"æģ´æģ´","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:10.692 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.696 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1477824418","conversationType":3,"userID":"","groupID":"1477824418","showName":"čĩĩäēéŖæĩč¯įž¤","faceURL":"https://web.rentsoft.cn/api_enterprise/object/4102041542/ä¸į.png","recvMsgOpt":0,"unreadCount":0,"groupAtType":4,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.703 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.703 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1529525623","conversationType":3,"userID":"","groupID":"1529525623","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.714 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.715 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1533379639","conversationType":3,"userID":"","groupID":"1533379639","showName":"ææįŽ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.720 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.720 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1566911564","conversationType":3,"userID":"","groupID":"1566911564","showName":"æĩč¯aa","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.731 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.732 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1577882571","conversationType":3,"userID":"","groupID":"1577882571","showName":"aaaa","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.736 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.736 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1597892186","conversationType":3,"userID":"","groupID":"1597892186","showName":"222","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.741 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.741 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:152] not same {"conversationID": "sg_161019322", "server": 0, "local": 0}
+2024-06-24 10:57:10.742 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:293] sync update {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_161019322","conversationType":3,"userID":"","groupID":"161019322","showName":"æĩč¯įž¤","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}, "local": {"conversationID":"sg_161019322","conversationType":3,"userID":"","groupID":"161019322","showName":"æĩč¯įž¤","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"{\"clientMsgID\":\"a3a3d6e0aeaf5ad4b2fdbe7707d6a185\",\"serverMsgID\":\"96d8ed55c12579dd32a7631eeedb0eaa\",\"createTime\":1718850240266,\"sendTime\":1718850240267,\"sessionType\":3,\"sendID\":\"imAdmin\",\"recvID\":\"161019322\",\"msgFrom\":200,\"contentType\":1504,\"senderPlatformID\":0,\"groupID\":\"161019322\",\"seq\":3,\"isRead\":false,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"group\\\":{\\\"groupID\\\":\\\"161019322\\\",\\\"groupName\\\":\\\"æĩč¯įž¤\\\",\\\"notification\\\":\\\"\\\",\\\"introduction\\\":\\\"\\\",\\\"faceURL\\\":\\\"\\\",\\\"ownerUserID\\\":\\\"3923864156\\\",\\\"createTime\\\":1716449051809,\\\"memberCount\\\":2,\\\"ex\\\":\\\"\\\",\\\"status\\\":0,\\\"creatorUserID\\\":\\\"3923864156\\\",\\\"groupType\\\":2,\\\"needVerification\\\":0,\\\"lookMemberInfo\\\":0,\\\"applyMemberFriend\\\":0,\\\"notificationUpdateTime\\\":0,\\\"notificationUserID\\\":\\\"\\\"},\\\"quitUser\\\":{\\\"groupID\\\":\\\"161019322\\\",\\\"userID\\\":\\\"2725451243\\\",\\\"roleLevel\\\":20,\\\"joinTime\\\":1716449051811,\\\"nickname\\\":\\\"OpenIM-Andrew123\\\",\\\"faceURL\\\":\\\"\\\",\\\"appMangerLevel\\\":0,\\\"joinSource\\\":2,\\\"operatorUserID\\\":\\\"3923864156\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":0,\\\"inviterUserID\\\":\\\"3923864156\\\"},\\\"operationTime\\\":0,\\\"groupMemberVersion\\\":4,\\\"groupMemberVersionID\\\":\\\"6672d39de27166fe7781173f\\\"}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}}","latestMsgSendTime":1718850240267,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":3,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:10.747 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[{\"conversationID\":\"sg_161019322\",\"conversationType\":3,\"userID\":\"\",\"groupID\":\"161019322\",\"showName\":\"æĩč¯įž¤\",\"faceURL\":\"\",\"recvMsgOpt\":0,\"unreadCount\":0,\"groupAtType\":0,\"latestMsg\":\"{\\\"clientMsgID\\\":\\\"a3a3d6e0aeaf5ad4b2fdbe7707d6a185\\\",\\\"serverMsgID\\\":\\\"96d8ed55c12579dd32a7631eeedb0eaa\\\",\\\"createTime\\\":1718850240266,\\\"sendTime\\\":1718850240267,\\\"sessionType\\\":3,\\\"sendID\\\":\\\"imAdmin\\\",\\\"recvID\\\":\\\"161019322\\\",\\\"msgFrom\\\":200,\\\"contentType\\\":1504,\\\"senderPlatformID\\\":0,\\\"groupID\\\":\\\"161019322\\\",\\\"seq\\\":3,\\\"isRead\\\":false,\\\"status\\\":2,\\\"notificationElem\\\":{\\\"detail\\\":\\\"{\\\\\\\"group\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"161019322\\\\\\\",\\\\\\\"groupName\\\\\\\":\\\\\\\"æĩč¯įž¤\\\\\\\",\\\\\\\"notification\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"introduction\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"ownerUserID\\\\\\\":\\\\\\\"3923864156\\\\\\\",\\\\\\\"createTime\\\\\\\":1716449051809,\\\\\\\"memberCount\\\\\\\":2,\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"status\\\\\\\":0,\\\\\\\"creatorUserID\\\\\\\":\\\\\\\"3923864156\\\\\\\",\\\\\\\"groupType\\\\\\\":2,\\\\\\\"needVerification\\\\\\\":0,\\\\\\\"lookMemberInfo\\\\\\\":0,\\\\\\\"applyMemberFriend\\\\\\\":0,\\\\\\\"notificationUpdateTime\\\\\\\":0,\\\\\\\"notificationUserID\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"quitUser\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"161019322\\\\\\\",\\\\\\\"userID\\\\\\\":\\\\\\\"2725451243\\\\\\\",\\\\\\\"roleLevel\\\\\\\":20,\\\\\\\"joinTime\\\\\\\":1716449051811,\\\\\\\"nickname\\\\\\\":\\\\\\\"OpenIM-Andrew123\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"appMangerLevel\\\\\\\":0,\\\\\\\"joinSource\\\\\\\":2,\\\\\\\"operatorUserID\\\\\\\":\\\\\\\"3923864156\\\\\\\",\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"muteEndTime\\\\\\\":0,\\\\\\\"inviterUserID\\\\\\\":\\\\\\\"3923864156\\\\\\\"},\\\\\\\"operationTime\\\\\\\":0,\\\\\\\"groupMemberVersion\\\\\\\":4,\\\\\\\"groupMemberVersionID\\\\\\\":\\\\\\\"6672d39de27166fe7781173f\\\\\\\"}\\\"},\\\"attachedInfoElem\\\":{\\\"groupHasReadInfo\\\":{\\\"hasReadCount\\\":0,\\\"groupMemberCount\\\":0},\\\"isPrivateChat\\\":false,\\\"burnDuration\\\":0,\\\"hasReadTime\\\":0,\\\"isEncryption\\\":false,\\\"inEncryptStatus\\\":false}}\",\"latestMsgSendTime\":1718850240267,\"draftText\":\"\",\"draftTextTime\":0,\"isPinned\":false,\"isPrivateChat\":false,\"burnDuration\":0,\"isNotInGroup\":false,\"updateUnreadCountTime\":0,\"attachedInfo\":\"\",\"ex\":\"\",\"maxSeq\":0,\"minSeq\":0,\"hasReadSeq\":0,\"msgDestructTime\":0,\"isMsgDestruct\":false}]"}
+2024-06-24 10:57:10.748 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1629977487","conversationType":3,"userID":"","groupID":"1629977487","showName":"122121","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.753 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.753 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1633118996","conversationType":3,"userID":"","groupID":"1633118996","showName":"1111","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.758 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.758 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1639333330","conversationType":3,"userID":"","groupID":"1639333330","showName":"æĩč¯įž¤2","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.764 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.764 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1661305134","conversationType":3,"userID":"","groupID":"1661305134","showName":"æĩč¯įž¤įŽĄįåčŊ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.770 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.770 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1662278840","conversationType":3,"userID":"","groupID":"1662278840","showName":"1111","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.777 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.778 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1671249356","conversationType":3,"userID":"","groupID":"1671249356","showName":"1111","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.782 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.782 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1687917547","conversationType":3,"userID":"","groupID":"1687917547","showName":"æĩč¯įž¤ä¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.786 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.787 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1708658560","conversationType":3,"userID":"","groupID":"1708658560","showName":"寚寚寚","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.791 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.791 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1710171993","conversationType":3,"userID":"","groupID":"1710171993","showName":"TEST","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.797 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.797 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1738113305","conversationType":3,"userID":"","groupID":"1738113305","showName":"123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:10.801 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.801 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1747585985","conversationType":3,"userID":"","groupID":"1747585985","showName":"sdsdf ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.806 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.806 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1765818066","conversationType":3,"userID":"","groupID":"1765818066","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.811 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.811 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1780190492","conversationType":3,"userID":"","groupID":"1780190492","showName":"åįéŽéĸ莰åŊåéĻ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:10.816 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.816 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1785857431","conversationType":3,"userID":"","groupID":"1785857431","showName":"å§åąéĸä¸ē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.820 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.820 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1845606214","conversationType":3,"userID":"","groupID":"1845606214","showName":"æĩč¯11","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:10.826 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.826 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1851829045","conversationType":3,"userID":"","groupID":"1851829045","showName":"æĩč¯įž¤č","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.832 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.833 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1861322715","conversationType":3,"userID":"","groupID":"1861322715","showName":"great","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.840 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.840 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1869190487","conversationType":3,"userID":"","groupID":"1869190487","showName":"dsdadas","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.844 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.845 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1898996710","conversationType":3,"userID":"","groupID":"1898996710","showName":"2323","faceURL":"https://web.rentsoft.cn/api_enterprise/object/1308526907/kabi.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.850 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.850 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_192211066","conversationType":3,"userID":"","groupID":"192211066","showName":"HJGHYUGUH","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.854 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.855 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_19439682","conversationType":3,"userID":"","groupID":"19439682","showName":"cadįž¤","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.859 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.860 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1959629060","conversationType":3,"userID":"","groupID":"1959629060","showName":"111","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:10.864 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.865 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1986908192","conversationType":3,"userID":"","groupID":"1986908192","showName":"OPENIM1111","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":4,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.870 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.870 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_1999119891","conversationType":3,"userID":"","groupID":"1999119891","showName":"Eastãdiaodiaoãasd","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:10.874 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.875 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2008565166","conversationType":3,"userID":"","groupID":"2008565166","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.879 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.880 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2048354932","conversationType":3,"userID":"","groupID":"2048354932","showName":"dsa","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":2,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.884 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.884 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2062637119","conversationType":3,"userID":"","groupID":"2062637119","showName":"åĻåĻ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.890 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.890 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2103648114","conversationType":3,"userID":"","groupID":"2103648114","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.896 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.896 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2105177423","conversationType":3,"userID":"","groupID":"2105177423","showName":"test1111","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.902 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.902 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2138010215","conversationType":3,"userID":"","groupID":"2138010215","showName":"ss","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:10.907 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.907 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2141832100","conversationType":3,"userID":"","groupID":"2141832100","showName":"1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.912 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.912 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2145904160","conversationType":3,"userID":"","groupID":"2145904160","showName":"hhhãJane1ãOpenIM-Gordon","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.917 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.918 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2156407784","conversationType":3,"userID":"","groupID":"2156407784","showName":"æäšäŊŋį¨č´äš°","faceURL":"https://web.rentsoft.cn/api_enterprise/object/4300349125/image_cropper_1708211055534.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.923 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.923 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_217468446","conversationType":3,"userID":"","groupID":"217468446","showName":"KAU","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.928 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.928 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2184807685","conversationType":3,"userID":"","groupID":"2184807685","showName":"222","faceURL":"https://web.rentsoft.cn/api_enterprise/object/4911414951/åąåšæĒåž 2023-11-08 142433.png","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.932 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.932 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2186335908","conversationType":3,"userID":"","groupID":"2186335908","showName":"æĩč¯įž¤ä¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.936 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.937 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2206344631","conversationType":3,"userID":"","groupID":"2206344631","showName":"čĄæįŽą","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.941 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.941 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_22125508","conversationType":3,"userID":"","groupID":"22125508","showName":"æ¯čžéēģįĻ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.946 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.946 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2264748085","conversationType":3,"userID":"","groupID":"2264748085","showName":"åŋĢåäē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.959 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.960 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2276584901","conversationType":3,"userID":"","groupID":"2276584901","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:10.966 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.967 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2287005875","conversationType":3,"userID":"","groupID":"2287005875","showName":"čŋåĨŊåååããã","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:10.975 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.975 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2306232581","conversationType":3,"userID":"","groupID":"2306232581","showName":"xx","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.982 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.983 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2311972027","conversationType":3,"userID":"","groupID":"2311972027","showName":"åļåģēãAiRobotãDFđđ¤","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.988 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.988 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2314844644","conversationType":3,"userID":"","groupID":"2314844644","showName":"éąéąéą","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:10.993 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:10.994 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2328086176","conversationType":3,"userID":"","groupID":"2328086176","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.000 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.001 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2337816601","conversationType":3,"userID":"","groupID":"2337816601","showName":"ååŧåĨå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:11.005 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.005 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2338619613","conversationType":3,"userID":"","groupID":"2338619613","showName":"åŋĢäščąįŊ2","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.009 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.009 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2338903916","conversationType":3,"userID":"","groupID":"2338903916","showName":"vv","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.014 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.014 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2377136176","conversationType":3,"userID":"","groupID":"2377136176","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.018 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.018 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2386261452","conversationType":3,"userID":"","groupID":"2386261452","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.024 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.024 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2388518829","conversationType":3,"userID":"","groupID":"2388518829","showName":"å¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":4,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.028 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.028 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2388705044","conversationType":3,"userID":"","groupID":"2388705044","showName":"1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.033 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.033 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2417467281","conversationType":3,"userID":"","groupID":"2417467281","showName":"æģ´æģ´įį","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.038 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.038 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2438710897","conversationType":3,"userID":"","groupID":"2438710897","showName":"åå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.045 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.045 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_244473388","conversationType":3,"userID":"","groupID":"244473388","showName":"by by","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:11.051 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.051 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2458134291","conversationType":3,"userID":"","groupID":"2458134291","showName":"9999","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:11.055 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.056 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_246329239","conversationType":3,"userID":"","groupID":"246329239","showName":"yyyyyyyyyyy","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":4,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.060 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.061 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2474039382","conversationType":3,"userID":"","groupID":"2474039382","showName":"1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.066 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.066 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2479200198","conversationType":3,"userID":"","groupID":"2479200198","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.070 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.070 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2481127587","conversationType":3,"userID":"","groupID":"2481127587","showName":"test11111","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.074 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.074 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2526989903","conversationType":3,"userID":"","groupID":"2526989903","showName":"éŖįŋ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.080 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.080 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2527119729","conversationType":3,"userID":"","groupID":"2527119729","showName":"1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.084 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.084 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_254264603","conversationType":3,"userID":"","groupID":"254264603","showName":"hh","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.088 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.088 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2546075374","conversationType":3,"userID":"","groupID":"2546075374","showName":"dfddd","faceURL":"https://web.rentsoft.cn/api_enterprise/object/2823062805/å æ˛š.gif","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.092 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.093 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_254754437","conversationType":3,"userID":"","groupID":"254754437","showName":"11","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:11.098 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.098 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2563467770","conversationType":3,"userID":"","groupID":"2563467770","showName":"test1111","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.103 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.103 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2595610523","conversationType":3,"userID":"","groupID":"2595610523","showName":"1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.110 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.111 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2599904267","conversationType":3,"userID":"","groupID":"2599904267","showName":"a","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.115 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.115 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2600924814","conversationType":3,"userID":"","groupID":"2600924814","showName":"čļ
įē§įž¤æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.120 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.120 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2604460151","conversationType":3,"userID":"","groupID":"2604460151","showName":"Tesr","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:11.227 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.228 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_261042702","conversationType":3,"userID":"","groupID":"261042702","showName":"į§å¤Šįž¤1","faceURL":"https://web.rentsoft.cn/api_enterprise/object/9135721405/Autumn.jpeg","recvMsgOpt":0,"unreadCount":0,"groupAtType":4,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:11.233 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.234 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2625540721","conversationType":3,"userID":"","groupID":"2625540721","showName":"XXXX","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.239 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.239 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2637047860","conversationType":3,"userID":"","groupID":"2637047860","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:11.243 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.244 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2670578906","conversationType":3,"userID":"","groupID":"2670578906","showName":"6666","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.249 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.249 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2677549796","conversationType":3,"userID":"","groupID":"2677549796","showName":"openimåŽååŧåįž¤","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.254 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.254 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2700512134","conversationType":3,"userID":"","groupID":"2700512134","showName":"hi there","faceURL":"https://web.rentsoft.cn/api_enterprise/object/4648916002/image_cropper_1705882770229.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":4,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.260 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.260 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2703056345","conversationType":3,"userID":"","groupID":"2703056345","showName":"æĩč¯įž¤","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.269 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.270 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2712739968","conversationType":3,"userID":"","groupID":"2712739968","showName":"į§äēēæĩč¯įž¤","faceURL":"https://web.rentsoft.cn/api_enterprise/object/8835887772/FgeBQDvVsAA9scn.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:11.281 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.282 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2715338888","conversationType":3,"userID":"","groupID":"2715338888","showName":"éĸ渊æĒäē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.288 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.289 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2738270862","conversationType":3,"userID":"","groupID":"2738270862","showName":"ææææ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.294 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.295 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2744603618","conversationType":3,"userID":"","groupID":"2744603618","showName":"å§Ŧč§čžįģ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:11.300 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.300 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2752799086","conversationType":3,"userID":"","groupID":"2752799086","showName":"hbn","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:11.305 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.305 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2783925829","conversationType":3,"userID":"","groupID":"2783925829","showName":"æĩč¯čå¤ŠčŽ°åŊæŧĢæ¸¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.311 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.311 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2806967959","conversationType":3,"userID":"","groupID":"2806967959","showName":"122212","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.315 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.315 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2825124274","conversationType":3,"userID":"","groupID":"2825124274","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:11.319 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.319 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2833552317","conversationType":3,"userID":"","groupID":"2833552317","showName":"å","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.323 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.323 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:152] not same {"conversationID": "sg_2836218947", "server": 0, "local": 0}
+2024-06-24 10:57:11.323 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:293] sync update {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2836218947","conversationType":3,"userID":"","groupID":"2836218947","showName":"æĩč¯įž¤įŽĄį","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}, "local": {"conversationID":"sg_2836218947","conversationType":3,"userID":"","groupID":"2836218947","showName":"æĩč¯įž¤įŽĄį","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"{\"clientMsgID\":\"06284c5a5f10d1f472f5f8bc938b47a3\",\"serverMsgID\":\"bba734e36558164cfb5e40206ba26259\",\"createTime\":1718936592922,\"sendTime\":1718936592923,\"sessionType\":3,\"sendID\":\"imAdmin\",\"recvID\":\"2836218947\",\"msgFrom\":200,\"contentType\":1504,\"senderPlatformID\":0,\"groupID\":\"2836218947\",\"seq\":2,\"isRead\":false,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"group\\\":{\\\"groupID\\\":\\\"2836218947\\\",\\\"groupName\\\":\\\"æĩč¯įž¤įŽĄį\\\",\\\"notification\\\":\\\"\\\",\\\"introduction\\\":\\\"\\\",\\\"faceURL\\\":\\\"\\\",\\\"ownerUserID\\\":\\\"4918276559\\\",\\\"createTime\\\":1715065335408,\\\"memberCount\\\":6,\\\"ex\\\":\\\"\\\",\\\"status\\\":0,\\\"creatorUserID\\\":\\\"4918276559\\\",\\\"groupType\\\":2,\\\"needVerification\\\":0,\\\"lookMemberInfo\\\":1,\\\"applyMemberFriend\\\":1,\\\"notificationUpdateTime\\\":0,\\\"notificationUserID\\\":\\\"\\\"},\\\"quitUser\\\":{\\\"groupID\\\":\\\"2836218947\\\",\\\"userID\\\":\\\"6319015024\\\",\\\"roleLevel\\\":20,\\\"joinTime\\\":1715065335409,\\\"nickname\\\":\\\"OpenIM-wind\\\",\\\"faceURL\\\":\\\"https://web.rentsoft.cn/api_enterprise/object/6319015024/pexels-photo-2174974.webp\\\",\\\"appMangerLevel\\\":0,\\\"joinSource\\\":2,\\\"operatorUserID\\\":\\\"4918276559\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":0,\\\"inviterUserID\\\":\\\"4918276559\\\"},\\\"operationTime\\\":0,\\\"groupMemberVersion\\\":3,\\\"groupMemberVersionID\\\":\\\"6672d39de27166fe7781170c\\\"}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}}","latestMsgSendTime":1718936592923,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":2,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:11.328 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[{\"conversationID\":\"sg_2836218947\",\"conversationType\":3,\"userID\":\"\",\"groupID\":\"2836218947\",\"showName\":\"æĩč¯įž¤įŽĄį\",\"faceURL\":\"\",\"recvMsgOpt\":0,\"unreadCount\":0,\"groupAtType\":0,\"latestMsg\":\"{\\\"clientMsgID\\\":\\\"06284c5a5f10d1f472f5f8bc938b47a3\\\",\\\"serverMsgID\\\":\\\"bba734e36558164cfb5e40206ba26259\\\",\\\"createTime\\\":1718936592922,\\\"sendTime\\\":1718936592923,\\\"sessionType\\\":3,\\\"sendID\\\":\\\"imAdmin\\\",\\\"recvID\\\":\\\"2836218947\\\",\\\"msgFrom\\\":200,\\\"contentType\\\":1504,\\\"senderPlatformID\\\":0,\\\"groupID\\\":\\\"2836218947\\\",\\\"seq\\\":2,\\\"isRead\\\":false,\\\"status\\\":2,\\\"notificationElem\\\":{\\\"detail\\\":\\\"{\\\\\\\"group\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"2836218947\\\\\\\",\\\\\\\"groupName\\\\\\\":\\\\\\\"æĩč¯įž¤įŽĄį\\\\\\\",\\\\\\\"notification\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"introduction\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"ownerUserID\\\\\\\":\\\\\\\"4918276559\\\\\\\",\\\\\\\"createTime\\\\\\\":1715065335408,\\\\\\\"memberCount\\\\\\\":6,\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"status\\\\\\\":0,\\\\\\\"creatorUserID\\\\\\\":\\\\\\\"4918276559\\\\\\\",\\\\\\\"groupType\\\\\\\":2,\\\\\\\"needVerification\\\\\\\":0,\\\\\\\"lookMemberInfo\\\\\\\":1,\\\\\\\"applyMemberFriend\\\\\\\":1,\\\\\\\"notificationUpdateTime\\\\\\\":0,\\\\\\\"notificationUserID\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"quitUser\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"2836218947\\\\\\\",\\\\\\\"userID\\\\\\\":\\\\\\\"6319015024\\\\\\\",\\\\\\\"roleLevel\\\\\\\":20,\\\\\\\"joinTime\\\\\\\":1715065335409,\\\\\\\"nickname\\\\\\\":\\\\\\\"OpenIM-wind\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"https://web.rentsoft.cn/api_enterprise/object/6319015024/pexels-photo-2174974.webp\\\\\\\",\\\\\\\"appMangerLevel\\\\\\\":0,\\\\\\\"joinSource\\\\\\\":2,\\\\\\\"operatorUserID\\\\\\\":\\\\\\\"4918276559\\\\\\\",\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"muteEndTime\\\\\\\":0,\\\\\\\"inviterUserID\\\\\\\":\\\\\\\"4918276559\\\\\\\"},\\\\\\\"operationTime\\\\\\\":0,\\\\\\\"groupMemberVersion\\\\\\\":3,\\\\\\\"groupMemberVersionID\\\\\\\":\\\\\\\"6672d39de27166fe7781170c\\\\\\\"}\\\"},\\\"attachedInfoElem\\\":{\\\"groupHasReadInfo\\\":{\\\"hasReadCount\\\":0,\\\"groupMemberCount\\\":0},\\\"isPrivateChat\\\":false,\\\"burnDuration\\\":0,\\\"hasReadTime\\\":0,\\\"isEncryption\\\":false,\\\"inEncryptStatus\\\":false}}\",\"latestMsgSendTime\":1718936592923,\"draftText\":\"\",\"draftTextTime\":0,\"isPinned\":false,\"isPrivateChat\":false,\"burnDuration\":0,\"isNotInGroup\":false,\"updateUnreadCountTime\":0,\"attachedInfo\":\"\",\"ex\":\"\",\"maxSeq\":0,\"minSeq\":0,\"hasReadSeq\":0,\"msgDestructTime\":0,\"isMsgDestruct\":false}]"}
+2024-06-24 10:57:11.329 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2839621663","conversationType":3,"userID":"","groupID":"2839621663","showName":"莝å
å
","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:11.334 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.335 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2842792512","conversationType":3,"userID":"","groupID":"2842792512","showName":"æĩč¯įž¤88","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.345 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.345 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_28456085","conversationType":3,"userID":"","groupID":"28456085","showName":"æĩč¯groupat","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.352 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.352 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2864738888","conversationType":3,"userID":"","groupID":"2864738888","showName":"111","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:11.360 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.361 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2866659389","conversationType":3,"userID":"","groupID":"2866659389","showName":"ååå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:11.367 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.368 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2889681075","conversationType":3,"userID":"","groupID":"2889681075","showName":"ååģē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.374 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.374 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2904928842","conversationType":3,"userID":"","groupID":"2904928842","showName":"fhjkld","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.380 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.380 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2942457817","conversationType":3,"userID":"","groupID":"2942457817","showName":"1111111","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.385 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.386 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2956229812","conversationType":3,"userID":"","groupID":"2956229812","showName":"skin","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.390 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.390 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2958761051","conversationType":3,"userID":"","groupID":"2958761051","showName":"ai","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.395 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.395 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2991140459","conversationType":3,"userID":"","groupID":"2991140459","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:11.399 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.400 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_2991351838","conversationType":3,"userID":"","groupID":"2991351838","showName":"æĩč¯åˇ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.404 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.404 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3014735116","conversationType":3,"userID":"","groupID":"3014735116","showName":"good","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.409 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.409 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3069388481","conversationType":3,"userID":"","groupID":"3069388481","showName":"123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:11.415 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.415 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3134715281","conversationType":3,"userID":"","groupID":"3134715281","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.421 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.421 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3158680188","conversationType":3,"userID":"","groupID":"3158680188","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":1,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.426 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.427 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3204313055","conversationType":3,"userID":"","groupID":"3204313055","showName":"æĩč¯įž¤","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":4,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.433 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.433 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3227287827","conversationType":3,"userID":"","groupID":"3227287827","showName":"333","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:11.438 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.438 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_324253771","conversationType":3,"userID":"","groupID":"324253771","showName":"OpenIMå
é¨ä礿ĩįž¤","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":true,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:11.444 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.444 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3253663629","conversationType":3,"userID":"","groupID":"3253663629","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.448 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.448 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3266228942","conversationType":3,"userID":"","groupID":"3266228942","showName":"ååąąčŽēå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.453 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.453 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3269509736","conversationType":3,"userID":"","groupID":"3269509736","showName":"123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:11.458 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.458 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3276743019","conversationType":3,"userID":"","groupID":"3276743019","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.462 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.463 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3295574908","conversationType":3,"userID":"","groupID":"3295574908","showName":"įéĄŋ8ãellan_IOSãGordon","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:11.467 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.468 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3327630005","conversationType":3,"userID":"","groupID":"3327630005","showName":"1111","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.472 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.472 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3369946551","conversationType":3,"userID":"","groupID":"3369946551","showName":"æĩč¯įž¤","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.477 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.478 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3384390386","conversationType":3,"userID":"","groupID":"3384390386","showName":"OpenMeetingéĄšįŽæ˛éįž¤","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.483 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.483 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_339303081","conversationType":3,"userID":"","groupID":"339303081","showName":"aaaa","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:11.489 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.489 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3416772962","conversationType":3,"userID":"","groupID":"3416772962","showName":"åˇĨäŊįž¤1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.495 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.495 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3417930724","conversationType":3,"userID":"","groupID":"3417930724","showName":"ddddd","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.501 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.501 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3430036352","conversationType":3,"userID":"","groupID":"3430036352","showName":"¡1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.508 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.508 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3438817431","conversationType":3,"userID":"","groupID":"3438817431","showName":"åˇåąbug","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.512 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.513 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3456954170","conversationType":3,"userID":"","groupID":"3456954170","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.517 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.517 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3489091446","conversationType":3,"userID":"","groupID":"3489091446","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.522 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.522 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3504722739","conversationType":3,"userID":"","groupID":"3504722739","showName":"saberãAåĨãååå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.527 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.527 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3523019119","conversationType":3,"userID":"","groupID":"3523019119","showName":"åååå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.532 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.532 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3560180171","conversationType":3,"userID":"","groupID":"3560180171","showName":"3345","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.537 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.537 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3590768919","conversationType":3,"userID":"","groupID":"3590768919","showName":"haihaiæĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.542 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.542 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_359361212","conversationType":3,"userID":"","groupID":"359361212","showName":"æĨæĨæĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.547 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.547 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3595843332","conversationType":3,"userID":"","groupID":"3595843332","showName":"æä¸å°","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:11.552 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.553 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3610850870","conversationType":3,"userID":"","groupID":"3610850870","showName":"12580","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.559 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.560 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3634650086","conversationType":3,"userID":"","groupID":"3634650086","showName":"æĩč¯hhhhhhh","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.564 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.565 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3636664095","conversationType":3,"userID":"","groupID":"3636664095","showName":"å¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.569 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.569 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3652923926","conversationType":3,"userID":"","groupID":"3652923926","showName":"大čä¸č¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.574 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.574 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3655346906","conversationType":3,"userID":"","groupID":"3655346906","showName":"111","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.578 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.579 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3693200714","conversationType":3,"userID":"","groupID":"3693200714","showName":"1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.582 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.582 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3700863541","conversationType":3,"userID":"","groupID":"3700863541","showName":"11123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.587 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.587 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3703077350","conversationType":3,"userID":"","groupID":"3703077350","showName":"111","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.592 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.592 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3704350375","conversationType":3,"userID":"","groupID":"3704350375","showName":"Help-user-openim-send-msg","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.597 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.597 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3704855948","conversationType":3,"userID":"","groupID":"3704855948","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.601 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.602 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3727180154","conversationType":3,"userID":"","groupID":"3727180154","showName":"111","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:11.605 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.606 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3750772487","conversationType":3,"userID":"","groupID":"3750772487","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.612 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.612 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3759778360","conversationType":3,"userID":"","groupID":"3759778360","showName":"11","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.620 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.621 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3809568826","conversationType":3,"userID":"","groupID":"3809568826","showName":"Hi","faceURL":"https://web.rentsoft.cn/api_enterprise/object/4911414951/image_2024-04-29-08-01.377.png","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.633 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.634 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3831608740","conversationType":3,"userID":"","groupID":"3831608740","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.644 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.645 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3845608473","conversationType":3,"userID":"","groupID":"3845608473","showName":"ååå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.652 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.652 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:152] not same {"conversationID": "sg_3896488295", "server": 0, "local": 0}
+2024-06-24 10:57:11.653 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:293] sync update {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3896488295","conversationType":3,"userID":"","groupID":"3896488295","showName":"imæĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}, "local": {"conversationID":"sg_3896488295","conversationType":3,"userID":"","groupID":"3896488295","showName":"imæĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":1,"groupAtType":0,"latestMsg":"{\"clientMsgID\":\"dfc06971a5ff46e072117247b92b68e6\",\"serverMsgID\":\"f57eb140f799156f77187ed2d03754d5\",\"createTime\":1718801595912,\"sendTime\":1718801595913,\"sessionType\":3,\"sendID\":\"imAdmin\",\"recvID\":\"3896488295\",\"msgFrom\":200,\"contentType\":1504,\"senderPlatformID\":0,\"groupID\":\"3896488295\",\"seq\":1,\"isRead\":false,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"group\\\":{\\\"groupID\\\":\\\"3896488295\\\",\\\"groupName\\\":\\\"imæĩč¯\\\",\\\"notification\\\":\\\"\\\",\\\"introduction\\\":\\\"\\\",\\\"faceURL\\\":\\\"\\\",\\\"ownerUserID\\\":\\\"3862147424\\\",\\\"createTime\\\":1704805511573,\\\"memberCount\\\":9,\\\"ex\\\":\\\"\\\",\\\"status\\\":0,\\\"creatorUserID\\\":\\\"3862147424\\\",\\\"groupType\\\":2,\\\"needVerification\\\":0,\\\"lookMemberInfo\\\":0,\\\"applyMemberFriend\\\":0,\\\"notificationUpdateTime\\\":0,\\\"notificationUserID\\\":\\\"\\\"},\\\"quitUser\\\":{\\\"groupID\\\":\\\"3896488295\\\",\\\"userID\\\":\\\"2725451243\\\",\\\"roleLevel\\\":20,\\\"joinTime\\\":1704805511574,\\\"nickname\\\":\\\"OpenIM-Andrew123\\\",\\\"faceURL\\\":\\\"\\\",\\\"appMangerLevel\\\":0,\\\"joinSource\\\":2,\\\"operatorUserID\\\":\\\"3862147424\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":0,\\\"inviterUserID\\\":\\\"3862147424\\\"},\\\"operationTime\\\":0,\\\"groupMemberVersion\\\":2,\\\"groupMemberVersionID\\\":\\\"6672d39de27166fe778116af\\\"}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}}","latestMsgSendTime":1718801595913,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:11.659 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[{\"conversationID\":\"sg_3896488295\",\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3896488295\",\"showName\":\"imæĩč¯\",\"faceURL\":\"\",\"recvMsgOpt\":0,\"unreadCount\":1,\"groupAtType\":0,\"latestMsg\":\"{\\\"clientMsgID\\\":\\\"dfc06971a5ff46e072117247b92b68e6\\\",\\\"serverMsgID\\\":\\\"f57eb140f799156f77187ed2d03754d5\\\",\\\"createTime\\\":1718801595912,\\\"sendTime\\\":1718801595913,\\\"sessionType\\\":3,\\\"sendID\\\":\\\"imAdmin\\\",\\\"recvID\\\":\\\"3896488295\\\",\\\"msgFrom\\\":200,\\\"contentType\\\":1504,\\\"senderPlatformID\\\":0,\\\"groupID\\\":\\\"3896488295\\\",\\\"seq\\\":1,\\\"isRead\\\":false,\\\"status\\\":2,\\\"notificationElem\\\":{\\\"detail\\\":\\\"{\\\\\\\"group\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"3896488295\\\\\\\",\\\\\\\"groupName\\\\\\\":\\\\\\\"imæĩč¯\\\\\\\",\\\\\\\"notification\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"introduction\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"ownerUserID\\\\\\\":\\\\\\\"3862147424\\\\\\\",\\\\\\\"createTime\\\\\\\":1704805511573,\\\\\\\"memberCount\\\\\\\":9,\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"status\\\\\\\":0,\\\\\\\"creatorUserID\\\\\\\":\\\\\\\"3862147424\\\\\\\",\\\\\\\"groupType\\\\\\\":2,\\\\\\\"needVerification\\\\\\\":0,\\\\\\\"lookMemberInfo\\\\\\\":0,\\\\\\\"applyMemberFriend\\\\\\\":0,\\\\\\\"notificationUpdateTime\\\\\\\":0,\\\\\\\"notificationUserID\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"quitUser\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"3896488295\\\\\\\",\\\\\\\"userID\\\\\\\":\\\\\\\"2725451243\\\\\\\",\\\\\\\"roleLevel\\\\\\\":20,\\\\\\\"joinTime\\\\\\\":1704805511574,\\\\\\\"nickname\\\\\\\":\\\\\\\"OpenIM-Andrew123\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"appMangerLevel\\\\\\\":0,\\\\\\\"joinSource\\\\\\\":2,\\\\\\\"operatorUserID\\\\\\\":\\\\\\\"3862147424\\\\\\\",\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"muteEndTime\\\\\\\":0,\\\\\\\"inviterUserID\\\\\\\":\\\\\\\"3862147424\\\\\\\"},\\\\\\\"operationTime\\\\\\\":0,\\\\\\\"groupMemberVersion\\\\\\\":2,\\\\\\\"groupMemberVersionID\\\\\\\":\\\\\\\"6672d39de27166fe778116af\\\\\\\"}\\\"},\\\"attachedInfoElem\\\":{\\\"groupHasReadInfo\\\":{\\\"hasReadCount\\\":0,\\\"groupMemberCount\\\":0},\\\"isPrivateChat\\\":false,\\\"burnDuration\\\":0,\\\"hasReadTime\\\":0,\\\"isEncryption\\\":false,\\\"inEncryptStatus\\\":false}}\",\"latestMsgSendTime\":1718801595913,\"draftText\":\"\",\"draftTextTime\":0,\"isPinned\":false,\"isPrivateChat\":false,\"burnDuration\":0,\"isNotInGroup\":false,\"updateUnreadCountTime\":0,\"attachedInfo\":\"\",\"ex\":\"\",\"maxSeq\":0,\"minSeq\":0,\"hasReadSeq\":0,\"msgDestructTime\":0,\"isMsgDestruct\":false}]"}
+2024-06-24 10:57:11.661 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3901598750","conversationType":3,"userID":"","groupID":"3901598750","showName":"111","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:11.666 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.666 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3923775376","conversationType":3,"userID":"","groupID":"3923775376","showName":"12","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.671 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.671 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:152] not same {"conversationID": "sg_3926645279", "server": 0, "local": 0}
+2024-06-24 10:57:11.671 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:293] sync update {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3926645279","conversationType":3,"userID":"","groupID":"3926645279","showName":"yo123","faceURL":"faceURL url","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}, "local": {"conversationID":"sg_3926645279","conversationType":3,"userID":"","groupID":"3926645279","showName":"yo123","faceURL":"faceURL url","recvMsgOpt":0,"unreadCount":13,"groupAtType":0,"latestMsg":"{\"clientMsgID\":\"b7312f062ea8c5203a747f577d891096\",\"serverMsgID\":\"c6d35a7f550bda5f52d74f17281dc8a3\",\"createTime\":1719040920865,\"sendTime\":1719040920868,\"sessionType\":3,\"sendID\":\"imAdmin\",\"recvID\":\"3926645279\",\"msgFrom\":200,\"contentType\":1507,\"senderPlatformID\":0,\"groupID\":\"3926645279\",\"seq\":18,\"isRead\":false,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"group\\\":{\\\"groupID\\\":\\\"3926645279\\\",\\\"groupName\\\":\\\"yo123\\\",\\\"notification\\\":\\\"new notification\\\",\\\"introduction\\\":\\\"new notification\\\",\\\"faceURL\\\":\\\"faceURL url\\\",\\\"ownerUserID\\\":\\\"1695766238\\\",\\\"createTime\\\":1718952270504,\\\"memberCount\\\":2,\\\"ex\\\":\\\"new ex\\\",\\\"status\\\":0,\\\"creatorUserID\\\":\\\"\\\",\\\"groupType\\\":2,\\\"needVerification\\\":1,\\\"lookMemberInfo\\\":1,\\\"applyMemberFriend\\\":1,\\\"notificationUpdateTime\\\":1718968191355,\\\"notificationUserID\\\":\\\"imAdmin\\\"},\\\"opUser\\\":{\\\"groupID\\\":\\\"3926645279\\\",\\\"userID\\\":\\\"imAdmin\\\",\\\"roleLevel\\\":60,\\\"joinTime\\\":0,\\\"nickname\\\":\\\"admin\\\",\\\"faceURL\\\":\\\"\\\",\\\"appMangerLevel\\\":2,\\\"joinSource\\\":0,\\\"operatorUserID\\\":\\\"\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":0,\\\"inviterUserID\\\":\\\"\\\"},\\\"newGroupOwner\\\":{\\\"groupID\\\":\\\"3926645279\\\",\\\"userID\\\":\\\"1695766238\\\",\\\"roleLevel\\\":100,\\\"joinTime\\\":1718968462104,\\\"nickname\\\":\\\"OpenIM-Gordon\\\",\\\"faceURL\\\":\\\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\\\",\\\"appMangerLevel\\\":0,\\\"joinSource\\\":2,\\\"operatorUserID\\\":\\\"\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":0,\\\"inviterUserID\\\":\\\"\\\"},\\\"oldGroupOwner\\\":\\\"\\\",\\\"operationTime\\\":0,\\\"oldGroupOwnerInfo\\\":{\\\"groupID\\\":\\\"3926645279\\\",\\\"userID\\\":\\\"2882899447\\\",\\\"roleLevel\\\":20,\\\"joinTime\\\":1718952270506,\\\"nickname\\\":\\\"OpenIM-blooming\\\",\\\"faceURL\\\":\\\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\\\",\\\"appMangerLevel\\\":0,\\\"joinSource\\\":2,\\\"operatorUserID\\\":\\\"imAdmin\\\",\\\"ex\\\":\\\"\\\",\\\"muteEndTime\\\":0,\\\"inviterUserID\\\":\\\"imAdmin\\\"},\\\"groupMemberVersion\\\":24,\\\"groupMemberVersionID\\\":\\\"6675214eac4b76626468fef5\\\"}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}}","latestMsgSendTime":1719040920868,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":5,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:11.676 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[{\"conversationID\":\"sg_3926645279\",\"conversationType\":3,\"userID\":\"\",\"groupID\":\"3926645279\",\"showName\":\"yo123\",\"faceURL\":\"faceURL url\",\"recvMsgOpt\":0,\"unreadCount\":13,\"groupAtType\":0,\"latestMsg\":\"{\\\"clientMsgID\\\":\\\"b7312f062ea8c5203a747f577d891096\\\",\\\"serverMsgID\\\":\\\"c6d35a7f550bda5f52d74f17281dc8a3\\\",\\\"createTime\\\":1719040920865,\\\"sendTime\\\":1719040920868,\\\"sessionType\\\":3,\\\"sendID\\\":\\\"imAdmin\\\",\\\"recvID\\\":\\\"3926645279\\\",\\\"msgFrom\\\":200,\\\"contentType\\\":1507,\\\"senderPlatformID\\\":0,\\\"groupID\\\":\\\"3926645279\\\",\\\"seq\\\":18,\\\"isRead\\\":false,\\\"status\\\":2,\\\"notificationElem\\\":{\\\"detail\\\":\\\"{\\\\\\\"group\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"3926645279\\\\\\\",\\\\\\\"groupName\\\\\\\":\\\\\\\"yo123\\\\\\\",\\\\\\\"notification\\\\\\\":\\\\\\\"new notification\\\\\\\",\\\\\\\"introduction\\\\\\\":\\\\\\\"new notification\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"faceURL url\\\\\\\",\\\\\\\"ownerUserID\\\\\\\":\\\\\\\"1695766238\\\\\\\",\\\\\\\"createTime\\\\\\\":1718952270504,\\\\\\\"memberCount\\\\\\\":2,\\\\\\\"ex\\\\\\\":\\\\\\\"new ex\\\\\\\",\\\\\\\"status\\\\\\\":0,\\\\\\\"creatorUserID\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"groupType\\\\\\\":2,\\\\\\\"needVerification\\\\\\\":1,\\\\\\\"lookMemberInfo\\\\\\\":1,\\\\\\\"applyMemberFriend\\\\\\\":1,\\\\\\\"notificationUpdateTime\\\\\\\":1718968191355,\\\\\\\"notificationUserID\\\\\\\":\\\\\\\"imAdmin\\\\\\\"},\\\\\\\"opUser\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"3926645279\\\\\\\",\\\\\\\"userID\\\\\\\":\\\\\\\"imAdmin\\\\\\\",\\\\\\\"roleLevel\\\\\\\":60,\\\\\\\"joinTime\\\\\\\":0,\\\\\\\"nickname\\\\\\\":\\\\\\\"admin\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"appMangerLevel\\\\\\\":2,\\\\\\\"joinSource\\\\\\\":0,\\\\\\\"operatorUserID\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"muteEndTime\\\\\\\":0,\\\\\\\"inviterUserID\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"newGroupOwner\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"3926645279\\\\\\\",\\\\\\\"userID\\\\\\\":\\\\\\\"1695766238\\\\\\\",\\\\\\\"roleLevel\\\\\\\":100,\\\\\\\"joinTime\\\\\\\":1718968462104,\\\\\\\"nickname\\\\\\\":\\\\\\\"OpenIM-Gordon\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"https://web.rentsoft.cn/api_enterprise/object/1695766238/æļæ¯20231011154243.png\\\\\\\",\\\\\\\"appMangerLevel\\\\\\\":0,\\\\\\\"joinSource\\\\\\\":2,\\\\\\\"operatorUserID\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"muteEndTime\\\\\\\":0,\\\\\\\"inviterUserID\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"oldGroupOwner\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"operationTime\\\\\\\":0,\\\\\\\"oldGroupOwnerInfo\\\\\\\":{\\\\\\\"groupID\\\\\\\":\\\\\\\"3926645279\\\\\\\",\\\\\\\"userID\\\\\\\":\\\\\\\"2882899447\\\\\\\",\\\\\\\"roleLevel\\\\\\\":20,\\\\\\\"joinTime\\\\\\\":1718952270506,\\\\\\\"nickname\\\\\\\":\\\\\\\"OpenIM-blooming\\\\\\\",\\\\\\\"faceURL\\\\\\\":\\\\\\\"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp\\\\\\\",\\\\\\\"appMangerLevel\\\\\\\":0,\\\\\\\"joinSource\\\\\\\":2,\\\\\\\"operatorUserID\\\\\\\":\\\\\\\"imAdmin\\\\\\\",\\\\\\\"ex\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"muteEndTime\\\\\\\":0,\\\\\\\"inviterUserID\\\\\\\":\\\\\\\"imAdmin\\\\\\\"},\\\\\\\"groupMemberVersion\\\\\\\":24,\\\\\\\"groupMemberVersionID\\\\\\\":\\\\\\\"6675214eac4b76626468fef5\\\\\\\"}\\\"},\\\"attachedInfoElem\\\":{\\\"groupHasReadInfo\\\":{\\\"hasReadCount\\\":0,\\\"groupMemberCount\\\":0},\\\"isPrivateChat\\\":false,\\\"burnDuration\\\":0,\\\"hasReadTime\\\":0,\\\"isEncryption\\\":false,\\\"inEncryptStatus\\\":false}}\",\"latestMsgSendTime\":1719040920868,\"draftText\":\"\",\"draftTextTime\":0,\"isPinned\":false,\"isPrivateChat\":false,\"burnDuration\":0,\"isNotInGroup\":false,\"updateUnreadCountTime\":0,\"attachedInfo\":\"\",\"ex\":\"\",\"maxSeq\":0,\"minSeq\":0,\"hasReadSeq\":0,\"msgDestructTime\":0,\"isMsgDestruct\":false}]"}
+2024-06-24 10:57:11.678 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3953092196","conversationType":3,"userID":"","groupID":"3953092196","showName":"æå°æš","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.691 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.692 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3957246617","conversationType":3,"userID":"","groupID":"3957246617","showName":"333","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.696 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.696 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_3969556509","conversationType":3,"userID":"","groupID":"3969556509","showName":"yyy","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:11.701 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.701 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_400360852","conversationType":3,"userID":"","groupID":"400360852","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":4,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.706 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.706 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_4015084780","conversationType":3,"userID":"","groupID":"4015084780","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.712 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.712 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_4018907989","conversationType":3,"userID":"","groupID":"4018907989","showName":"ååå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.718 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.718 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_402286284","conversationType":3,"userID":"","groupID":"402286284","showName":"qun1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.726 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.727 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_4023358894","conversationType":3,"userID":"","groupID":"4023358894","showName":"2222","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.736 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.736 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_4034544053","conversationType":3,"userID":"","groupID":"4034544053","showName":"ååąąčŽēå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.743 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.743 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_4039998258","conversationType":3,"userID":"","groupID":"4039998258","showName":"äģŖį č§č","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.748 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.749 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_4040699454","conversationType":3,"userID":"","groupID":"4040699454","showName":"OpenIM2ããããããããã","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:11.754 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.754 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_4045146473","conversationType":3,"userID":"","groupID":"4045146473","showName":"add","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:11.759 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.759 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_405867780","conversationType":3,"userID":"","groupID":"405867780","showName":"æĩč¯įž¤05","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.764 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.765 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_4070499267","conversationType":3,"userID":"","groupID":"4070499267","showName":"111","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":4,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.773 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.773 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_4075238610","conversationType":3,"userID":"","groupID":"4075238610","showName":"11","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":4,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.780 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.781 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_4089861802","conversationType":3,"userID":"","groupID":"4089861802","showName":"æĩč¯ä¸ä¸įž¤čéŋ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":4,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.787 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.787 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_4092904375","conversationType":3,"userID":"","groupID":"4092904375","showName":"5688","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.794 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.795 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_4094820687","conversationType":3,"userID":"","groupID":"4094820687","showName":"hhhãOpenIM-GordonãOpenIM-Andrew123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.802 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.802 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_4182703673","conversationType":3,"userID":"","groupID":"4182703673","showName":"454042","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.808 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.809 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_4220354893","conversationType":3,"userID":"","groupID":"4220354893","showName":"3321","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:11.814 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.814 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_4227056539","conversationType":3,"userID":"","groupID":"4227056539","showName":"éžč","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.819 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.819 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_4253925195","conversationType":3,"userID":"","groupID":"4253925195","showName":"12121","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":4,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.824 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.824 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_4261141770","conversationType":3,"userID":"","groupID":"4261141770","showName":"äģŖį äŧååč§č","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.829 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.829 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_4265149432","conversationType":3,"userID":"","groupID":"4265149432","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.834 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.834 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_4273540010","conversationType":3,"userID":"","groupID":"4273540010","showName":"æĩč¯įž¤č","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.839 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.839 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_430333127","conversationType":3,"userID":"","groupID":"430333127","showName":"æĩč¯įž¤2","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.844 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.844 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_446768090","conversationType":3,"userID":"","groupID":"446768090","showName":"dffg ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.848 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.848 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_454437308","conversationType":3,"userID":"","groupID":"454437308","showName":"qunn","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.853 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.853 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_45636129","conversationType":3,"userID":"","groupID":"45636129","showName":"asdcsfadfadcsc","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":2,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.860 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.860 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_459143095","conversationType":3,"userID":"","groupID":"459143095","showName":"fgg","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.866 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.866 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_471852741","conversationType":3,"userID":"","groupID":"471852741","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.873 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.873 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_474494913","conversationType":3,"userID":"","groupID":"474494913","showName":"įįå§å§","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:11.879 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.879 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_489539319","conversationType":3,"userID":"","groupID":"489539319","showName":"åŧ ä¸įįž¤","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.884 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.884 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_491010394","conversationType":3,"userID":"","groupID":"491010394","showName":"sss","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.888 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.888 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_499550676","conversationType":3,"userID":"","groupID":"499550676","showName":"vvv","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":2,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.893 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.894 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_518546243","conversationType":3,"userID":"","groupID":"518546243","showName":"bb","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.899 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.899 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_543925645","conversationType":3,"userID":"","groupID":"543925645","showName":"12345","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.903 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.903 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_547125611","conversationType":3,"userID":"","groupID":"547125611","showName":"æĩč¯įž¤","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.907 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.907 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_549432318","conversationType":3,"userID":"","groupID":"549432318","showName":"ååå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.912 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.912 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_567855415","conversationType":3,"userID":"","groupID":"567855415","showName":"111212","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.916 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.916 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_572273208","conversationType":3,"userID":"","groupID":"572273208","showName":"æ°æįž¤","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.921 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.922 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_578214705","conversationType":3,"userID":"","groupID":"578214705","showName":"æäŋæ°","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:11.928 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.928 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_578691343","conversationType":3,"userID":"","groupID":"578691343","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.933 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.933 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_582136490","conversationType":3,"userID":"","groupID":"582136490","showName":"AT","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":4,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.939 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.940 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_591858077","conversationType":3,"userID":"","groupID":"591858077","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.948 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.949 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_595536262","conversationType":3,"userID":"","groupID":"595536262","showName":"kk","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.959 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.960 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_630329009","conversationType":3,"userID":"","groupID":"630329009","showName":"æč¯č¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:11.971 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.972 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_632811645","conversationType":3,"userID":"","groupID":"632811645","showName":"1111","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.978 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.979 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_68265665","conversationType":3,"userID":"","groupID":"68265665","showName":"a","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.984 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.984 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_700804699","conversationType":3,"userID":"","groupID":"700804699","showName":"333","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:11.989 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.989 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_714498155","conversationType":3,"userID":"","groupID":"714498155","showName":"6666","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:11.994 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.994 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_741425278","conversationType":3,"userID":"","groupID":"741425278","showName":"123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:11.999 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:11.999 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_749544702","conversationType":3,"userID":"","groupID":"749544702","showName":"aaaa","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:12.003 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.004 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_751776298","conversationType":3,"userID":"","groupID":"751776298","showName":"ä¸äēēå¤ä礿ĩ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:12.010 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.010 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_757454731","conversationType":3,"userID":"","groupID":"757454731","showName":"å¯į 888","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:12.016 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.016 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_773702228","conversationType":3,"userID":"","groupID":"773702228","showName":"karl æĩč¯įž¤čåčŊ","faceURL":"https://web.rentsoft.cn/api_enterprise/object/4995366980/image_cropper_1706965486556.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":4,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.022 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.022 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_778158059","conversationType":3,"userID":"","groupID":"778158059","showName":"æąčޝ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:12.027 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.027 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_809953832","conversationType":3,"userID":"","groupID":"809953832","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.032 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.032 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_810698493","conversationType":3,"userID":"","groupID":"810698493","showName":"123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.037 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.037 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_831402134","conversationType":3,"userID":"","groupID":"831402134","showName":"æĩč¯įž¤č","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.042 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.042 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_841314012","conversationType":3,"userID":"","groupID":"841314012","showName":"įŽĄįįčŽē","faceURL":"https://web.rentsoft.cn/api_enterprise/object/4413835259/1703073883109_Screenshot_20231208_194327.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.047 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.047 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_853658007","conversationType":3,"userID":"","groupID":"853658007","showName":"666","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.051 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.051 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_862487890","conversationType":3,"userID":"","groupID":"862487890","showName":"666","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.055 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.056 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_87742245","conversationType":3,"userID":"","groupID":"87742245","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.084 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.084 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_899043316","conversationType":3,"userID":"","groupID":"899043316","showName":"ææ¯æĩč¯įž¤","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":4,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.088 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.088 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_917923491","conversationType":3,"userID":"","groupID":"917923491","showName":"88888","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:12.092 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.092 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_930244142","conversationType":3,"userID":"","groupID":"930244142","showName":"ABC","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.098 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.099 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_93606743","conversationType":3,"userID":"","groupID":"93606743","showName":"444","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.104 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.104 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_953210402","conversationType":3,"userID":"","groupID":"953210402","showName":"åŋĢäščąįŊ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:12.109 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.110 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_976556305","conversationType":3,"userID":"","groupID":"976556305","showName":"æĩč¯įįįž¤č","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.115 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.115 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_981246811","conversationType":3,"userID":"","groupID":"981246811","showName":"ååå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.120 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.120 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"sg_995014316","conversationType":3,"userID":"","groupID":"995014316","showName":"OpenIMååĄååŽå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:12.124 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.124 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1001978187_1695766238","conversationType":1,"userID":"1001978187","groupID":"","showName":"CåĨ","faceURL":"https://web.rentsoft.cn/api_enterprise/object/1001978187/storage/emulated/0/Android/data/io.openim.android.demo/cache/1705314301108.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:12.129 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.129 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1003546611_1695766238","conversationType":1,"userID":"1003546611","groupID":"","showName":"ææäēē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.134 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.134 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1005848588_1695766238","conversationType":1,"userID":"1005848588","groupID":"","showName":"ah","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.138 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.138 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1007207701_1695766238","conversationType":1,"userID":"1007207701","groupID":"","showName":"limi","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.143 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.143 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1012210794_1695766238","conversationType":1,"userID":"1012210794","groupID":"","showName":"AIRBY","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.148 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.148 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1016745053_1695766238","conversationType":1,"userID":"1016745053","groupID":"","showName":"ceshiceshi","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.153 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.153 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1019113328_1695766238","conversationType":1,"userID":"1019113328","groupID":"","showName":"å°č¯´åŽļđ đ˛","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:12.157 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.158 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1020167636_1695766238","conversationType":1,"userID":"1020167636","groupID":"","showName":"ader","faceURL":"https://web.rentsoft.cn/api_enterprise/object/1020167636/åąåšæĒåž(1).webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:12.165 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.165 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1020330989_1695766238","conversationType":1,"userID":"1020330989","groupID":"","showName":"Alan","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:12.172 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.172 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1024013158_1695766238","conversationType":1,"userID":"1024013158","groupID":"","showName":"asen","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.177 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.177 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1026082681_1695766238","conversationType":1,"userID":"1026082681","groupID":"","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.183 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.183 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1027189710_1695766238","conversationType":1,"userID":"1027189710","groupID":"","showName":"cc1231231ww","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:12.188 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.188 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1029140975_1695766238","conversationType":1,"userID":"1029140975","groupID":"","showName":"song","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.192 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.193 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1029199385_1695766238","conversationType":1,"userID":"1029199385","groupID":"","showName":"åæēæļĩ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.197 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.198 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1030196386_1695766238","conversationType":1,"userID":"1030196386","groupID":"","showName":"ice","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.203 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.203 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1035018583_1695766238","conversationType":1,"userID":"1035018583","groupID":"","showName":"sdda","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.209 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.210 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1035025841_1695766238","conversationType":1,"userID":"1035025841","groupID":"","showName":"openimIos-","faceURL":"https://web.rentsoft.cn/api_enterprise/object/1035025841/1703645744598_img-1701149298684f16e210025edac32b00418866d89c64e5def2deaf36ae0088476bf83df2c098e.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:12.215 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.215 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1035596382_1695766238","conversationType":1,"userID":"1035596382","groupID":"","showName":"ChenbuEr","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.230 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.230 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1039344075_1695766238","conversationType":1,"userID":"1039344075","groupID":"","showName":"ææ¨čąĒ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.237 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.237 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1040441805_1695766238","conversationType":1,"userID":"1040441805","groupID":"","showName":"sss","faceURL":"https://web.rentsoft.cn/api_enterprise/object/1040441805/adventurer-3.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.244 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.245 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1041417511_1695766238","conversationType":1,"userID":"1041417511","groupID":"","showName":"OpenIMxie","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.252 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.252 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1041526810_1695766238","conversationType":1,"userID":"1041526810","groupID":"","showName":"indigo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.257 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.258 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1042709364_1695766238","conversationType":1,"userID":"1042709364","groupID":"","showName":"yangyupian","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:12.263 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.263 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1046238762_1695766238","conversationType":1,"userID":"1046238762","groupID":"","showName":"Raymon","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.268 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.269 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1047286184_1695766238","conversationType":1,"userID":"1047286184","groupID":"","showName":"æ¨æ¨desu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.274 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.274 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1047605577_1695766238","conversationType":1,"userID":"1047605577","groupID":"","showName":"夊įŊĄå°č","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.278 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.279 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1048801023_1695766238","conversationType":1,"userID":"1048801023","groupID":"","showName":"å°ąåäŊ ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.285 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.285 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1048970643_1695766238","conversationType":1,"userID":"1048970643","groupID":"","showName":"mk","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.289 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.289 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1049946080_1695766238","conversationType":1,"userID":"1049946080","groupID":"","showName":"æææ´éžå
Ŋ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.294 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.294 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1050659067_1695766238","conversationType":1,"userID":"1050659067","groupID":"","showName":"assa","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.301 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.301 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1051234044_1695766238","conversationType":1,"userID":"1051234044","groupID":"","showName":"Holly","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.309 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.309 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1051923075_1695766238","conversationType":1,"userID":"1051923075","groupID":"","showName":"mfktdkj","faceURL":"https://web.rentsoft.cn/api_enterprise/object/1051923075/1714019445047jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.316 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.316 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1057649044_1695766238","conversationType":1,"userID":"1057649044","groupID":"","showName":"harry","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.321 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.321 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1058654100_1695766238","conversationType":1,"userID":"1058654100","groupID":"","showName":"tianx","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.327 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.327 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1059702215_1695766238","conversationType":1,"userID":"1059702215","groupID":"","showName":"mrlee","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:12.334 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.334 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1061497126_1695766238","conversationType":1,"userID":"1061497126","groupID":"","showName":"é","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.338 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.339 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1062100611_1695766238","conversationType":1,"userID":"1062100611","groupID":"","showName":"dkdk","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.344 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.344 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1069173979_1695766238","conversationType":1,"userID":"1069173979","groupID":"","showName":"Winter","faceURL":"https://web.rentsoft.cn/api_enterprise/object/1069173979/6554853fa834c_65548546b1c6f-0.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.350 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.350 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1069920007_1695766238","conversationType":1,"userID":"1069920007","groupID":"","showName":"mzhg","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.355 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.355 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1070085652_1695766238","conversationType":1,"userID":"1070085652","groupID":"","showName":"123123123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.360 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.360 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1072866639_1695766238","conversationType":1,"userID":"1072866639","groupID":"","showName":"wata","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:12.365 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.365 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1076727996_1695766238","conversationType":1,"userID":"1076727996","groupID":"","showName":"lyx926","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.372 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.372 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1078126675_1695766238","conversationType":1,"userID":"1078126675","groupID":"","showName":"ddd","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.381 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.381 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1078453176_1695766238","conversationType":1,"userID":"1078453176","groupID":"","showName":"opim-0107","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.387 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.387 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1079519777_1695766238","conversationType":1,"userID":"1079519777","groupID":"","showName":"Hola","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.392 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.393 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1081211551_1695766238","conversationType":1,"userID":"1081211551","groupID":"","showName":"abel","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.398 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.399 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1084443978_1695766238","conversationType":1,"userID":"1084443978","groupID":"","showName":"miss24","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.404 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.404 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1084666176_1695766238","conversationType":1,"userID":"1084666176","groupID":"","showName":"18701884470","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.410 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.410 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1088304633_1695766238","conversationType":1,"userID":"1088304633","groupID":"","showName":"guofengzhi","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.416 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.416 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1090301906_1695766238","conversationType":1,"userID":"1090301906","groupID":"","showName":"Zoranner","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.420 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.421 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1091357456_1695766238","conversationType":1,"userID":"1091357456","groupID":"","showName":"DarkMage","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.425 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.426 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1092596091_1695766238","conversationType":1,"userID":"1092596091","groupID":"","showName":"dasdean","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.431 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.431 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1098139429_1695766238","conversationType":1,"userID":"1098139429","groupID":"","showName":"æåå¨","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.438 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.439 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1098570531_1695766238","conversationType":1,"userID":"1098570531","groupID":"","showName":"zmhncn","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.448 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.448 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1105464832_1695766238","conversationType":1,"userID":"1105464832","groupID":"","showName":"kevin-test","faceURL":"ic_avatar_02","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.456 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.457 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1106456014_1695766238","conversationType":1,"userID":"1106456014","groupID":"","showName":"test1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.466 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.466 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1109663154_1695766238","conversationType":1,"userID":"1109663154","groupID":"","showName":"liuhuiyong","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.474 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.474 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1110013188_1695766238","conversationType":1,"userID":"1110013188","groupID":"","showName":"aote","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.480 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.480 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1110128907_1695766238","conversationType":1,"userID":"1110128907","groupID":"","showName":"ff","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.487 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.487 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1110490028_1695766238","conversationType":1,"userID":"1110490028","groupID":"","showName":"james","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:12.492 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.492 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1111364629_1695766238","conversationType":1,"userID":"1111364629","groupID":"","showName":"haoduoyu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.498 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.498 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1111503020_1695766238","conversationType":1,"userID":"1111503020","groupID":"","showName":"éææ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.504 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.504 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1111724110_1695766238","conversationType":1,"userID":"1111724110","groupID":"","showName":"fang","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:12.508 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.509 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1112057887_1695766238","conversationType":1,"userID":"1112057887","groupID":"","showName":"bai","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.515 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.515 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1113172567_1695766238","conversationType":1,"userID":"1113172567","groupID":"","showName":"1111","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.523 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.523 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1113982296_1695766238","conversationType":1,"userID":"1113982296","groupID":"","showName":"berlu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.530 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.530 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1114171800_1695766238","conversationType":1,"userID":"1114171800","groupID":"","showName":"2111111","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.536 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.536 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1114245774_1695766238","conversationType":1,"userID":"1114245774","groupID":"","showName":"åéŖ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.542 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.542 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1114603358_1695766238","conversationType":1,"userID":"1114603358","groupID":"","showName":"čč","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.547 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.548 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1118121179_1695766238","conversationType":1,"userID":"1118121179","groupID":"","showName":"č´ĸč´ĸ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.552 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.552 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1119049102_1695766238","conversationType":1,"userID":"1119049102","groupID":"","showName":"xx","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.558 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.559 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1119184791_1695766238","conversationType":1,"userID":"1119184791","groupID":"","showName":"twonian","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.564 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.564 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1119462227_1695766238","conversationType":1,"userID":"1119462227","groupID":"","showName":"cyber","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.569 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.569 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1120888738_1695766238","conversationType":1,"userID":"1120888738","groupID":"","showName":"æäēč
ž","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.573 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.574 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1121842056_1695766238","conversationType":1,"userID":"1121842056","groupID":"","showName":"ååå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.580 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.580 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1124267584_1695766238","conversationType":1,"userID":"1124267584","groupID":"","showName":"é˛įģį§","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:12.587 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.587 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1125316748_1695766238","conversationType":1,"userID":"1125316748","groupID":"","showName":"Kai","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.593 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.593 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1128086235_1695766238","conversationType":1,"userID":"1128086235","groupID":"","showName":"icewalnut","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.600 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.600 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1129238672_1695766238","conversationType":1,"userID":"1129238672","groupID":"","showName":"ææ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.606 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.606 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1130612769_1695766238","conversationType":1,"userID":"1130612769","groupID":"","showName":"mlch911","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.611 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.612 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1132125149_1695766238","conversationType":1,"userID":"1132125149","groupID":"","showName":"caigou","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.617 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.617 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1135290573_1695766238","conversationType":1,"userID":"1135290573","groupID":"","showName":"tedjames","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.626 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.627 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1137346656_1695766238","conversationType":1,"userID":"1137346656","groupID":"","showName":"éžčæ ŧ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.639 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.640 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1139778570_1695766238","conversationType":1,"userID":"1139778570","groupID":"","showName":"HelloWorld","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.649 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.649 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1141269663_1695766238","conversationType":1,"userID":"1141269663","groupID":"","showName":"æ´įŊįŊ","faceURL":"https://web.rentsoft.cn/api_enterprise/object/1141269663/image_cropper_B2084343-9F9C-4E7A-A14B-FEC9120BE973-7605-0000026AA68BA730.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:12.655 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.656 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1145518931_1695766238","conversationType":1,"userID":"1145518931","groupID":"","showName":"Kk www","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.661 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.662 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1148014193_1695766238","conversationType":1,"userID":"1148014193","groupID":"","showName":"v79","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.668 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.668 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1149674300_1695766238","conversationType":1,"userID":"1149674300","groupID":"","showName":"xman","faceURL":"http://14.29.213.197:50002/object/1149674300/1717418035167_Screenshot_20240526_110926_com.jinnianhui.macau.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.676 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.676 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1152052323_1695766238","conversationType":1,"userID":"1152052323","groupID":"","showName":"husky","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.684 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.685 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1153223299_1695766238","conversationType":1,"userID":"1153223299","groupID":"","showName":"čäšĻå
","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.694 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.694 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1153514846_1695766238","conversationType":1,"userID":"1153514846","groupID":"","showName":"cardyok","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.703 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.703 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1154538243_1695766238","conversationType":1,"userID":"1154538243","groupID":"","showName":"Cad123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.709 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.709 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1158421119_1695766238","conversationType":1,"userID":"1158421119","groupID":"","showName":"ck01","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.715 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.716 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1160166255_1695766238","conversationType":1,"userID":"1160166255","groupID":"","showName":"äšæ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:12.722 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.722 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1161320377_1695766238","conversationType":1,"userID":"1161320377","groupID":"","showName":"backWang","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.727 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.727 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1163727739_1695766238","conversationType":1,"userID":"1163727739","groupID":"","showName":"JASON","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.731 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.732 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1164940739_1695766238","conversationType":1,"userID":"1164940739","groupID":"","showName":"ting","faceURL":"https://web.rentsoft.cn/api_enterprise/object/1164940739/ä¸ģåž.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:12.736 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.737 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1169314033_1695766238","conversationType":1,"userID":"1169314033","groupID":"","showName":"yea","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.742 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.742 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1169864390_1695766238","conversationType":1,"userID":"1169864390","groupID":"","showName":"Baza","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.747 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.747 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1173525994_1695766238","conversationType":1,"userID":"1173525994","groupID":"","showName":"ä¸į§","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:12.753 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.754 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1178348711_1695766238","conversationType":1,"userID":"1178348711","groupID":"","showName":"cjf","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.761 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.761 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1178600008_1695766238","conversationType":1,"userID":"1178600008","groupID":"","showName":"111","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.768 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.768 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1179846066_1695766238","conversationType":1,"userID":"1179846066","groupID":"","showName":"vdsv","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.773 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.773 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1180960663_1695766238","conversationType":1,"userID":"1180960663","groupID":"","showName":"aidi","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.778 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.779 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1184247096_1695766238","conversationType":1,"userID":"1184247096","groupID":"","showName":"urok","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.784 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.784 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1186482465_1695766238","conversationType":1,"userID":"1186482465","groupID":"","showName":"æĨåģæ č¸Ē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.789 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.789 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1186763406_1695766238","conversationType":1,"userID":"1186763406","groupID":"","showName":"ææ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:12.794 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.794 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1189211982_1695766238","conversationType":1,"userID":"1189211982","groupID":"","showName":"abc","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:12.801 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.801 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1189516087_1695766238","conversationType":1,"userID":"1189516087","groupID":"","showName":"chauncey","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.805 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.806 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1191255050_1695766238","conversationType":1,"userID":"1191255050","groupID":"","showName":"chatfeed","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.811 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.811 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1193985259_1695766238","conversationType":1,"userID":"1193985259","groupID":"","showName":"įæŗ","faceURL":"https://web.rentsoft.cn/api_enterprise/object/垎äŋĄåžį_20231101122024.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:12.816 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.817 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1195520252_1695766238","conversationType":1,"userID":"1195520252","groupID":"","showName":"åŽæŦĸ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:12.824 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.824 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1197722329_1695766238","conversationType":1,"userID":"1197722329","groupID":"","showName":"darke","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.831 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.831 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1197740724_1695766238","conversationType":1,"userID":"1197740724","groupID":"","showName":"zibin","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.841 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.843 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1197930203_1695766238","conversationType":1,"userID":"1197930203","groupID":"","showName":"大č¸å¤´å","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.853 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.854 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1198170851_1695766238","conversationType":1,"userID":"1198170851","groupID":"","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.863 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.863 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1199452366_1695766238","conversationType":1,"userID":"1199452366","groupID":"","showName":"lifeixing","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.869 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.870 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1201627975_1695766238","conversationType":1,"userID":"1201627975","groupID":"","showName":"įäē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.878 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.879 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1201870569_1695766238","conversationType":1,"userID":"1201870569","groupID":"","showName":"ezreal","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.884 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.884 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1203300972_1695766238","conversationType":1,"userID":"1203300972","groupID":"","showName":"ææ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.890 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.890 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1203427082_1695766238","conversationType":1,"userID":"1203427082","groupID":"","showName":"itwei","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.895 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.896 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1203740992_1695766238","conversationType":1,"userID":"1203740992","groupID":"","showName":"tamamusiiro","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.901 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.901 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1205216213_1695766238","conversationType":1,"userID":"1205216213","groupID":"","showName":"line","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:12.908 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.908 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1214890264_1695766238","conversationType":1,"userID":"1214890264","groupID":"","showName":"å","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:12.915 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.915 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1215813908_1695766238","conversationType":1,"userID":"1215813908","groupID":"","showName":"æĩč¯2024","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.922 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.922 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1216359267_1695766238","conversationType":1,"userID":"1216359267","groupID":"","showName":"éēĻį°åŽæč
","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:12.928 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.928 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1217986161_1695766238","conversationType":1,"userID":"1217986161","groupID":"","showName":"MarkMing","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.933 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.933 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1218106711_1695766238","conversationType":1,"userID":"1218106711","groupID":"","showName":"frank","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.938 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.939 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1219920920_1695766238","conversationType":1,"userID":"1219920920","groupID":"","showName":"John","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.943 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.943 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1222190045_1695766238","conversationType":1,"userID":"1222190045","groupID":"","showName":"123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.947 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.948 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1223611752_1695766238","conversationType":1,"userID":"1223611752","groupID":"","showName":"janson","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.953 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.954 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1223824434_1695766238","conversationType":1,"userID":"1223824434","groupID":"","showName":"åĩåĩ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.959 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.960 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1225764106_1695766238","conversationType":1,"userID":"1225764106","groupID":"","showName":"äģåš´","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.964 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.964 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1228521294_1695766238","conversationType":1,"userID":"1228521294","groupID":"","showName":"DanielYi","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.971 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.971 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1231061920_1695766238","conversationType":1,"userID":"1231061920","groupID":"","showName":"įå¯į","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.979 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.979 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1236363603_1695766238","conversationType":1,"userID":"1236363603","groupID":"","showName":"å°įŊ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.986 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.986 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1239260993_1695766238","conversationType":1,"userID":"1239260993","groupID":"","showName":"ming","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.991 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.991 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1242008964_1695766238","conversationType":1,"userID":"1242008964","groupID":"","showName":"Robert","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:12.997 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:12.997 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1244598736_1695766238","conversationType":1,"userID":"1244598736","groupID":"","showName":"yscsj","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.002 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.003 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1246378526_1695766238","conversationType":1,"userID":"1246378526","groupID":"","showName":"zhaoyazhou","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.007 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.007 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1247281849_1695766238","conversationType":1,"userID":"1247281849","groupID":"","showName":"ä¸å","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.013 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.013 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1247768465_1695766238","conversationType":1,"userID":"1247768465","groupID":"","showName":"夊åŊ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.018 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.019 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1250766516_1695766238","conversationType":1,"userID":"1250766516","groupID":"","showName":"qqq","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.023 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.024 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1253082303_1695766238","conversationType":1,"userID":"1253082303","groupID":"","showName":"čŊģæŽ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.028 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.028 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1254137907_1695766238","conversationType":1,"userID":"1254137907","groupID":"","showName":"zqwmmzxb","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.035 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.035 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1254897163_1695766238","conversationType":1,"userID":"1254897163","groupID":"","showName":"åŊąå11112","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.042 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.042 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1255014799_1695766238","conversationType":1,"userID":"1255014799","groupID":"","showName":"abcd","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.049 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.049 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1255769566_1695766238","conversationType":1,"userID":"1255769566","groupID":"","showName":"Libo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.055 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.055 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1257873838_1695766238","conversationType":1,"userID":"1257873838","groupID":"","showName":"åŊäēæ666","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:13.060 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.060 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1259205714_1695766238","conversationType":1,"userID":"1259205714","groupID":"","showName":"len","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.064 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.065 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1259491611_1695766238","conversationType":1,"userID":"1259491611","groupID":"","showName":"yilian","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.069 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.069 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1260906081_1695766238","conversationType":1,"userID":"1260906081","groupID":"","showName":"tim","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:13.074 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.074 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1262838585_1695766238","conversationType":1,"userID":"1262838585","groupID":"","showName":"13430587076","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.079 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.079 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1263384112_1695766238","conversationType":1,"userID":"1263384112","groupID":"","showName":"w","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.085 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.085 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1264676490_1695766238","conversationType":1,"userID":"1264676490","groupID":"","showName":"cytian","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.090 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.090 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1266887644_1695766238","conversationType":1,"userID":"1266887644","groupID":"","showName":"å¤éŗ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.095 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.096 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1273935053_1695766238","conversationType":1,"userID":"1273935053","groupID":"","showName":"å","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:13.104 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.104 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1278944119_1695766238","conversationType":1,"userID":"1278944119","groupID":"","showName":"paul","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.112 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.113 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1279884042_1695766238","conversationType":1,"userID":"1279884042","groupID":"","showName":"ddcxl","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.119 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.119 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1281598562_1695766238","conversationType":1,"userID":"1281598562","groupID":"","showName":"1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.125 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.125 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1281934775_1695766238","conversationType":1,"userID":"1281934775","groupID":"","showName":"valid","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.130 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.130 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1287973372_1695766238","conversationType":1,"userID":"1287973372","groupID":"","showName":"æŗåˇ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.135 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.135 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1291322616_1695766238","conversationType":1,"userID":"1291322616","groupID":"","showName":"å¯å¯å¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.140 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.140 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1291601426_1695766238","conversationType":1,"userID":"1291601426","groupID":"","showName":"hwqian","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.145 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.145 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1292646581_1695766238","conversationType":1,"userID":"1292646581","groupID":"","showName":"lilihaoo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.151 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.151 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1294205397_1695766238","conversationType":1,"userID":"1294205397","groupID":"","showName":"sunjishi","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:13.155 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.156 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1296481060_1695766238","conversationType":1,"userID":"1296481060","groupID":"","showName":"Wheat","faceURL":"https://web.rentsoft.cn/api_enterprise/object/1296481060/1706079127567_1699526577050_334019922572474.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.160 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.161 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1303174885_1695766238","conversationType":1,"userID":"1303174885","groupID":"","showName":"ok","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:13.168 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.168 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1303224493_1695766238","conversationType":1,"userID":"1303224493","groupID":"","showName":"kevinsie","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.175 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.175 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1308295709_1695766238","conversationType":1,"userID":"1308295709","groupID":"","showName":"įŊæŗŊ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:13.183 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.183 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1308526907_1695766238","conversationType":1,"userID":"1308526907","groupID":"","showName":"jerry","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.189 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.189 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1312600623_1695766238","conversationType":1,"userID":"1312600623","groupID":"","showName":"hh","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:13.194 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.194 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1312766592_1695766238","conversationType":1,"userID":"1312766592","groupID":"","showName":"DanGiant","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:13.200 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.200 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1313516275_1695766238","conversationType":1,"userID":"1313516275","groupID":"","showName":"hezl","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.205 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.205 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1314958716_1695766238","conversationType":1,"userID":"1314958716","groupID":"","showName":"AshenWong","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.212 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.214 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1315193254_1695766238","conversationType":1,"userID":"1315193254","groupID":"","showName":"ččæ§","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.224 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.225 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1315194100_1695766238","conversationType":1,"userID":"1315194100","groupID":"","showName":"Yzz","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.234 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.235 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1318098494_1695766238","conversationType":1,"userID":"1318098494","groupID":"","showName":"å°æšéŊæ¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:13.243 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.244 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1322848164_1695766238","conversationType":1,"userID":"1322848164","groupID":"","showName":"å°éģ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:13.251 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.251 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1325120618_1695766238","conversationType":1,"userID":"1325120618","groupID":"","showName":"eâva","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:13.258 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.259 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1326889006_1695766238","conversationType":1,"userID":"1326889006","groupID":"","showName":"YaoShuai","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.264 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.264 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1327075767_1695766238","conversationType":1,"userID":"1327075767","groupID":"","showName":"PDXing","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:13.269 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.270 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1328504176_1695766238","conversationType":1,"userID":"1328504176","groupID":"","showName":"ruanjwei","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.275 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.275 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1328609722_1695766238","conversationType":1,"userID":"1328609722","groupID":"","showName":"s's","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.281 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.281 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1328649560_1695766238","conversationType":1,"userID":"1328649560","groupID":"","showName":"Hardy","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.286 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.287 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1330357963_1695766238","conversationType":1,"userID":"1330357963","groupID":"","showName":"大äŊŦ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.292 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.292 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1332124716_1695766238","conversationType":1,"userID":"1332124716","groupID":"","showName":"Looper","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.297 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.297 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1335529830_1695766238","conversationType":1,"userID":"1335529830","groupID":"","showName":"qingye","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:13.303 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.303 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1337385311_1695766238","conversationType":1,"userID":"1337385311","groupID":"","showName":"zeting","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:13.312 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.314 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1339832669_1695766238","conversationType":1,"userID":"1339832669","groupID":"","showName":"Toya","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.327 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.328 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1342056722_1695766238","conversationType":1,"userID":"1342056722","groupID":"","showName":"xiao","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.337 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.337 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1351222021_1695766238","conversationType":1,"userID":"1351222021","groupID":"","showName":"tongysh","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.344 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.344 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1352959012_1695766238","conversationType":1,"userID":"1352959012","groupID":"","showName":"22222éŋč¨åžˇ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.350 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.350 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1356317580_1695766238","conversationType":1,"userID":"1356317580","groupID":"","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:13.356 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.356 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1358105773_1695766238","conversationType":1,"userID":"1358105773","groupID":"","showName":"rv","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.362 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.362 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1360958542_1695766238","conversationType":1,"userID":"1360958542","groupID":"","showName":"å°åļå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.367 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.367 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1361338405_1695766238","conversationType":1,"userID":"1361338405","groupID":"","showName":"å°æļįå°åŧ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.372 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.372 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1369503108_1695766238","conversationType":1,"userID":"1369503108","groupID":"","showName":"gslj9512","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.377 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.377 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1378104152_1695766238","conversationType":1,"userID":"1378104152","groupID":"","showName":"xiao","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.398 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.400 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1378723738_1695766238","conversationType":1,"userID":"1378723738","groupID":"","showName":"qwe","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.415 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.416 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1378864517_1695766238","conversationType":1,"userID":"1378864517","groupID":"","showName":"åŽåŽæ´Ēč","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.424 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.425 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1381750803_1695766238","conversationType":1,"userID":"1381750803","groupID":"","showName":"ä¸įĒ-ææĸ
","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:13.432 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.434 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1382542089_1695766238","conversationType":1,"userID":"1382542089","groupID":"","showName":"wenrui","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:13.440 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.440 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1389388976_1695766238","conversationType":1,"userID":"1389388976","groupID":"","showName":"æ¨éŗ","faceURL":"https://web.rentsoft.cn/api_enterprise/object/1389388976/yy头å.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:13.446 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.446 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1389519072_1695766238","conversationType":1,"userID":"1389519072","groupID":"","showName":"äģ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.452 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.452 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1389672286_1695766238","conversationType":1,"userID":"1389672286","groupID":"","showName":"æžææ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:13.458 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.458 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1399815726_1695766238","conversationType":1,"userID":"1399815726","groupID":"","showName":"Jason","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.463 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.464 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1400334070_1695766238","conversationType":1,"userID":"1400334070","groupID":"","showName":"Otr","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:13.469 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.469 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1403690073_1695766238","conversationType":1,"userID":"1403690073","groupID":"","showName":"nox","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.475 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.475 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1404053476_1695766238","conversationType":1,"userID":"1404053476","groupID":"","showName":"éģčą","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.484 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.484 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1404071596_1695766238","conversationType":1,"userID":"1404071596","groupID":"","showName":"khieu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.491 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.492 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1404108486_1695766238","conversationType":1,"userID":"1404108486","groupID":"","showName":"rrrrr","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:13.497 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.497 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1406732851_1695766238","conversationType":1,"userID":"1406732851","groupID":"","showName":"čĄčĄåå¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:13.502 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.503 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1408523578_1695766238","conversationType":1,"userID":"1408523578","groupID":"","showName":"IQN","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.507 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.507 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1411038705_1695766238","conversationType":1,"userID":"1411038705","groupID":"","showName":"11","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.513 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.513 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1413232357_1695766238","conversationType":1,"userID":"1413232357","groupID":"","showName":"abctzz","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.519 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.519 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1413892032_1695766238","conversationType":1,"userID":"1413892032","groupID":"","showName":"Allen","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.524 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.525 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1416508762_1695766238","conversationType":1,"userID":"1416508762","groupID":"","showName":"paper","faceURL":"https://web.rentsoft.cn/api_enterprise/object/1416508762/storage/emulated/0/Android/data/io.openim.android.demo/cache/1702705006608/1702705003342.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.529 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.530 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1421222947_1695766238","conversationType":1,"userID":"1421222947","groupID":"","showName":"ryan","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.534 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.534 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1423094054_1695766238","conversationType":1,"userID":"1423094054","groupID":"","showName":"æå
","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.538 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.538 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1424675347_1695766238","conversationType":1,"userID":"1424675347","groupID":"","showName":"Zerg","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.544 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.545 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1425098887_1695766238","conversationType":1,"userID":"1425098887","groupID":"","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.553 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.554 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1426385421_1695766238","conversationType":1,"userID":"1426385421","groupID":"","showName":"Tom","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.559 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.559 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1428611256_1695766238","conversationType":1,"userID":"1428611256","groupID":"","showName":"ccc","faceURL":"ic_avatar_06","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:13.564 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.564 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1429778434_1695766238","conversationType":1,"userID":"1429778434","groupID":"","showName":"å°éģäēē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.569 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.570 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1431753089_1695766238","conversationType":1,"userID":"1431753089","groupID":"","showName":"nike","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.574 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.574 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1435708354_1695766238","conversationType":1,"userID":"1435708354","groupID":"","showName":"xxg","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.579 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.579 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1435815467_1695766238","conversationType":1,"userID":"1435815467","groupID":"","showName":"å°åŖ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.585 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.585 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1439097961_1695766238","conversationType":1,"userID":"1439097961","groupID":"","showName":"SwordDust","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:13.589 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.589 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1440270225_1695766238","conversationType":1,"userID":"1440270225","groupID":"","showName":"nye","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.593 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.593 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1444423031_1695766238","conversationType":1,"userID":"1444423031","groupID":"","showName":"91MrCui","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.599 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.599 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1445725217_1695766238","conversationType":1,"userID":"1445725217","groupID":"","showName":"wms2537","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.606 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.606 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1447165914_1695766238","conversationType":1,"userID":"1447165914","groupID":"","showName":"å¤åš","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.612 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.613 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1447253383_1695766238","conversationType":1,"userID":"1447253383","groupID":"","showName":"OpenIMxie2","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.619 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.619 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1448477441_1695766238","conversationType":1,"userID":"1448477441","groupID":"","showName":"edram","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.624 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.625 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1449505287_1695766238","conversationType":1,"userID":"1449505287","groupID":"","showName":"xwg","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.629 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.630 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1450541750_1695766238","conversationType":1,"userID":"1450541750","groupID":"","showName":"lw","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.635 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.636 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1450572942_1695766238","conversationType":1,"userID":"1450572942","groupID":"","showName":"aganhui","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.641 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.641 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1451141537_1695766238","conversationType":1,"userID":"1451141537","groupID":"","showName":"beq","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:13.646 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.646 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1455103500_1695766238","conversationType":1,"userID":"1455103500","groupID":"","showName":"įéĻ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.650 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.651 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1455854618_1695766238","conversationType":1,"userID":"1455854618","groupID":"","showName":"aduni","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.656 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.656 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1457549515_1695766238","conversationType":1,"userID":"1457549515","groupID":"","showName":"įĨåĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.660 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.660 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1459886066_1695766238","conversationType":1,"userID":"1459886066","groupID":"","showName":"æ¨åŧæĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:13.665 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.665 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1466421314_1695766238","conversationType":1,"userID":"1466421314","groupID":"","showName":"zxn","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.671 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.671 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1479208215_1695766238","conversationType":1,"userID":"1479208215","groupID":"","showName":"222324234","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:13.678 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.678 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1481152183_1695766238","conversationType":1,"userID":"1481152183","groupID":"","showName":"q","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.684 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.685 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1483410143_1695766238","conversationType":1,"userID":"1483410143","groupID":"","showName":"åæĨŧ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.690 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.690 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1484864273_1695766238","conversationType":1,"userID":"1484864273","groupID":"","showName":"xidianzxm","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.695 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.696 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1489050183_1695766238","conversationType":1,"userID":"1489050183","groupID":"","showName":"zombie","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.700 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.700 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1490112482_1695766238","conversationType":1,"userID":"1490112482","groupID":"","showName":"cc","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.705 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.705 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1491381111_1695766238","conversationType":1,"userID":"1491381111","groupID":"","showName":"å
å
","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:13.710 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.710 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1493979234_1695766238","conversationType":1,"userID":"1493979234","groupID":"","showName":"æŽį¨ˇ","faceURL":"http://14.29.213.197:50002/object/1493979234/storage/emulated/0/Android/data/io.openim.android.demo/cache/1715424050441/1715424031094.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.715 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.715 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1496957522_1695766238","conversationType":1,"userID":"1496957522","groupID":"","showName":"åēˇäš","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.719 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.719 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1501353503_1695766238","conversationType":1,"userID":"1501353503","groupID":"","showName":"huajie6225","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.724 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.724 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1503288583_1695766238","conversationType":1,"userID":"1503288583","groupID":"","showName":"openIMUser","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:13.730 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.731 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1503313265_1695766238","conversationType":1,"userID":"1503313265","groupID":"","showName":"Craig","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.735 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.736 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1503571831_1695766238","conversationType":1,"userID":"1503571831","groupID":"","showName":"miszhao","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.742 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.742 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1503799516_1695766238","conversationType":1,"userID":"1503799516","groupID":"","showName":"gva","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.748 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.748 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1511563482_1695766238","conversationType":1,"userID":"1511563482","groupID":"","showName":"umou","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.755 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.755 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1512333186_1695766238","conversationType":1,"userID":"1512333186","groupID":"","showName":"chen@163.com","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.761 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.761 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1517471629_1695766238","conversationType":1,"userID":"1517471629","groupID":"","showName":"éĻč","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.765 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.765 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1519782782_1695766238","conversationType":1,"userID":"1519782782","groupID":"","showName":"adong","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.770 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.771 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1522530015_1695766238","conversationType":1,"userID":"1522530015","groupID":"","showName":"åŖ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.775 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.776 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1525076035_1695766238","conversationType":1,"userID":"1525076035","groupID":"","showName":"ray","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.780 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.780 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1525462486_1695766238","conversationType":1,"userID":"1525462486","groupID":"","showName":"jjj440","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.785 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.785 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1527761901_1695766238","conversationType":1,"userID":"1527761901","groupID":"","showName":"Tony","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.793 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.794 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1528034041_1695766238","conversationType":1,"userID":"1528034041","groupID":"","showName":"æĨäēæĨäē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.807 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.808 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1531529736_1695766238","conversationType":1,"userID":"1531529736","groupID":"","showName":"å°čĨŋįąŗ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:13.815 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.815 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1531800981_1695766238","conversationType":1,"userID":"1531800981","groupID":"","showName":"OpenIM-Brett","faceURL":"https://web.rentsoft.cn/api_enterprise/object/1531800981/99468005.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:13.823 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.823 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1538447111_1695766238","conversationType":1,"userID":"1538447111","groupID":"","showName":"pop","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.830 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.830 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1539916836_1695766238","conversationType":1,"userID":"1539916836","groupID":"","showName":"Hugh","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.837 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.837 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1545733795_1695766238","conversationType":1,"userID":"1545733795","groupID":"","showName":"zhangtao25","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:13.842 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.842 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1547315621_1695766238","conversationType":1,"userID":"1547315621","groupID":"","showName":"ww","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:13.847 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.847 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1553095200_1695766238","conversationType":1,"userID":"1553095200","groupID":"","showName":"pheoman","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.853 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.853 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1556110492_1695766238","conversationType":1,"userID":"1556110492","groupID":"","showName":"bazzicn","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:13.858 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.858 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1563714762_1695766238","conversationType":1,"userID":"1563714762","groupID":"","showName":"čĒå¨","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.863 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.863 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1567202525_1695766238","conversationType":1,"userID":"1567202525","groupID":"","showName":"yang","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.869 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.869 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1570753957_1695766238","conversationType":1,"userID":"1570753957","groupID":"","showName":"äšéŖ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.874 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.874 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1571918249_1695766238","conversationType":1,"userID":"1571918249","groupID":"","showName":"xigua","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.878 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.878 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1572354946_1695766238","conversationType":1,"userID":"1572354946","groupID":"","showName":"äģé¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:13.883 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.883 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1572952163_1695766238","conversationType":1,"userID":"1572952163","groupID":"","showName":"大ếĄĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.889 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.889 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1575369290_1695766238","conversationType":1,"userID":"1575369290","groupID":"","showName":"aa1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:13.898 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.899 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1580228426_1695766238","conversationType":1,"userID":"1580228426","groupID":"","showName":"sunshine","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.905 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.906 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1586898988_1695766238","conversationType":1,"userID":"1586898988","groupID":"","showName":"rj001","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.910 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.910 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1591700454_1695766238","conversationType":1,"userID":"1591700454","groupID":"","showName":"kyle","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.915 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.915 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1592632793_1695766238","conversationType":1,"userID":"1592632793","groupID":"","showName":"lemon","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.920 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.920 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1596057385_1695766238","conversationType":1,"userID":"1596057385","groupID":"","showName":"leej","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.925 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.925 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1596529802_1695766238","conversationType":1,"userID":"1596529802","groupID":"","showName":"æēäģįåĨļ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.929 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.929 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1597197183_1695766238","conversationType":1,"userID":"1597197183","groupID":"","showName":"qun","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:13.935 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.935 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1597446517_1695766238","conversationType":1,"userID":"1597446517","groupID":"","showName":"Joy","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.940 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.940 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1602000005_1695766238","conversationType":1,"userID":"1602000005","groupID":"","showName":"zixu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.944 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.944 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1605306478_1695766238","conversationType":1,"userID":"1605306478","groupID":"","showName":"ä¸äŧ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.948 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.949 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1606591661_1695766238","conversationType":1,"userID":"1606591661","groupID":"","showName":"yy","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.954 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.954 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1610353382_1695766238","conversationType":1,"userID":"1610353382","groupID":"","showName":"july","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.963 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.965 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1613711798_1695766238","conversationType":1,"userID":"1613711798","groupID":"","showName":"ghuuu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.978 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.979 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1617274099_1695766238","conversationType":1,"userID":"1617274099","groupID":"","showName":"zhugq","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.987 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.988 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1619510595_1695766238","conversationType":1,"userID":"1619510595","groupID":"","showName":"æēäģ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.992 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.993 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1624302032_1695766238","conversationType":1,"userID":"1624302032","groupID":"","showName":"åĸå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:13.998 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:13.998 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1628445271_1695766238","conversationType":1,"userID":"1628445271","groupID":"","showName":"wt","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.003 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.004 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1639021089_1695766238","conversationType":1,"userID":"1639021089","groupID":"","showName":"åå6","faceURL":"https://web.rentsoft.cn/api_enterprise/object/1697169869348.png","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:14.008 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.009 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1641400615_1695766238","conversationType":1,"userID":"1641400615","groupID":"","showName":"wenl","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.013 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.013 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1645337519_1695766238","conversationType":1,"userID":"1645337519","groupID":"","showName":"qf0129","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.019 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.019 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1652390041_1695766238","conversationType":1,"userID":"1652390041","groupID":"","showName":"dason","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.025 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.026 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1653288930_1695766238","conversationType":1,"userID":"1653288930","groupID":"","showName":"sjjs","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.033 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.034 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1654005478_1695766238","conversationType":1,"userID":"1654005478","groupID":"","showName":"gitäģ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:14.042 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.043 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1655462573_1695766238","conversationType":1,"userID":"1655462573","groupID":"","showName":"IM009","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.050 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.050 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1655642484_1695766238","conversationType":1,"userID":"1655642484","groupID":"","showName":"helloxuetao","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.059 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.059 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1656524872_1695766238","conversationType":1,"userID":"1656524872","groupID":"","showName":"guozi","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.064 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.064 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1659023429_1695766238","conversationType":1,"userID":"1659023429","groupID":"","showName":"Sa","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:14.069 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.069 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1659042267_1695766238","conversationType":1,"userID":"1659042267","groupID":"","showName":"ssd","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:14.073 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.073 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1664486975_1695766238","conversationType":1,"userID":"1664486975","groupID":"","showName":"æ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.078 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.079 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1667631425_1695766238","conversationType":1,"userID":"1667631425","groupID":"","showName":"OpenZ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.085 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.085 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1669430182_1695766238","conversationType":1,"userID":"1669430182","groupID":"","showName":"oliverhdh","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.090 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.091 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1670365234_1695766238","conversationType":1,"userID":"1670365234","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:14.095 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.095 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1670622606_1695766238","conversationType":1,"userID":"1670622606","groupID":"","showName":"éĒä¸į","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.100 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.101 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1672477147_1695766238","conversationType":1,"userID":"1672477147","groupID":"","showName":"yang","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.105 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.106 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1672553537_1695766238","conversationType":1,"userID":"1672553537","groupID":"","showName":"卿°¸æŦĸ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:14.114 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.114 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1687822249_1695766238","conversationType":1,"userID":"1687822249","groupID":"","showName":"-","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.121 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.122 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1689589076_1695766238","conversationType":1,"userID":"1689589076","groupID":"","showName":"čŋ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.129 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.130 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1692205388_1695766238","conversationType":1,"userID":"1692205388","groupID":"","showName":"ä¸įĨé","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.134 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.135 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1693456624_1695766238","conversationType":1,"userID":"1693456624","groupID":"","showName":"15819342015","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:14.140 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.140 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1694942215_1695766238","conversationType":1,"userID":"1694942215","groupID":"","showName":"alex","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.145 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.145 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1702117725","conversationType":1,"userID":"1702117725","groupID":"","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:14.149 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.149 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1702188248","conversationType":1,"userID":"1702188248","groupID":"","showName":"įĢšåéįæ°´","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.154 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.154 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1703789873","conversationType":1,"userID":"1703789873","groupID":"","showName":"åéŖ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.161 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.161 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1709215513","conversationType":1,"userID":"1709215513","groupID":"","showName":"muly","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.166 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.166 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1712766650","conversationType":1,"userID":"1712766650","groupID":"","showName":"ly410726","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.173 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.173 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1713347484","conversationType":1,"userID":"1713347484","groupID":"","showName":"1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.181 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.182 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1717761876","conversationType":1,"userID":"1717761876","groupID":"","showName":"፺éåˇ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.189 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.189 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1721395134","conversationType":1,"userID":"1721395134","groupID":"","showName":"kxxx","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.195 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.195 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1727201413","conversationType":1,"userID":"1727201413","groupID":"","showName":"tonny","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:14.200 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.201 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1731109771","conversationType":1,"userID":"1731109771","groupID":"","showName":"åé","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:14.206 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.206 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1731636962","conversationType":1,"userID":"1731636962","groupID":"","showName":"ææ¯æĩč¯č´Ļåˇ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.212 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.212 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1736245880","conversationType":1,"userID":"1736245880","groupID":"","showName":"jdjdjdjx","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:14.217 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.217 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1738515952","conversationType":1,"userID":"1738515952","groupID":"","showName":"123123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.222 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.222 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1742363625","conversationType":1,"userID":"1742363625","groupID":"","showName":"xiaomi","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:14.226 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.227 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1742605630","conversationType":1,"userID":"1742605630","groupID":"","showName":"æ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.232 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.233 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1743177197","conversationType":1,"userID":"1743177197","groupID":"","showName":"Tyy","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.237 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.237 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1744636404","conversationType":1,"userID":"1744636404","groupID":"","showName":"vvvccc","faceURL":"https://web.rentsoft.cn/api_enterprise/object/1744636404/æļæ¯20231011154243.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.245 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.245 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1747359714","conversationType":1,"userID":"1747359714","groupID":"","showName":"Jeq430","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.252 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.252 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1748872770","conversationType":1,"userID":"1748872770","groupID":"","showName":"é¨","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.258 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.258 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1751282511","conversationType":1,"userID":"1751282511","groupID":"","showName":"joeyjoey","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.263 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.264 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1752144503","conversationType":1,"userID":"1752144503","groupID":"","showName":"yezhangyinge","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.268 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.268 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1772946620","conversationType":1,"userID":"1772946620","groupID":"","showName":"jim002","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:14.274 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.274 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1774447755","conversationType":1,"userID":"1774447755","groupID":"","showName":"Xlent","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.278 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.278 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1774484110","conversationType":1,"userID":"1774484110","groupID":"","showName":"zd","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.283 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.283 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1774642490","conversationType":1,"userID":"1774642490","groupID":"","showName":"įŋģäēįŋģå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:14.288 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.288 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1774777128","conversationType":1,"userID":"1774777128","groupID":"","showName":"åąąä¸åå
Ŧå¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.293 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.293 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1776346921","conversationType":1,"userID":"1776346921","groupID":"","showName":"pingfanh","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.298 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.298 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1778088968","conversationType":1,"userID":"1778088968","groupID":"","showName":"wanglei","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:14.304 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.304 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1778147024","conversationType":1,"userID":"1778147024","groupID":"","showName":"test001","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.312 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.313 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1778774517","conversationType":1,"userID":"1778774517","groupID":"","showName":"dsj","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:14.325 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.326 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1780015171","conversationType":1,"userID":"1780015171","groupID":"","showName":"tmoe","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:14.335 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.335 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1780132425","conversationType":1,"userID":"1780132425","groupID":"","showName":"Ncr","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:14.342 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.343 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1786023921","conversationType":1,"userID":"1786023921","groupID":"","showName":"æå¸","faceURL":"https://web.rentsoft.cn/api_enterprise/object/1786023921/1716606540115webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.348 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.349 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1789628801","conversationType":1,"userID":"1789628801","groupID":"","showName":"binlove","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:14.354 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.355 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1790308311","conversationType":1,"userID":"1790308311","groupID":"","showName":"justin","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:14.359 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.359 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1792420009","conversationType":1,"userID":"1792420009","groupID":"","showName":"Gai","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:14.364 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.364 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1792779407","conversationType":1,"userID":"1792779407","groupID":"","showName":"zn","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.369 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.369 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1793479516","conversationType":1,"userID":"1793479516","groupID":"","showName":"ee","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.374 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.374 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1794457838","conversationType":1,"userID":"1794457838","groupID":"","showName":"aqqq","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.378 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.378 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1799928569","conversationType":1,"userID":"1799928569","groupID":"","showName":"12312q","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.383 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.383 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1801012070","conversationType":1,"userID":"1801012070","groupID":"","showName":"åļįļ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.394 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.395 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1804216069","conversationType":1,"userID":"1804216069","groupID":"","showName":"å°ä¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.401 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.401 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1806295356","conversationType":1,"userID":"1806295356","groupID":"","showName":"x123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.407 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.407 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1807355584","conversationType":1,"userID":"1807355584","groupID":"","showName":"uu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.412 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.413 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1808739935","conversationType":1,"userID":"1808739935","groupID":"","showName":"yueyihua","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.417 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.418 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1810705917","conversationType":1,"userID":"1810705917","groupID":"","showName":"jacobcl","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.422 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.422 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1811284251","conversationType":1,"userID":"1811284251","groupID":"","showName":"z_z-","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.426 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.426 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1814656795","conversationType":1,"userID":"1814656795","groupID":"","showName":"123qwe","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.431 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.431 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1817747447","conversationType":1,"userID":"1817747447","groupID":"","showName":"åå°æģ¨čžå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.436 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.436 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1818754282","conversationType":1,"userID":"1818754282","groupID":"","showName":"Hhp","faceURL":"ic_avatar_04","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:14.443 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.443 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1819336215","conversationType":1,"userID":"1819336215","groupID":"","showName":"everyday.difficulty","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.449 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.449 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1819708663","conversationType":1,"userID":"1819708663","groupID":"","showName":"hello2","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.455 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.456 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1820723584","conversationType":1,"userID":"1820723584","groupID":"","showName":"åäē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.462 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.462 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1823386847","conversationType":1,"userID":"1823386847","groupID":"","showName":"åå7","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:14.467 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.467 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1824275843","conversationType":1,"userID":"1824275843","groupID":"","showName":"äŊ åĨŊ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:14.472 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.472 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1825528748","conversationType":1,"userID":"1825528748","groupID":"","showName":"D1gital_D3mon","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.477 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.478 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1828448298","conversationType":1,"userID":"1828448298","groupID":"","showName":"č§į","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:14.482 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.482 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1829995445","conversationType":1,"userID":"1829995445","groupID":"","showName":"ning","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.486 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.487 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1831010849","conversationType":1,"userID":"1831010849","groupID":"","showName":"awedcdaa","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.491 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.491 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1831659683","conversationType":1,"userID":"1831659683","groupID":"","showName":"zzz","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.495 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.496 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1831904357","conversationType":1,"userID":"1831904357","groupID":"","showName":"éŋå¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.500 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.500 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1834112002","conversationType":1,"userID":"1834112002","groupID":"","showName":"Robert","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.528 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.531 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1839129196","conversationType":1,"userID":"1839129196","groupID":"","showName":"sh123123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.544 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.545 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1839949291","conversationType":1,"userID":"1839949291","groupID":"","showName":"yize","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.553 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.554 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1842076890","conversationType":1,"userID":"1842076890","groupID":"","showName":"1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.561 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.562 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1847173569","conversationType":1,"userID":"1847173569","groupID":"","showName":"ææ¯æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:14.567 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.568 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1847547134","conversationType":1,"userID":"1847547134","groupID":"","showName":"marvel","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.573 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.574 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1848196820","conversationType":1,"userID":"1848196820","groupID":"","showName":"åąæ¯","faceURL":"http://14.29.213.197:50002/object/1848196820/storage/emulated/0/Android/data/io.openim.android.demo/cache/1717414842608/1717414836868.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.579 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.579 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1854151908","conversationType":1,"userID":"1854151908","groupID":"","showName":"æĩæĩ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.585 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.585 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1854239844","conversationType":1,"userID":"1854239844","groupID":"","showName":"RockerQ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.590 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.590 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1856646576","conversationType":1,"userID":"1856646576","groupID":"","showName":"åčą","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.594 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.595 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1858506629","conversationType":1,"userID":"1858506629","groupID":"","showName":"IPHWT","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.600 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.601 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1860327649","conversationType":1,"userID":"1860327649","groupID":"","showName":"pale","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.607 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.608 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1864342100","conversationType":1,"userID":"1864342100","groupID":"","showName":"abo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.615 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.615 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1866469672","conversationType":1,"userID":"1866469672","groupID":"","showName":"Tristan","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:14.621 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.622 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1869222509","conversationType":1,"userID":"1869222509","groupID":"","showName":"fawf","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.627 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.628 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1876795205","conversationType":1,"userID":"1876795205","groupID":"","showName":"ååå","faceURL":"https://web.rentsoft.cn/api_enterprise/object/1876795205/image_cropper_1713759992714.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.632 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.633 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1876910460","conversationType":1,"userID":"1876910460","groupID":"","showName":"æčą233","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.638 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.638 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1878877862","conversationType":1,"userID":"1878877862","groupID":"","showName":"eric","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.643 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.643 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1879624691","conversationType":1,"userID":"1879624691","groupID":"","showName":"heool","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.647 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.647 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1881699466","conversationType":1,"userID":"1881699466","groupID":"","showName":"eeeee","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.651 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.652 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1894592643","conversationType":1,"userID":"1894592643","groupID":"","showName":"ivancxj","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.656 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.656 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1896037684","conversationType":1,"userID":"1896037684","groupID":"","showName":"Asuka","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:14.661 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.661 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1896201093","conversationType":1,"userID":"1896201093","groupID":"","showName":"鲲éš","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:14.666 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.667 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1896406410","conversationType":1,"userID":"1896406410","groupID":"","showName":"å°æ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.670 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.671 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1902484337","conversationType":1,"userID":"1902484337","groupID":"","showName":"123123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.678 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.678 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1905725782","conversationType":1,"userID":"1905725782","groupID":"","showName":"123123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.684 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.685 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1906445099","conversationType":1,"userID":"1906445099","groupID":"","showName":"åļ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.690 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.691 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1908218712","conversationType":1,"userID":"1908218712","groupID":"","showName":"äžįļįĻģåģå
Ž","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.696 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.696 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1908245713","conversationType":1,"userID":"1908245713","groupID":"","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:14.701 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.702 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1911583328","conversationType":1,"userID":"1911583328","groupID":"","showName":"az","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:14.706 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.706 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1911710742","conversationType":1,"userID":"1911710742","groupID":"","showName":"æ˛Ąåįģ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:14.711 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.711 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1911810093","conversationType":1,"userID":"1911810093","groupID":"","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.716 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.716 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1912058390","conversationType":1,"userID":"1912058390","groupID":"","showName":"gl1721","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.721 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.721 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1913583468","conversationType":1,"userID":"1913583468","groupID":"","showName":"čŋĒå¸é
","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:14.727 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.727 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1919047430","conversationType":1,"userID":"1919047430","groupID":"","showName":"åąæ¯","faceURL":"https://web.rentsoft.cn/api_enterprise/object/1919047430/storage/emulated/0/Android/data/io.openim.android.demo/cache/1711543706522/1711543697615.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.732 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.732 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1922087882","conversationType":1,"userID":"1922087882","groupID":"","showName":"nanshan","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:14.738 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.738 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1925254179","conversationType":1,"userID":"1925254179","groupID":"","showName":"xqs","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.747 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.747 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1931646522","conversationType":1,"userID":"1931646522","groupID":"","showName":"cjcjj","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.754 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.754 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1934748565","conversationType":1,"userID":"1934748565","groupID":"","showName":"alexander_jiang","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.759 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.759 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1938451039","conversationType":1,"userID":"1938451039","groupID":"","showName":"đđđ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.765 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.766 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1942179907","conversationType":1,"userID":"1942179907","groupID":"","showName":"æ¯æ¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.771 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.771 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1947536099","conversationType":1,"userID":"1947536099","groupID":"","showName":"fortune_cookie","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.777 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.777 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1947607451","conversationType":1,"userID":"1947607451","groupID":"","showName":"hahahah","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.783 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.783 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1948326429","conversationType":1,"userID":"1948326429","groupID":"","showName":"wkkk","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.788 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.788 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1949451221","conversationType":1,"userID":"1949451221","groupID":"","showName":"Lynn","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:14.794 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.794 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1950195921","conversationType":1,"userID":"1950195921","groupID":"","showName":"krishuang","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.799 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.800 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1951127248","conversationType":1,"userID":"1951127248","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.805 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.805 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1952868490","conversationType":1,"userID":"1952868490","groupID":"","showName":"ggbong","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.812 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.812 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1958217588","conversationType":1,"userID":"1958217588","groupID":"","showName":"čæŗŊåˇ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:14.821 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.821 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1958518843","conversationType":1,"userID":"1958518843","groupID":"","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.826 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.827 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1962711667","conversationType":1,"userID":"1962711667","groupID":"","showName":"é
įļ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:14.833 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.833 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1964147937","conversationType":1,"userID":"1964147937","groupID":"","showName":"kkkk364","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:14.838 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.838 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1966124402","conversationType":1,"userID":"1966124402","groupID":"","showName":"1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:14.843 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.843 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1968770658","conversationType":1,"userID":"1968770658","groupID":"","showName":"East","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:14.850 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.851 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1974192173","conversationType":1,"userID":"1974192173","groupID":"","showName":"pap","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.861 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.863 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1975362624","conversationType":1,"userID":"1975362624","groupID":"","showName":"Henry","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:14.871 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.871 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1975553123","conversationType":1,"userID":"1975553123","groupID":"","showName":"8595","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.877 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.878 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1975712729","conversationType":1,"userID":"1975712729","groupID":"","showName":"æ æ°´","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.886 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.887 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1977829381","conversationType":1,"userID":"1977829381","groupID":"","showName":"PAJDI","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.893 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.894 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1979754569","conversationType":1,"userID":"1979754569","groupID":"","showName":"Daisy","faceURL":"https://web.rentsoft.cn/api_enterprise/object/1979754569/1708328290152jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.903 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.903 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1981410842","conversationType":1,"userID":"1981410842","groupID":"","showName":"will","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.908 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.908 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1985863892","conversationType":1,"userID":"1985863892","groupID":"","showName":"1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.913 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.914 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1985870240","conversationType":1,"userID":"1985870240","groupID":"","showName":"1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.919 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.919 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1988963519","conversationType":1,"userID":"1988963519","groupID":"","showName":"dd","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:14.923 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.924 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1993324527","conversationType":1,"userID":"1993324527","groupID":"","showName":"marisa","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.928 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.928 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1993900928","conversationType":1,"userID":"1993900928","groupID":"","showName":"椰å","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:14.933 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.933 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_1996969578","conversationType":1,"userID":"1996969578","groupID":"","showName":"wsdehl","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.938 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.938 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2004232076","conversationType":1,"userID":"2004232076","groupID":"","showName":"â","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.943 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.943 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2004829824","conversationType":1,"userID":"2004829824","groupID":"","showName":"tjx","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:14.947 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.948 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2007415990","conversationType":1,"userID":"2007415990","groupID":"","showName":"abx","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:14.954 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.954 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2010453067","conversationType":1,"userID":"2010453067","groupID":"","showName":"12","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.960 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.961 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2010596235","conversationType":1,"userID":"2010596235","groupID":"","showName":"æ°æ¸Š123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:14.966 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.966 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2011701267","conversationType":1,"userID":"2011701267","groupID":"","showName":"haris","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.972 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.972 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2014288178","conversationType":1,"userID":"2014288178","groupID":"","showName":"å§","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.976 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.977 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2016410286","conversationType":1,"userID":"2016410286","groupID":"","showName":"cheng66","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.981 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.981 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2019888097","conversationType":1,"userID":"2019888097","groupID":"","showName":"æįĒ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.986 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.986 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2020409452","conversationType":1,"userID":"2020409452","groupID":"","showName":"åįĨĨå˛","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.991 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.991 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2021892716","conversationType":1,"userID":"2021892716","groupID":"","showName":"qâweâeâwâq","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:14.996 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:14.996 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2024007389","conversationType":1,"userID":"2024007389","groupID":"","showName":"åŽ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:15.002 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.002 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2024880531","conversationType":1,"userID":"2024880531","groupID":"","showName":"t123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.006 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.006 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2024935500","conversationType":1,"userID":"2024935500","groupID":"","showName":"anlanemo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.010 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.010 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2030639266","conversationType":1,"userID":"2030639266","groupID":"","showName":"å°į§å¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.015 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.016 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2031934238","conversationType":1,"userID":"2031934238","groupID":"","showName":"kai","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.022 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.023 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2033736816","conversationType":1,"userID":"2033736816","groupID":"","showName":"čąįŦ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.028 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.029 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2044305683","conversationType":1,"userID":"2044305683","groupID":"","showName":"summeryz","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.036 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.037 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2051159423","conversationType":1,"userID":"2051159423","groupID":"","showName":"kkun","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:15.041 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.041 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2055552460","conversationType":1,"userID":"2055552460","groupID":"","showName":"ååå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.046 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.046 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2055562411","conversationType":1,"userID":"2055562411","groupID":"","showName":"æ¸æ¸æ¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:15.051 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.051 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2056273558","conversationType":1,"userID":"2056273558","groupID":"","showName":"įĨįĨįĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.056 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.057 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2058272412","conversationType":1,"userID":"2058272412","groupID":"","showName":"čį","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:15.061 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.061 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2065312455","conversationType":1,"userID":"2065312455","groupID":"","showName":"åˇĨå
ˇäēē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.067 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.067 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2065649737","conversationType":1,"userID":"2065649737","groupID":"","showName":"æļ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.072 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.072 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2067518707","conversationType":1,"userID":"2067518707","groupID":"","showName":"įŗįŗ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.076 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.076 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2067737063","conversationType":1,"userID":"2067737063","groupID":"","showName":"test4","faceURL":"ic_avatar_04","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:15.081 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.082 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2068776395","conversationType":1,"userID":"2068776395","groupID":"","showName":"s123456","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:15.089 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.089 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2069135616","conversationType":1,"userID":"2069135616","groupID":"","showName":"111","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.096 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.096 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2072960535","conversationType":1,"userID":"2072960535","groupID":"","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.102 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.102 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2074661004","conversationType":1,"userID":"2074661004","groupID":"","showName":"linger","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.108 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.108 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2079144021","conversationType":1,"userID":"2079144021","groupID":"","showName":"shy","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.113 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.113 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2081682065","conversationType":1,"userID":"2081682065","groupID":"","showName":"æä¸ģäģģ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.118 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.118 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2082541912","conversationType":1,"userID":"2082541912","groupID":"","showName":"kunio","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.124 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.124 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2089643170","conversationType":1,"userID":"2089643170","groupID":"","showName":"qin","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.128 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.129 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2090630692","conversationType":1,"userID":"2090630692","groupID":"","showName":"JJ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:15.133 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.134 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2097541846","conversationType":1,"userID":"2097541846","groupID":"","showName":"will","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.139 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.139 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2097781817","conversationType":1,"userID":"2097781817","groupID":"","showName":"Aladdin","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.144 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.144 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2100400616","conversationType":1,"userID":"2100400616","groupID":"","showName":"yong","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.149 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.149 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2104195868","conversationType":1,"userID":"2104195868","groupID":"","showName":"jerry","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.154 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.154 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2104948837","conversationType":1,"userID":"2104948837","groupID":"","showName":"smallhorse","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.161 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.161 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2105815429","conversationType":1,"userID":"2105815429","groupID":"","showName":"xwsoft","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.167 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.167 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2106298144","conversationType":1,"userID":"2106298144","groupID":"","showName":"test-zoy","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.174 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.174 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2108107622","conversationType":1,"userID":"2108107622","groupID":"","showName":"åå°","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.179 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.179 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2114315169","conversationType":1,"userID":"2114315169","groupID":"","showName":"test6","faceURL":"ic_avatar_02","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:15.184 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.184 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2115325771","conversationType":1,"userID":"2115325771","groupID":"","showName":"zh","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.189 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.189 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2116967433","conversationType":1,"userID":"2116967433","groupID":"","showName":"cqqqq777","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.194 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.194 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2122535786","conversationType":1,"userID":"2122535786","groupID":"","showName":"äšæ˛ģ","faceURL":"https://web.rentsoft.cn/api_enterprise/object/2122535786/image_cropper_EE3CC646-55C6-4FA6-8979-FDEAC045DE82-3495-000002F7B7619DC2.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:15.198 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.199 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2122903572","conversationType":1,"userID":"2122903572","groupID":"","showName":"Jonas","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:15.203 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.204 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2123184085","conversationType":1,"userID":"2123184085","groupID":"","showName":"133","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.209 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.209 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2130822983","conversationType":1,"userID":"2130822983","groupID":"","showName":"adminaaa","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.215 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.215 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2134502115","conversationType":1,"userID":"2134502115","groupID":"","showName":"garbin","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:15.220 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.220 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2135811730","conversationType":1,"userID":"2135811730","groupID":"","showName":"åŧ ä¸3","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:15.225 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.226 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2136985550","conversationType":1,"userID":"2136985550","groupID":"","showName":"CC","faceURL":"https://web.rentsoft.cn/api_enterprise/object/2136985550/storage/emulated/0/Android/data/io.openim.android.demo/cache/1708983023253/1708983019704.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.236 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.237 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2141887973","conversationType":1,"userID":"2141887973","groupID":"","showName":"ååå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:15.249 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.250 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2147178021","conversationType":1,"userID":"2147178021","groupID":"","showName":"titrxw","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.259 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.259 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2148094530","conversationType":1,"userID":"2148094530","groupID":"","showName":"johney","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.266 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.267 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2148877993","conversationType":1,"userID":"2148877993","groupID":"","showName":"hah","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.273 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.273 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2158704735","conversationType":1,"userID":"2158704735","groupID":"","showName":"lh","faceURL":"https://web.rentsoft.cn/api_enterprise/object/2158704735/åēåˇŽįŗč¯ˇ@2x.png","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:15.278 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.278 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2159393416","conversationType":1,"userID":"2159393416","groupID":"","showName":"IM_user","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.283 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.283 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2159739643","conversationType":1,"userID":"2159739643","groupID":"","showName":"zyopenim","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:15.289 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.289 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2161460908","conversationType":1,"userID":"2161460908","groupID":"","showName":"aaa","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.296 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.297 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2161754714","conversationType":1,"userID":"2161754714","groupID":"","showName":"Mingyi","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.305 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.306 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2166930178","conversationType":1,"userID":"2166930178","groupID":"","showName":"Fm2.0","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:15.312 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.312 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2168939271","conversationType":1,"userID":"2168939271","groupID":"","showName":"tlxfif","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.319 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.319 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2169175564","conversationType":1,"userID":"2169175564","groupID":"","showName":"ååĻåé´11","faceURL":"https://web.rentsoft.cn/api_enterprise/object/2169175564/image_2024-04-23-23-16.752.png","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.326 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.327 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2172356511","conversationType":1,"userID":"2172356511","groupID":"","showName":"zh","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.333 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.333 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2175053091","conversationType":1,"userID":"2175053091","groupID":"","showName":"å¤å°Ŋ夊æ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:15.339 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.339 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2175304326","conversationType":1,"userID":"2175304326","groupID":"","showName":"king","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.344 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.345 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2177659996","conversationType":1,"userID":"2177659996","groupID":"","showName":"ZZ","faceURL":"ic_avatar_03","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:15.350 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.350 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2177829402","conversationType":1,"userID":"2177829402","groupID":"","showName":"devin","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.354 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.355 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2180660843","conversationType":1,"userID":"2180660843","groupID":"","showName":"123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:15.359 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.359 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2180823601","conversationType":1,"userID":"2180823601","groupID":"","showName":"gy","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.365 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.366 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2182589988","conversationType":1,"userID":"2182589988","groupID":"","showName":"csllll","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.371 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.371 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2184518026","conversationType":1,"userID":"2184518026","groupID":"","showName":"xiaoxinlee","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.377 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.377 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2184902631","conversationType":1,"userID":"2184902631","groupID":"","showName":"pighorse","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:15.382 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.382 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2186548040","conversationType":1,"userID":"2186548040","groupID":"","showName":"brooks133","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.388 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.389 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2190613325","conversationType":1,"userID":"2190613325","groupID":"","showName":"大éåĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.398 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.398 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2193659648","conversationType":1,"userID":"2193659648","groupID":"","showName":"Jack","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.406 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.406 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2195170233","conversationType":1,"userID":"2195170233","groupID":"","showName":"hhdt2","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:15.411 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.411 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2195904688","conversationType":1,"userID":"2195904688","groupID":"","showName":"windy","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.416 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.417 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2203147158","conversationType":1,"userID":"2203147158","groupID":"","showName":"äŊ°å¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:15.422 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.422 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2203420444","conversationType":1,"userID":"2203420444","groupID":"","showName":"莸į§į","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:15.427 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.427 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2204485419","conversationType":1,"userID":"2204485419","groupID":"","showName":"jr","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.432 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.433 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2210409049","conversationType":1,"userID":"2210409049","groupID":"","showName":"éįįĨĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.437 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.437 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2213558486","conversationType":1,"userID":"2213558486","groupID":"","showName":"ä¸įå777","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.442 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.442 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2215031028","conversationType":1,"userID":"2215031028","groupID":"","showName":"ikun","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.447 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.448 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2216649304","conversationType":1,"userID":"2216649304","groupID":"","showName":"mxz","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.455 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.456 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2220605266","conversationType":1,"userID":"2220605266","groupID":"","showName":"luzx","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.470 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.471 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2222465830","conversationType":1,"userID":"2222465830","groupID":"","showName":"Return Self","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:15.485 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.485 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2226864743","conversationType":1,"userID":"2226864743","groupID":"","showName":"Sammy","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.492 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.493 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2228082017","conversationType":1,"userID":"2228082017","groupID":"","showName":"æįĻ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.499 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.499 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2229500075","conversationType":1,"userID":"2229500075","groupID":"","showName":"jack","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.505 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.505 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2230209768","conversationType":1,"userID":"2230209768","groupID":"","showName":"aaa","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.510 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.510 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2241676396","conversationType":1,"userID":"2241676396","groupID":"","showName":"123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.517 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.517 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2242408886","conversationType":1,"userID":"2242408886","groupID":"","showName":"éŖčą","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.522 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.522 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2243648531","conversationType":1,"userID":"2243648531","groupID":"","showName":"įšįš","faceURL":"https://web.rentsoft.cn/api_enterprise/object/2243648531/image_cropper_1697783728786.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:15.527 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.527 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2244237845","conversationType":1,"userID":"2244237845","groupID":"","showName":"åļåļį","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.532 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.533 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2247734613","conversationType":1,"userID":"2247734613","groupID":"","showName":"å°ąæ¯äŊ ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.538 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.538 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2250230706","conversationType":1,"userID":"2250230706","groupID":"","showName":"大įŊ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.545 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.545 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2253553088","conversationType":1,"userID":"2253553088","groupID":"","showName":"Aa","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.555 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.555 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2259719077","conversationType":1,"userID":"2259719077","groupID":"","showName":"čŖč","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:15.560 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.560 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2262854413","conversationType":1,"userID":"2262854413","groupID":"","showName":"hi_asan","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.566 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.566 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2267320291","conversationType":1,"userID":"2267320291","groupID":"","showName":"beili","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:15.572 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.573 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2269669873","conversationType":1,"userID":"2269669873","groupID":"","showName":"äšäšäš","faceURL":"ic_avatar_04","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:15.577 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.577 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2271624505","conversationType":1,"userID":"2271624505","groupID":"","showName":"cc","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.583 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.583 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2275164187","conversationType":1,"userID":"2275164187","groupID":"","showName":"į","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.589 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.589 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2276632311","conversationType":1,"userID":"2276632311","groupID":"","showName":"sk-test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:15.596 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.596 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2282057245","conversationType":1,"userID":"2282057245","groupID":"","showName":"HZ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.601 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.601 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2284382043","conversationType":1,"userID":"2284382043","groupID":"","showName":"Laoliu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.608 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.608 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2287549734","conversationType":1,"userID":"2287549734","groupID":"","showName":"aaa","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.614 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.614 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2289445413","conversationType":1,"userID":"2289445413","groupID":"","showName":"å厺â","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.620 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.621 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2290916297","conversationType":1,"userID":"2290916297","groupID":"","showName":"æ æ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.627 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.628 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2293953462","conversationType":1,"userID":"2293953462","groupID":"","showName":"å§å§å§","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.633 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.633 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2294068026","conversationType":1,"userID":"2294068026","groupID":"","showName":"æšååčą","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.639 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.640 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2294606956","conversationType":1,"userID":"2294606956","groupID":"","showName":"yc","faceURL":"https://web.rentsoft.cn/api_enterprise/object/2294606956/image_cropper_1705903000004.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.649 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.650 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2294788609","conversationType":1,"userID":"2294788609","groupID":"","showName":"paopaoyo","faceURL":"https://web.rentsoft.cn/api_enterprise/object/2294788609/č¯éŗ.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.657 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.658 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2295443263","conversationType":1,"userID":"2295443263","groupID":"","showName":"čĩĩæĨ夊","faceURL":"https://web.rentsoft.cn/api_enterprise/object/2295443263/image_2024-04-22-37-22.077.png","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.664 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.664 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2298259901","conversationType":1,"userID":"2298259901","groupID":"","showName":"åļåä¸ļ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.670 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.670 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2300236631","conversationType":1,"userID":"2300236631","groupID":"","showName":"Rereered","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.675 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.675 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2302198630","conversationType":1,"userID":"2302198630","groupID":"","showName":"æįžįž","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.683 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.683 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2303519405","conversationType":1,"userID":"2303519405","groupID":"","showName":"æąčޝ åˇĢéĻč","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:15.697 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.697 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2304329422","conversationType":1,"userID":"2304329422","groupID":"","showName":"openIMUser","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:15.705 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.705 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2304731565","conversationType":1,"userID":"2304731565","groupID":"","showName":"æ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.710 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.711 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2305551097","conversationType":1,"userID":"2305551097","groupID":"","showName":"cokepan","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.716 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.716 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2311268381","conversationType":1,"userID":"2311268381","groupID":"","showName":"jinzhengen","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.722 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.722 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2315425831","conversationType":1,"userID":"2315425831","groupID":"","showName":"fermin","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.727 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.727 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2316549309","conversationType":1,"userID":"2316549309","groupID":"","showName":"å
čŗ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.733 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.733 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2318151329","conversationType":1,"userID":"2318151329","groupID":"","showName":"æļé´äš
321a","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.738 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.738 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2318653347","conversationType":1,"userID":"2318653347","groupID":"","showName":"lanjin.wei","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:15.742 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.743 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2320413995","conversationType":1,"userID":"2320413995","groupID":"","showName":"æĩč¯1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.748 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.748 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2321445599","conversationType":1,"userID":"2321445599","groupID":"","showName":"haha","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.754 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.754 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2321576079","conversationType":1,"userID":"2321576079","groupID":"","showName":"sona","faceURL":"https://web.rentsoft.cn/api_enterprise/object/2321576079/tempest.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:15.761 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.761 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2321652781","conversationType":1,"userID":"2321652781","groupID":"","showName":"redux","faceURL":"http://14.29.213.197:50002/object/2321652781/1714790292016_Screenshot_2024-04-05-21-03-05-276_com.tencent.tmgp.pubgmhd.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.767 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.768 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2324043115","conversationType":1,"userID":"2324043115","groupID":"","showName":"æ å","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.773 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.773 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2328434107","conversationType":1,"userID":"2328434107","groupID":"","showName":"LL","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.778 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.778 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2330580373","conversationType":1,"userID":"2330580373","groupID":"","showName":"Asuka","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.783 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.783 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2333601327","conversationType":1,"userID":"2333601327","groupID":"","showName":"six","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:15.787 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.787 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2334128456","conversationType":1,"userID":"2334128456","groupID":"","showName":"this","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.792 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.792 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2340903303","conversationType":1,"userID":"2340903303","groupID":"","showName":"suibian","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.798 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.798 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2347287674","conversationType":1,"userID":"2347287674","groupID":"","showName":"ning","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:15.803 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.803 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2351226722","conversationType":1,"userID":"2351226722","groupID":"","showName":"Test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.808 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.808 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2352729542","conversationType":1,"userID":"2352729542","groupID":"","showName":"hanoch","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.813 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.813 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2359475267","conversationType":1,"userID":"2359475267","groupID":"","showName":"å§Ŧč§čž","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":true,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:15.819 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.819 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2360742959","conversationType":1,"userID":"2360742959","groupID":"","showName":"huawei","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.826 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.826 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2361415263","conversationType":1,"userID":"2361415263","groupID":"","showName":"aixier","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.832 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.833 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2363107482","conversationType":1,"userID":"2363107482","groupID":"","showName":"11","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.838 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.838 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2364621913","conversationType":1,"userID":"2364621913","groupID":"","showName":"åĨŊæåŋĩéŖäŊ å°ą","faceURL":"https://web.rentsoft.cn/api_enterprise/object/2364621913/storage/emulated/0/Android/data/io.openim.android.demo/cache/1706250314324/1706250309211.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.843 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.843 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2365006326","conversationType":1,"userID":"2365006326","groupID":"","showName":"677970","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.848 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.849 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2367330798","conversationType":1,"userID":"2367330798","groupID":"","showName":"å°æžéŧ ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.853 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.853 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2372363878","conversationType":1,"userID":"2372363878","groupID":"","showName":"čč","faceURL":"ic_avatar_01","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:15.858 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.858 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2373768870","conversationType":1,"userID":"2373768870","groupID":"","showName":"é","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.863 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.863 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2373832029","conversationType":1,"userID":"2373832029","groupID":"","showName":"Jdnzb","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.870 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.870 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2373957188","conversationType":1,"userID":"2373957188","groupID":"","showName":"äŧ°čŽĄå°ąæ¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.875 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.876 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2376970002","conversationType":1,"userID":"2376970002","groupID":"","showName":"brook","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:15.882 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.882 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2379157232","conversationType":1,"userID":"2379157232","groupID":"","showName":"18620996030","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.889 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.889 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2380361192","conversationType":1,"userID":"2380361192","groupID":"","showName":"dada","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.893 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.893 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2382919335","conversationType":1,"userID":"2382919335","groupID":"","showName":"č¯ģ䏿","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:15.899 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.899 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2384253834","conversationType":1,"userID":"2384253834","groupID":"","showName":"1212","faceURL":"https://web.rentsoft.cn/api_enterprise/object/2384253834/1706587964062png","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.903 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.903 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2389045052","conversationType":1,"userID":"2389045052","groupID":"","showName":"carry","faceURL":"https://web.rentsoft.cn/api_enterprise/object/2389045052/v2-b98cf82ba221673b93c542c83c3c5bca_r.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.909 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.909 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2391060935","conversationType":1,"userID":"2391060935","groupID":"","showName":"EmoryRoland","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.913 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.913 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2391250488","conversationType":1,"userID":"2391250488","groupID":"","showName":"æŦŖčĩ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.919 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.919 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2397238037","conversationType":1,"userID":"2397238037","groupID":"","showName":"äšąä¸ļåŋ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.924 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.924 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2403026614","conversationType":1,"userID":"2403026614","groupID":"","showName":"westUndefined","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:15.929 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.930 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2405162268","conversationType":1,"userID":"2405162268","groupID":"","showName":"ä¸įŽĄäēįįŽĄäē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.934 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.935 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2406359607","conversationType":1,"userID":"2406359607","groupID":"","showName":"åŧæžå¤Šæļ¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.940 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.941 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2408460453","conversationType":1,"userID":"2408460453","groupID":"","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.947 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.948 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2411591216","conversationType":1,"userID":"2411591216","groupID":"","showName":"å°čą","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.955 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.955 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2411791668","conversationType":1,"userID":"2411791668","groupID":"","showName":"å°įēĸ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:15.960 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.960 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2413777979","conversationType":1,"userID":"2413777979","groupID":"","showName":"å¸å¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.965 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.965 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2418326201","conversationType":1,"userID":"2418326201","groupID":"","showName":"æ¸
įžŊ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.972 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.972 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2419735015","conversationType":1,"userID":"2419735015","groupID":"","showName":"Gon","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.977 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.977 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2420469244","conversationType":1,"userID":"2420469244","groupID":"","showName":"mj","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.981 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.982 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2428356422","conversationType":1,"userID":"2428356422","groupID":"","showName":"æå¤æčŊŠ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:15.987 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.987 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2435076373","conversationType":1,"userID":"2435076373","groupID":"","showName":"dyn7282","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:15.992 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.992 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2441535687","conversationType":1,"userID":"2441535687","groupID":"","showName":"AdinZ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:15.998 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:15.998 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2445660151","conversationType":1,"userID":"2445660151","groupID":"","showName":"Zany","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.005 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.005 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2450037859","conversationType":1,"userID":"2450037859","groupID":"","showName":"æĸĻį§","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:16.012 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.012 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2455695513","conversationType":1,"userID":"2455695513","groupID":"","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.019 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.019 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2456610935","conversationType":1,"userID":"2456610935","groupID":"","showName":"reversefuture","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.025 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.025 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2459596184","conversationType":1,"userID":"2459596184","groupID":"","showName":"minghao","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:16.029 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.029 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2467222861","conversationType":1,"userID":"2467222861","groupID":"","showName":"zz","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.035 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.035 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2467407321","conversationType":1,"userID":"2467407321","groupID":"","showName":"æčĻįč´§åĸ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.040 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.040 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2468662977","conversationType":1,"userID":"2468662977","groupID":"","showName":"aaaa","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.044 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.045 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2469358242","conversationType":1,"userID":"2469358242","groupID":"","showName":"åˇŽä¸å¤å
æŖŽ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.050 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.051 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2481840430","conversationType":1,"userID":"2481840430","groupID":"","showName":"chenyj","faceURL":"https://web.rentsoft.cn/api_enterprise/object/2481840430/image_cropper_1705902974084.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:16.057 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.057 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2484820129","conversationType":1,"userID":"2484820129","groupID":"","showName":"silmeweed","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.063 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.063 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2485271223","conversationType":1,"userID":"2485271223","groupID":"","showName":"blake","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.069 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.069 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2485831627","conversationType":1,"userID":"2485831627","groupID":"","showName":"test2","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.078 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.080 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2487744132","conversationType":1,"userID":"2487744132","groupID":"","showName":"tonei","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.095 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.096 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2491241835","conversationType":1,"userID":"2491241835","groupID":"","showName":"æąåąą","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.105 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.106 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2491509322","conversationType":1,"userID":"2491509322","groupID":"","showName":"jwee","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.111 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.112 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2494091274","conversationType":1,"userID":"2494091274","groupID":"","showName":"1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.118 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.118 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2495044228","conversationType":1,"userID":"2495044228","groupID":"","showName":"æ§ååŋĩ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.124 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.124 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2499792755","conversationType":1,"userID":"2499792755","groupID":"","showName":"ada","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.129 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.129 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2500499043","conversationType":1,"userID":"2500499043","groupID":"","showName":"whaoe","faceURL":"https://web.rentsoft.cn/api_enterprise/object/2500499043/static (1).webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.136 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.136 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2501035310","conversationType":1,"userID":"2501035310","groupID":"","showName":"åŧ į§","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.141 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.141 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2501392715","conversationType":1,"userID":"2501392715","groupID":"","showName":"starle","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.146 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.146 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2509310711","conversationType":1,"userID":"2509310711","groupID":"","showName":"liiu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:16.151 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.152 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2513608056","conversationType":1,"userID":"2513608056","groupID":"","showName":"hx","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.159 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.159 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2519991844","conversationType":1,"userID":"2519991844","groupID":"","showName":"bruce","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.165 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.166 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2527123914","conversationType":1,"userID":"2527123914","groupID":"","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.173 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.173 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2529149450","conversationType":1,"userID":"2529149450","groupID":"","showName":"h","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.179 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.179 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2529173030","conversationType":1,"userID":"2529173030","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.184 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.184 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2541778634","conversationType":1,"userID":"2541778634","groupID":"","showName":"æä¸æĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.189 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.189 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2542308726","conversationType":1,"userID":"2542308726","groupID":"","showName":"lex","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.194 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.194 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2543136948","conversationType":1,"userID":"2543136948","groupID":"","showName":"æ¸åŽ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.199 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.199 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2543151462","conversationType":1,"userID":"2543151462","groupID":"","showName":"albert","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.205 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.205 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2544821957","conversationType":1,"userID":"2544821957","groupID":"","showName":"demo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.211 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.211 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2545303424","conversationType":1,"userID":"2545303424","groupID":"","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.217 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.217 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2546145730","conversationType":1,"userID":"2546145730","groupID":"","showName":"z10","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:16.225 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.225 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2546997095","conversationType":1,"userID":"2546997095","groupID":"","showName":"liar","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:16.231 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.232 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2550644812","conversationType":1,"userID":"2550644812","groupID":"","showName":"lch","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.238 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.238 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2552156733","conversationType":1,"userID":"2552156733","groupID":"","showName":"čå˛äŊį","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.244 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.245 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2553130763","conversationType":1,"userID":"2553130763","groupID":"","showName":"uniapp170","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.250 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.250 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2553226423","conversationType":1,"userID":"2553226423","groupID":"","showName":"夊夊åä¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.256 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.256 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2554370645","conversationType":1,"userID":"2554370645","groupID":"","showName":"åŽåĨŊæļé´å¯šä¸å¯šåé
","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:16.262 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.262 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2554419927","conversationType":1,"userID":"2554419927","groupID":"","showName":"lero","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.266 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.267 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2554528968","conversationType":1,"userID":"2554528968","groupID":"","showName":"čŋåģäē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:16.273 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.273 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2554845832","conversationType":1,"userID":"2554845832","groupID":"","showName":"HiCM","faceURL":"https://web.rentsoft.cn/api_enterprise/object/2554845832/image_cropper_2A05D495-026F-4011-8D37-789963AAA1F3-35639-000009D61371BE21.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:16.278 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.278 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2558214548","conversationType":1,"userID":"2558214548","groupID":"","showName":"openIMéģčĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.284 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.284 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2561044054","conversationType":1,"userID":"2561044054","groupID":"","showName":"kk","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:16.291 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.291 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2562159690","conversationType":1,"userID":"2562159690","groupID":"","showName":"rockbeast","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.298 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.298 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2563542186","conversationType":1,"userID":"2563542186","groupID":"","showName":"įĢįįå¤Ēéŗ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.305 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.305 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2568600958","conversationType":1,"userID":"2568600958","groupID":"","showName":"ččåĢå°","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.310 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.311 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2573171514","conversationType":1,"userID":"2573171514","groupID":"","showName":"Klouse","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:16.316 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.316 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2575964991","conversationType":1,"userID":"2575964991","groupID":"","showName":"į´ĸčŋå
Ž","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.321 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.321 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2576541524","conversationType":1,"userID":"2576541524","groupID":"","showName":"yi","faceURL":"ic_avatar_04","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.326 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.327 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2584692046","conversationType":1,"userID":"2584692046","groupID":"","showName":"蝿Ą","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.332 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.332 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2585587550","conversationType":1,"userID":"2585587550","groupID":"","showName":"lucifer","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.337 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.337 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2591460564","conversationType":1,"userID":"2591460564","groupID":"","showName":"bruo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:16.342 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.342 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2591851186","conversationType":1,"userID":"2591851186","groupID":"","showName":"įŊ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.346 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.347 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2591881637","conversationType":1,"userID":"2591881637","groupID":"","showName":"æĩč¯äēēå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.351 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.351 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2592855383","conversationType":1,"userID":"2592855383","groupID":"","showName":"lalala","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.357 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.357 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2594011902","conversationType":1,"userID":"2594011902","groupID":"","showName":"wh","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.366 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.366 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2595508365","conversationType":1,"userID":"2595508365","groupID":"","showName":"åĸ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.373 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.373 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2600151896","conversationType":1,"userID":"2600151896","groupID":"","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.378 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.378 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2600383208","conversationType":1,"userID":"2600383208","groupID":"","showName":"kako1212","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.383 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.383 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2601184652","conversationType":1,"userID":"2601184652","groupID":"","showName":"įįŦčŋéŖ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.388 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.388 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2601366798","conversationType":1,"userID":"2601366798","groupID":"","showName":"frank","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:16.392 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.392 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2609646737","conversationType":1,"userID":"2609646737","groupID":"","showName":"James","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.397 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.397 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2609720932","conversationType":1,"userID":"2609720932","groupID":"","showName":"æ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:16.402 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.403 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2610489646","conversationType":1,"userID":"2610489646","groupID":"","showName":"xiaofei","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.407 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.407 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2613277163","conversationType":1,"userID":"2613277163","groupID":"","showName":"18897923095","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.411 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.411 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2613915887","conversationType":1,"userID":"2613915887","groupID":"","showName":"ukatta","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.415 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.415 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2617887857","conversationType":1,"userID":"2617887857","groupID":"","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.421 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.421 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2626327942","conversationType":1,"userID":"2626327942","groupID":"","showName":"testyou","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.430 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.430 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2631401942","conversationType":1,"userID":"2631401942","groupID":"","showName":"čĸå
į","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.437 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.437 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2634464933","conversationType":1,"userID":"2634464933","groupID":"","showName":"å°įžŊ201","faceURL":"https://web.rentsoft.cn/api_enterprise/object/2634464933/storage/emulated/0/Android/data/io.openim.android.demo/cache/1703042837872/1703042835726.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.446 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.447 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2635072834","conversationType":1,"userID":"2635072834","groupID":"","showName":"vae","faceURL":"https://web.rentsoft.cn/api_enterprise/object/2635072834/a.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.461 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.462 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2636416179","conversationType":1,"userID":"2636416179","groupID":"","showName":"æĩč¯2","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.470 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.471 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2641033059","conversationType":1,"userID":"2641033059","groupID":"","showName":"į","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.478 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.479 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2645362757","conversationType":1,"userID":"2645362757","groupID":"","showName":"bxd","faceURL":"ic_avatar_06","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:16.485 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.485 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2647432110","conversationType":1,"userID":"2647432110","groupID":"","showName":"5æ11","faceURL":"http://14.29.213.197:50002/object/2647432110/storage/emulated/0/Android/data/io.openim.android.demo/cache/1715428922241/1715428915165.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.490 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.490 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2647762028","conversationType":1,"userID":"2647762028","groupID":"","showName":"åŋ äšäšåŖĢ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.495 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.495 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2651221124","conversationType":1,"userID":"2651221124","groupID":"","showName":"čŖæŋį ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.502 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.502 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2651592493","conversationType":1,"userID":"2651592493","groupID":"","showName":"gang","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:16.508 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.508 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2654376801","conversationType":1,"userID":"2654376801","groupID":"","showName":"mmmm","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.513 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.513 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2657780288","conversationType":1,"userID":"2657780288","groupID":"","showName":"Mitchell1276","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.519 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.520 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2658782184","conversationType":1,"userID":"2658782184","groupID":"","showName":"å°åąą","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.527 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.527 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2660237167","conversationType":1,"userID":"2660237167","groupID":"","showName":"č°æą1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.533 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.534 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2660869153","conversationType":1,"userID":"2660869153","groupID":"","showName":"lucky lee","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.540 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.540 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2661098595","conversationType":1,"userID":"2661098595","groupID":"","showName":"rules","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.545 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.546 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2663585626","conversationType":1,"userID":"2663585626","groupID":"","showName":"ccbb","faceURL":"https://web.rentsoft.cn/api_enterprise/object/2663585626/1703472827028_d4ee3e779f25743636cecdea061db1d7.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.550 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.550 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2664190009","conversationType":1,"userID":"2664190009","groupID":"","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:16.556 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.556 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2669155458","conversationType":1,"userID":"2669155458","groupID":"","showName":"Ubersexual","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.561 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.561 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2669463502","conversationType":1,"userID":"2669463502","groupID":"","showName":"įŊå°į°","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.567 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.567 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2669522749","conversationType":1,"userID":"2669522749","groupID":"","showName":"lz","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.572 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.572 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2669535307","conversationType":1,"userID":"2669535307","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.578 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.578 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2669963504","conversationType":1,"userID":"2669963504","groupID":"","showName":"laser","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:16.583 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.583 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2671236825","conversationType":1,"userID":"2671236825","groupID":"","showName":"0217","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.590 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.592 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2673947325","conversationType":1,"userID":"2673947325","groupID":"","showName":"åįˇ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.605 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.606 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2674288701","conversationType":1,"userID":"2674288701","groupID":"","showName":"åŋįĸå°įĢ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.616 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.617 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2677077317","conversationType":1,"userID":"2677077317","groupID":"","showName":"ččĩĩ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.627 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.627 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2680367243","conversationType":1,"userID":"2680367243","groupID":"","showName":" įį","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:16.633 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.633 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2680629439","conversationType":1,"userID":"2680629439","groupID":"","showName":"111","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.639 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.639 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2682102921","conversationType":1,"userID":"2682102921","groupID":"","showName":"éŋäŋĄ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.644 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.644 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2685129670","conversationType":1,"userID":"2685129670","groupID":"","showName":"äŊ åĨŊå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.650 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.650 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2693021040","conversationType":1,"userID":"2693021040","groupID":"","showName":"åå6","faceURL":"https://web.rentsoft.cn/api_enterprise/object/2693021040/image_2023-09-26-41-23.306.png","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:16.656 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.656 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2696721836","conversationType":1,"userID":"2696721836","groupID":"","showName":"Jason","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.662 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.662 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2699572576","conversationType":1,"userID":"2699572576","groupID":"","showName":"æą¤įĢįĢ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.668 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.668 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2700396114","conversationType":1,"userID":"2700396114","groupID":"","showName":"asdasd","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.673 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.673 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2703205078","conversationType":1,"userID":"2703205078","groupID":"","showName":"asajkn","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.678 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.678 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2704233049","conversationType":1,"userID":"2704233049","groupID":"","showName":"123iuy","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.686 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.687 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2709636845","conversationType":1,"userID":"2709636845","groupID":"","showName":"xxy","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.694 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.695 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2713785709","conversationType":1,"userID":"2713785709","groupID":"","showName":"gsdtyz","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.703 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.703 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2715028883","conversationType":1,"userID":"2715028883","groupID":"","showName":"ssg","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.708 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.708 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2716096987","conversationType":1,"userID":"2716096987","groupID":"","showName":"æ¯
įļ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.713 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.718 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2722031875","conversationType":1,"userID":"2722031875","groupID":"","showName":"Away","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:16.725 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.725 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2724133050","conversationType":1,"userID":"2724133050","groupID":"","showName":"11","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.802 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.803 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2725451243","conversationType":1,"userID":"2725451243","groupID":"","showName":"OpenIM-Andrew123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:16.815 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.817 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2726215647","conversationType":1,"userID":"2726215647","groupID":"","showName":"éŖ","faceURL":"https://web.rentsoft.cn/api_enterprise/object/2726215647/storage/emulated/0/Android/data/io.openim.android.demo/cache/1708416470164/1708416447549.png","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.855 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.855 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2726777258","conversationType":1,"userID":"2726777258","groupID":"","showName":"å§æ¨æĩŠ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:16.860 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.861 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2729128783","conversationType":1,"userID":"2729128783","groupID":"","showName":"qqq","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:16.868 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.868 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2731806832","conversationType":1,"userID":"2731806832","groupID":"","showName":"įåĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.900 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.901 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2734901662","conversationType":1,"userID":"2734901662","groupID":"","showName":"liyongkai","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.912 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.913 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2738525736","conversationType":1,"userID":"2738525736","groupID":"","showName":"č¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.939 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.940 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2740315835","conversationType":1,"userID":"2740315835","groupID":"","showName":"夊æļ¯æĩĒå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.945 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.945 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2742063027","conversationType":1,"userID":"2742063027","groupID":"","showName":"abon","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.953 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.954 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2754162204","conversationType":1,"userID":"2754162204","groupID":"","showName":"developer","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:16.977 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:16.977 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2754805926","conversationType":1,"userID":"2754805926","groupID":"","showName":"sjl13100169932","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.005 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.005 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2755984629","conversationType":1,"userID":"2755984629","groupID":"","showName":"æŗŊ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.036 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.037 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2756605961","conversationType":1,"userID":"2756605961","groupID":"","showName":"Qiu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.103 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.104 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2757252842","conversationType":1,"userID":"2757252842","groupID":"","showName":"chenzp","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.136 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.136 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2764057746","conversationType":1,"userID":"2764057746","groupID":"","showName":"ä¸åŗ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.143 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.143 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2767105920","conversationType":1,"userID":"2767105920","groupID":"","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.157 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.157 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2767449688","conversationType":1,"userID":"2767449688","groupID":"","showName":"åĸåĸ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.163 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.163 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2768044296","conversationType":1,"userID":"2768044296","groupID":"","showName":"zhaxun","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.167 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.168 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2771080861","conversationType":1,"userID":"2771080861","groupID":"","showName":"henry","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.173 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.173 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2775808036","conversationType":1,"userID":"2775808036","groupID":"","showName":"zhou","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.178 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.178 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2776032332","conversationType":1,"userID":"2776032332","groupID":"","showName":"cacate","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.185 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.185 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2776179448","conversationType":1,"userID":"2776179448","groupID":"","showName":"dai","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.191 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.191 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2777182895","conversationType":1,"userID":"2777182895","groupID":"","showName":"æą æŠ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.199 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.199 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2777392996","conversationType":1,"userID":"2777392996","groupID":"","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.205 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.205 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2780679609","conversationType":1,"userID":"2780679609","groupID":"","showName":"debug","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.211 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.211 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2784365787","conversationType":1,"userID":"2784365787","groupID":"","showName":"Jackson","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:17.216 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.217 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2789477856","conversationType":1,"userID":"2789477856","groupID":"","showName":"soeasy","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:17.223 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.223 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2794126343","conversationType":1,"userID":"2794126343","groupID":"","showName":"æ¨ä¸å","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:17.228 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.228 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2797666974","conversationType":1,"userID":"2797666974","groupID":"","showName":"æ č¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.232 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.233 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2798938564","conversationType":1,"userID":"2798938564","groupID":"","showName":"čåĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.238 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.238 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2800069016","conversationType":1,"userID":"2800069016","groupID":"","showName":"taiji","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.243 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.243 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2800090370","conversationType":1,"userID":"2800090370","groupID":"","showName":"return0","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.248 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.248 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2800701915","conversationType":1,"userID":"2800701915","groupID":"","showName":"tt","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:17.255 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.256 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2800889459","conversationType":1,"userID":"2800889459","groupID":"","showName":"andfly","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:17.262 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.262 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2802049271","conversationType":1,"userID":"2802049271","groupID":"","showName":"frank","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.266 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.267 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2804438534","conversationType":1,"userID":"2804438534","groupID":"","showName":"smk","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.272 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.273 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2809251033","conversationType":1,"userID":"2809251033","groupID":"","showName":"wk","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.278 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.278 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2813681002","conversationType":1,"userID":"2813681002","groupID":"","showName":"zc","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.283 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.283 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2814204296","conversationType":1,"userID":"2814204296","groupID":"","showName":"æĩč¯Abcd","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.288 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.289 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2814797407","conversationType":1,"userID":"2814797407","groupID":"","showName":"Zzz","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.293 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.293 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2815363205","conversationType":1,"userID":"2815363205","groupID":"","showName":"ZHUGG333","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.298 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.298 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2817294799","conversationType":1,"userID":"2817294799","groupID":"","showName":"yueyihua1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.304 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.304 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2819267901","conversationType":1,"userID":"2819267901","groupID":"","showName":"hdjd","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.308 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.308 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2820286436","conversationType":1,"userID":"2820286436","groupID":"","showName":"sola","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:17.312 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.312 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2820720133","conversationType":1,"userID":"2820720133","groupID":"","showName":"blank","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:17.319 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.320 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2822906793","conversationType":1,"userID":"2822906793","groupID":"","showName":"å°é¨čŋ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.325 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.325 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2823062805","conversationType":1,"userID":"2823062805","groupID":"","showName":"įæ","faceURL":"https://web.rentsoft.cn/api_enterprise/object/2823062805/beaming_face_with_smiling_eyes_3d@2x.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.334 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.337 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2826097502","conversationType":1,"userID":"2826097502","groupID":"","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.348 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.348 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2827017309","conversationType":1,"userID":"2827017309","groupID":"","showName":"Wyn","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.355 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.355 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2827279331","conversationType":1,"userID":"2827279331","groupID":"","showName":"sdw1255","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.361 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.361 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2831193585","conversationType":1,"userID":"2831193585","groupID":"","showName":"TOCæĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:17.366 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.367 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2831301183","conversationType":1,"userID":"2831301183","groupID":"","showName":"l","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.372 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.372 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2832240999","conversationType":1,"userID":"2832240999","groupID":"","showName":"åå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.376 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.376 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2838302193","conversationType":1,"userID":"2838302193","groupID":"","showName":"phper","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.380 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.380 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2839845469","conversationType":1,"userID":"2839845469","groupID":"","showName":"OpenIM-Kevln","faceURL":"https://web.rentsoft.cn/api_enterprise/object/2839845469/image_cropper_CEAE004E-C57C-44F9-956D-968BA0CA0E6B-4437-000002C381F846B4.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:17.385 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.385 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2840949175","conversationType":1,"userID":"2840949175","groupID":"","showName":"Fan","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:17.391 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.391 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2844014343","conversationType":1,"userID":"2844014343","groupID":"","showName":"chentimi","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.394 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.395 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2844833716","conversationType":1,"userID":"2844833716","groupID":"","showName":"vic ho","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.399 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.399 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2849945986","conversationType":1,"userID":"2849945986","groupID":"","showName":"yomt","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.405 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.405 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2849985286","conversationType":1,"userID":"2849985286","groupID":"","showName":"coderon","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.411 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.411 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2854365488","conversationType":1,"userID":"2854365488","groupID":"","showName":"åĩåĩ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.416 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.416 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2854451107","conversationType":1,"userID":"2854451107","groupID":"","showName":"luobote","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.421 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.421 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2857250700","conversationType":1,"userID":"2857250700","groupID":"","showName":"æåæå
","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.426 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.426 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2860578616","conversationType":1,"userID":"2860578616","groupID":"","showName":"congduan","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:17.431 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.431 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2863149679","conversationType":1,"userID":"2863149679","groupID":"","showName":"čĄčĄ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.435 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.436 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2864156896","conversationType":1,"userID":"2864156896","groupID":"","showName":"ian","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.440 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.441 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2864562820","conversationType":1,"userID":"2864562820","groupID":"","showName":"Tyy","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.445 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.445 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2872689322","conversationType":1,"userID":"2872689322","groupID":"","showName":"tt1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.450 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.451 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2876405749","conversationType":1,"userID":"2876405749","groupID":"","showName":"å°čĨæĻ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.454 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.455 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2876517639","conversationType":1,"userID":"2876517639","groupID":"","showName":"Hash","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.458 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.459 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2878187113","conversationType":1,"userID":"2878187113","groupID":"","showName":"qc","faceURL":"https://web.rentsoft.cn/api_enterprise/object/2878187113/image_cropper_FFE737D9-EC28-44A1-9FBA-2DC72645A146-1867-00000113E9F5DD5C.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:17.463 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.463 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2878889045","conversationType":1,"userID":"2878889045","groupID":"","showName":"uos","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.470 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.470 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2879113393","conversationType":1,"userID":"2879113393","groupID":"","showName":"MCCY","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.476 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.476 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2879577568","conversationType":1,"userID":"2879577568","groupID":"","showName":"V_V","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.481 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.482 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2879740664","conversationType":1,"userID":"2879740664","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:17.487 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.488 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2880563506","conversationType":1,"userID":"2880563506","groupID":"","showName":"biogenius","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.491 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.492 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2881445108","conversationType":1,"userID":"2881445108","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.496 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.496 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2882899447","conversationType":1,"userID":"2882899447","groupID":"","showName":"OpenIM-blooming","faceURL":"https://web.rentsoft.cn/api_enterprise/object/2882899447/avatar.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:17.502 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.502 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2887838678","conversationType":1,"userID":"2887838678","groupID":"","showName":"sam","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:17.506 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.506 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2888258810","conversationType":1,"userID":"2888258810","groupID":"","showName":"cb","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.510 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.510 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2890334421","conversationType":1,"userID":"2890334421","groupID":"","showName":"yasyx","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.514 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.514 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2890713225","conversationType":1,"userID":"2890713225","groupID":"","showName":"chao","faceURL":"https://web.rentsoft.cn/api_enterprise/object/2890713225/image_cropper_1715156142003.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:17.519 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.519 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2893984568","conversationType":1,"userID":"2893984568","groupID":"","showName":"xjčŋå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.524 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.524 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2897007768","conversationType":1,"userID":"2897007768","groupID":"","showName":"Test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.529 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.529 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2900920572","conversationType":1,"userID":"2900920572","groupID":"","showName":"tony","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.534 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.534 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2901569973","conversationType":1,"userID":"2901569973","groupID":"","showName":"kk","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:17.539 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.539 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2901914165","conversationType":1,"userID":"2901914165","groupID":"","showName":"éåŖčä¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.545 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.545 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2902603154","conversationType":1,"userID":"2902603154","groupID":"","showName":"ecoli","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.552 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.552 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2903763431","conversationType":1,"userID":"2903763431","groupID":"","showName":"a10201","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.559 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.559 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2904203350","conversationType":1,"userID":"2904203350","groupID":"","showName":"æĒčĄ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.564 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.564 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2905053077","conversationType":1,"userID":"2905053077","groupID":"","showName":"saber","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:17.568 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.568 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2905252350","conversationType":1,"userID":"2905252350","groupID":"","showName":"alaq","faceURL":"https://web.rentsoft.cn/api_enterprise/object/2905252350/image_cropper_1717143909227.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.572 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.573 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2912415463","conversationType":1,"userID":"2912415463","groupID":"","showName":"éĢč","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:17.578 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.578 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2912423192","conversationType":1,"userID":"2912423192","groupID":"","showName":"į°į°","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.582 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.583 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2914580370","conversationType":1,"userID":"2914580370","groupID":"","showName":"dary123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:17.588 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.588 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2921314358","conversationType":1,"userID":"2921314358","groupID":"","showName":"ryan","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:17.592 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.593 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2925505186","conversationType":1,"userID":"2925505186","groupID":"","showName":"curry","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.597 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.597 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2926374953","conversationType":1,"userID":"2926374953","groupID":"","showName":"alex","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:17.601 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.602 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2926503784","conversationType":1,"userID":"2926503784","groupID":"","showName":"åŧ äģŖäŧ","faceURL":"https://web.rentsoft.cn/api_enterprise/object/2926503784/LOGO莞莥å
į´ 2.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:17.606 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.606 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2930942211","conversationType":1,"userID":"2930942211","groupID":"","showName":"č´ēåĄ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:17.612 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.612 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2933186791","conversationType":1,"userID":"2933186791","groupID":"","showName":"a a","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.618 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.618 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2933595653","conversationType":1,"userID":"2933595653","groupID":"","showName":"wldtb","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.623 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.623 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2934198637","conversationType":1,"userID":"2934198637","groupID":"","showName":"llv","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.629 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.629 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2938766916","conversationType":1,"userID":"2938766916","groupID":"","showName":"čŖčļ
","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.634 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.634 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2940372216","conversationType":1,"userID":"2940372216","groupID":"","showName":"luckli","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.638 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.638 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2942822451","conversationType":1,"userID":"2942822451","groupID":"","showName":"haivo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.643 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.644 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2945631149","conversationType":1,"userID":"2945631149","groupID":"","showName":"coder666","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.649 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.649 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2945766167","conversationType":1,"userID":"2945766167","groupID":"","showName":"įį","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:17.654 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.654 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2951042955","conversationType":1,"userID":"2951042955","groupID":"","showName":"tianle","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.658 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.659 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2951333723","conversationType":1,"userID":"2951333723","groupID":"","showName":"gao","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.663 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.663 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2956182974","conversationType":1,"userID":"2956182974","groupID":"","showName":"åĨŊåĨŊ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:17.667 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.668 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2956222225","conversationType":1,"userID":"2956222225","groupID":"","showName":"åŧ ä¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.674 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.674 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2958242148","conversationType":1,"userID":"2958242148","groupID":"","showName":"䏿","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.679 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.679 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2960809325","conversationType":1,"userID":"2960809325","groupID":"","showName":"sunda","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:17.686 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.687 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2961176761","conversationType":1,"userID":"2961176761","groupID":"","showName":"lei","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.692 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.692 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2962214402","conversationType":1,"userID":"2962214402","groupID":"","showName":"bao","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.698 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.699 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2962770393","conversationType":1,"userID":"2962770393","groupID":"","showName":"æĩŠæĨ åĨĸåē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.705 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.705 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2962834146","conversationType":1,"userID":"2962834146","groupID":"","showName":"å¤å¤å¤","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.709 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.709 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2963659057","conversationType":1,"userID":"2963659057","groupID":"","showName":"jerryding","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.714 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.714 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2964634883","conversationType":1,"userID":"2964634883","groupID":"","showName":"åĸ¨čž°","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.719 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.719 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2965951542","conversationType":1,"userID":"2965951542","groupID":"","showName":"zzy","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.724 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.724 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2966958326","conversationType":1,"userID":"2966958326","groupID":"","showName":"æč§č
","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.728 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.728 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2970863091","conversationType":1,"userID":"2970863091","groupID":"","showName":"Mitsuha","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:17.733 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.733 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2970994891","conversationType":1,"userID":"2970994891","groupID":"","showName":"czx","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.739 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.740 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2974929762","conversationType":1,"userID":"2974929762","groupID":"","showName":"asdasd","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.753 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.754 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2975162313","conversationType":1,"userID":"2975162313","groupID":"","showName":"Nemo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:17.765 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.765 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2975409554","conversationType":1,"userID":"2975409554","groupID":"","showName":"west","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.773 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.773 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2975431366","conversationType":1,"userID":"2975431366","groupID":"","showName":"gk","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:17.780 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.780 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2975597555","conversationType":1,"userID":"2975597555","groupID":"","showName":"hhh","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.787 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.788 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2980893666","conversationType":1,"userID":"2980893666","groupID":"","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.793 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.793 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2981246162","conversationType":1,"userID":"2981246162","groupID":"","showName":"jzw","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.798 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.798 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2982000585","conversationType":1,"userID":"2982000585","groupID":"","showName":"1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.806 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.807 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2984741494","conversationType":1,"userID":"2984741494","groupID":"","showName":"ces","faceURL":"https://web.rentsoft.cn/api_enterprise/object/2984741494/4baae0ee047915267925f13f87058279.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.814 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.814 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2987214012","conversationType":1,"userID":"2987214012","groupID":"","showName":"å¤č¯ģč¯ģ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:17.820 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.820 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2991969100","conversationType":1,"userID":"2991969100","groupID":"","showName":"wjian","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.826 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.827 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2992114349","conversationType":1,"userID":"2992114349","groupID":"","showName":"Hi","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:17.832 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.832 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2997093071","conversationType":1,"userID":"2997093071","groupID":"","showName":"chaoxiaoshu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.837 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.837 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2997317644","conversationType":1,"userID":"2997317644","groupID":"","showName":"Kdkdj","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.842 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.843 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_2998067487","conversationType":1,"userID":"2998067487","groupID":"","showName":"čå
","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.850 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.851 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3002397383","conversationType":1,"userID":"3002397383","groupID":"","showName":"éå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.857 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.857 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3004935297","conversationType":1,"userID":"3004935297","groupID":"","showName":"大åĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.863 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.863 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3004971629","conversationType":1,"userID":"3004971629","groupID":"","showName":"čĨŋį","faceURL":"ic_avatar_05","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:17.868 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.868 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3007515052","conversationType":1,"userID":"3007515052","groupID":"","showName":"vcwen","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.873 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.873 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3011324233","conversationType":1,"userID":"3011324233","groupID":"","showName":"posik","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.878 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.878 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3013893349","conversationType":1,"userID":"3013893349","groupID":"","showName":"YYRise","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:17.884 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.884 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3017062485","conversationType":1,"userID":"3017062485","groupID":"","showName":"god1286","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.889 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.889 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3020676146","conversationType":1,"userID":"3020676146","groupID":"","showName":"åé¯å¤Šæļ¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.893 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.894 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3023379234","conversationType":1,"userID":"3023379234","groupID":"","showName":"čåĨļåĨļ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.898 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.898 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3023473057","conversationType":1,"userID":"3023473057","groupID":"","showName":"Jordandu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.903 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.903 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3023583215","conversationType":1,"userID":"3023583215","groupID":"","showName":"sejung\n","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.909 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.909 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3025087621","conversationType":1,"userID":"3025087621","groupID":"","showName":"adamice999","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.916 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.916 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3028489935","conversationType":1,"userID":"3028489935","groupID":"","showName":"machel","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:17.923 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.923 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3029281130","conversationType":1,"userID":"3029281130","groupID":"","showName":"Ives","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.930 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.930 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3030995041","conversationType":1,"userID":"3030995041","groupID":"","showName":"tony","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.935 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.935 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3037865872","conversationType":1,"userID":"3037865872","groupID":"","showName":"acpl","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.940 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.940 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3045192605","conversationType":1,"userID":"3045192605","groupID":"","showName":"he","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.945 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.945 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3047161541","conversationType":1,"userID":"3047161541","groupID":"","showName":"éčĄ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.951 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.951 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3048025260","conversationType":1,"userID":"3048025260","groupID":"","showName":"xixi","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.956 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.956 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3049658867","conversationType":1,"userID":"3049658867","groupID":"","showName":"a","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.960 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.960 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3053433727","conversationType":1,"userID":"3053433727","groupID":"","showName":"Peter","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.964 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.964 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3057735982","conversationType":1,"userID":"3057735982","groupID":"","showName":"æ æĒŦ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.968 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.968 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3064262697","conversationType":1,"userID":"3064262697","groupID":"","showName":"aaa","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.974 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.974 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3067600722","conversationType":1,"userID":"3067600722","groupID":"","showName":"夊ä¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.980 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.980 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3068103002","conversationType":1,"userID":"3068103002","groupID":"","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.986 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.986 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3072683488","conversationType":1,"userID":"3072683488","groupID":"","showName":"bohr","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.992 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.992 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3075650257","conversationType":1,"userID":"3075650257","groupID":"","showName":"admin","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:17.997 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:17.997 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3079018235","conversationType":1,"userID":"3079018235","groupID":"","showName":"5354","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.003 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.003 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3083415284","conversationType":1,"userID":"3083415284","groupID":"","showName":"éææ´","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.008 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.008 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3086885146","conversationType":1,"userID":"3086885146","groupID":"","showName":"chris","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.012 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.012 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3088309970","conversationType":1,"userID":"3088309970","groupID":"","showName":"12321","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.017 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.017 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3089530163","conversationType":1,"userID":"3089530163","groupID":"","showName":"qian","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.021 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.022 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3093774659","conversationType":1,"userID":"3093774659","groupID":"","showName":"fy","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.026 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.026 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3094251676","conversationType":1,"userID":"3094251676","groupID":"","showName":"yela","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.031 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.031 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3100574492","conversationType":1,"userID":"3100574492","groupID":"","showName":"stone","faceURL":"https://web.rentsoft.cn/api_enterprise/object/3100574492/avatar.png","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.035 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.037 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3100927824","conversationType":1,"userID":"3100927824","groupID":"","showName":"jcokok ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.042 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.043 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3107511955","conversationType":1,"userID":"3107511955","groupID":"","showName":"å¨åååŊé
","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.048 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.049 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3107872821","conversationType":1,"userID":"3107872821","groupID":"","showName":"pipi","faceURL":"https://web.rentsoft.cn/api_enterprise/object/3107872821/1713088111389jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.055 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.055 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3110900347","conversationType":1,"userID":"3110900347","groupID":"","showName":"æ˛Ąæåå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.060 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.061 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3114125867","conversationType":1,"userID":"3114125867","groupID":"","showName":"asdasdv222","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.065 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.065 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3115019608","conversationType":1,"userID":"3115019608","groupID":"","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.069 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.070 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3115148556","conversationType":1,"userID":"3115148556","groupID":"","showName":"éŖčŋæ į","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.075 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.075 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3117863124","conversationType":1,"userID":"3117863124","groupID":"","showName":"čį","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:18.079 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.079 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3117943962","conversationType":1,"userID":"3117943962","groupID":"","showName":"yi","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.083 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.083 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3119418753","conversationType":1,"userID":"3119418753","groupID":"","showName":"hh","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.088 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.088 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3119660813","conversationType":1,"userID":"3119660813","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:18.093 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.093 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3120559487","conversationType":1,"userID":"3120559487","groupID":"","showName":"sevenger","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:18.099 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.101 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3121454753","conversationType":1,"userID":"3121454753","groupID":"","showName":"čåŧē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:18.112 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.113 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3129026839","conversationType":1,"userID":"3129026839","groupID":"","showName":"fq","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.125 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.125 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3132656179","conversationType":1,"userID":"3132656179","groupID":"","showName":"mx","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.133 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.133 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3133075625","conversationType":1,"userID":"3133075625","groupID":"","showName":"shineforce","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.141 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.141 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3134278325","conversationType":1,"userID":"3134278325","groupID":"","showName":"JJ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.146 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.146 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3134537845","conversationType":1,"userID":"3134537845","groupID":"","showName":"ä¸åĒå°æ¨","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.151 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.152 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3139569060","conversationType":1,"userID":"3139569060","groupID":"","showName":"kizai","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.157 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.157 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3140420968","conversationType":1,"userID":"3140420968","groupID":"","showName":"winonewin","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:18.161 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.161 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3140450276","conversationType":1,"userID":"3140450276","groupID":"","showName":"lbh","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.166 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.166 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3150135159","conversationType":1,"userID":"3150135159","groupID":"","showName":"b","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.171 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.171 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3153752108","conversationType":1,"userID":"3153752108","groupID":"","showName":"jacky","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.176 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.176 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3156827214","conversationType":1,"userID":"3156827214","groupID":"","showName":"Joji","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.180 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.180 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3162271972","conversationType":1,"userID":"3162271972","groupID":"","showName":"å´å
į","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.185 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.185 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3163653728","conversationType":1,"userID":"3163653728","groupID":"","showName":"vbb","faceURL":"ic_avatar_02","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:18.190 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.190 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3164446436","conversationType":1,"userID":"3164446436","groupID":"","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:18.196 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.196 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3168796642","conversationType":1,"userID":"3168796642","groupID":"","showName":"įį°į°","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.203 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.203 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3169244622","conversationType":1,"userID":"3169244622","groupID":"","showName":"åŧå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.209 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.209 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3173403446","conversationType":1,"userID":"3173403446","groupID":"","showName":"fsdfwfwef","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.214 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.215 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3173756579","conversationType":1,"userID":"3173756579","groupID":"","showName":"jochenshen","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.219 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.219 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3176223906","conversationType":1,"userID":"3176223906","groupID":"","showName":"lxp","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.224 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.224 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3177929240","conversationType":1,"userID":"3177929240","groupID":"","showName":"liaoyu5222","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.230 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.230 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3179190302","conversationType":1,"userID":"3179190302","groupID":"","showName":"why","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.234 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.235 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3189972504","conversationType":1,"userID":"3189972504","groupID":"","showName":"joey","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.239 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.239 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3190912448","conversationType":1,"userID":"3190912448","groupID":"","showName":"æ æĒŦæ°´","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:18.244 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.245 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3192054345","conversationType":1,"userID":"3192054345","groupID":"","showName":"cjs","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.249 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.249 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3192218781","conversationType":1,"userID":"3192218781","groupID":"","showName":"ty","faceURL":"https://web.rentsoft.cn/api_enterprise/object/3192218781/data/user/0/cn.rentsoft.flutter.openim.consumer/cache/image_cropper_1712828738840.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.263 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.265 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3192583468","conversationType":1,"userID":"3192583468","groupID":"","showName":"elone","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.277 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.278 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3193592046","conversationType":1,"userID":"3193592046","groupID":"","showName":"å°æĒ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.286 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.287 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3196192331","conversationType":1,"userID":"3196192331","groupID":"","showName":"ä¸įšæåĻ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.293 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.293 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3196958921","conversationType":1,"userID":"3196958921","groupID":"","showName":"tim","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.299 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.299 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3197083869","conversationType":1,"userID":"3197083869","groupID":"","showName":"sdf","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.305 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.305 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3199458860","conversationType":1,"userID":"3199458860","groupID":"","showName":"clippp","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.311 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.311 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3199820791","conversationType":1,"userID":"3199820791","groupID":"","showName":"įčŗ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.318 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.318 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3200133119","conversationType":1,"userID":"3200133119","groupID":"","showName":"å°įŗå¤´","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.325 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.325 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3200607575","conversationType":1,"userID":"3200607575","groupID":"","showName":"卿°äŧĻ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.331 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.331 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3200726264","conversationType":1,"userID":"3200726264","groupID":"","showName":"lengyq","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.336 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.337 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3204690068","conversationType":1,"userID":"3204690068","groupID":"","showName":"įŊæĄ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.347 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.347 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3204832902","conversationType":1,"userID":"3204832902","groupID":"","showName":"qee","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.354 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.354 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3205080439","conversationType":1,"userID":"3205080439","groupID":"","showName":"steven","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.360 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.360 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3206443553","conversationType":1,"userID":"3206443553","groupID":"","showName":"čļŖåŗ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.365 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.365 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3206742093","conversationType":1,"userID":"3206742093","groupID":"","showName":"æ´čĩ°į大įŠįŠ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.370 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.370 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3214502593","conversationType":1,"userID":"3214502593","groupID":"","showName":"vic","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:18.375 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.375 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3217427070","conversationType":1,"userID":"3217427070","groupID":"","showName":"spark","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.380 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.380 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3217545671","conversationType":1,"userID":"3217545671","groupID":"","showName":"Alex","faceURL":"https://web.rentsoft.cn/api_enterprise/object/3217545671/1710919079255jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.386 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.386 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3218274782","conversationType":1,"userID":"3218274782","groupID":"","showName":"åŠ´įąŗäš","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:18.393 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.393 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3220549850","conversationType":1,"userID":"3220549850","groupID":"","showName":"xgxfhh","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.399 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.399 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3221190872","conversationType":1,"userID":"3221190872","groupID":"","showName":"jjj","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.405 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.406 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3221229320","conversationType":1,"userID":"3221229320","groupID":"","showName":"æēč´ĸ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.411 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.411 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3224221765","conversationType":1,"userID":"3224221765","groupID":"","showName":"123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.415 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.415 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3224719808","conversationType":1,"userID":"3224719808","groupID":"","showName":"hankli","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.419 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.420 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3227148059","conversationType":1,"userID":"3227148059","groupID":"","showName":"jenkins","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.424 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.424 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3229531095","conversationType":1,"userID":"3229531095","groupID":"","showName":"HH","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:18.429 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.430 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3233270846","conversationType":1,"userID":"3233270846","groupID":"","showName":"hhh","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.434 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.434 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3235316541","conversationType":1,"userID":"3235316541","groupID":"","showName":"vv","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.439 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.439 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3235668582","conversationType":1,"userID":"3235668582","groupID":"","showName":"nicheng","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:18.445 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.445 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3237793462","conversationType":1,"userID":"3237793462","groupID":"","showName":"qqwe","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.455 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.456 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3238659031","conversationType":1,"userID":"3238659031","groupID":"","showName":"fm","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.468 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.469 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3238674643","conversationType":1,"userID":"3238674643","groupID":"","showName":"æĩč¯","faceURL":"https://web.rentsoft.cn/api_enterprise/object/3238674643/垎äŋĄåžį_20231008160456.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:18.476 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.477 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3240646453","conversationType":1,"userID":"3240646453","groupID":"","showName":"æ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.483 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.484 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3241132141","conversationType":1,"userID":"3241132141","groupID":"","showName":"cloudRabbit","faceURL":"https://web.rentsoft.cn/api_enterprise/object/3241132141/1699171052075_20231104_191313.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:18.490 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.490 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3249909086","conversationType":1,"userID":"3249909086","groupID":"","showName":"paul","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.494 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.494 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3249918280","conversationType":1,"userID":"3249918280","groupID":"","showName":"xiaoxiao","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.499 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.499 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3249933654","conversationType":1,"userID":"3249933654","groupID":"","showName":"zhouchao","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.505 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.505 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3250005519","conversationType":1,"userID":"3250005519","groupID":"","showName":"motoheaven","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.509 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.509 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3250579894","conversationType":1,"userID":"3250579894","groupID":"","showName":"kjh","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:18.514 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.515 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3251649871","conversationType":1,"userID":"3251649871","groupID":"","showName":"pro","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.520 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.521 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3261157334","conversationType":1,"userID":"3261157334","groupID":"","showName":"åĩåĩ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.527 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.527 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3261456614","conversationType":1,"userID":"3261456614","groupID":"","showName":"wulalala","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.534 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.534 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3263416246","conversationType":1,"userID":"3263416246","groupID":"","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:18.541 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.541 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3268693150","conversationType":1,"userID":"3268693150","groupID":"","showName":"åēˇå
į","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.545 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.546 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3269425301","conversationType":1,"userID":"3269425301","groupID":"","showName":"čŦčŦį˛","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.552 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.552 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3270681057","conversationType":1,"userID":"3270681057","groupID":"","showName":"GoFive","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.557 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.557 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3276126003","conversationType":1,"userID":"3276126003","groupID":"","showName":"chatJin","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.562 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.562 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3277113648","conversationType":1,"userID":"3277113648","groupID":"","showName":"äŋĄåŋĩ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.566 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.567 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3277330401","conversationType":1,"userID":"3277330401","groupID":"","showName":"éå
į","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.572 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.572 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3277768810","conversationType":1,"userID":"3277768810","groupID":"","showName":"ice","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.577 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.577 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3279927933","conversationType":1,"userID":"3279927933","groupID":"","showName":"demo-wei","faceURL":"https://web.rentsoft.cn/api_enterprise/object/3279927933/1000.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.583 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.584 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3284080283","conversationType":1,"userID":"3284080283","groupID":"","showName":"DF admin","faceURL":"ic_avatar_03","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.590 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.590 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3285780245","conversationType":1,"userID":"3285780245","groupID":"","showName":"å°äē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.596 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.597 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3286756773","conversationType":1,"userID":"3286756773","groupID":"","showName":"Canaan","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:18.603 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.603 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3290255065","conversationType":1,"userID":"3290255065","groupID":"","showName":"åŋč莺","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.608 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.609 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3295857972","conversationType":1,"userID":"3295857972","groupID":"","showName":"bruce","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.614 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.614 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3297069764","conversationType":1,"userID":"3297069764","groupID":"","showName":"mengze","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.620 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.620 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3300998316","conversationType":1,"userID":"3300998316","groupID":"","showName":"įģå°","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.624 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.624 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3305731505","conversationType":1,"userID":"3305731505","groupID":"","showName":"123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:18.628 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.629 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3307929768","conversationType":1,"userID":"3307929768","groupID":"","showName":"xkn","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:18.633 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.634 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3308461087","conversationType":1,"userID":"3308461087","groupID":"","showName":"snihc","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.638 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.638 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3309832576","conversationType":1,"userID":"3309832576","groupID":"","showName":"åå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.642 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.642 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3311609122","conversationType":1,"userID":"3311609122","groupID":"","showName":"hehei","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.647 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.648 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3312811998","conversationType":1,"userID":"3312811998","groupID":"","showName":"į","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.653 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.653 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3320730621","conversationType":1,"userID":"3320730621","groupID":"","showName":"æéģį ´åį","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.659 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.659 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3322768391","conversationType":1,"userID":"3322768391","groupID":"","showName":"æŽįŊįąŗäŋŽæ¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.665 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.666 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3324817195","conversationType":1,"userID":"3324817195","groupID":"","showName":"jclio","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.671 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.671 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3325246129","conversationType":1,"userID":"3325246129","groupID":"","showName":"sutter","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:18.676 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.676 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3325428510","conversationType":1,"userID":"3325428510","groupID":"","showName":"ss","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:18.681 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.681 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3327563110","conversationType":1,"userID":"3327563110","groupID":"","showName":"lison","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:18.685 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.686 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3328438853","conversationType":1,"userID":"3328438853","groupID":"","showName":"äēį̝","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.691 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.692 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3330044431","conversationType":1,"userID":"3330044431","groupID":"","showName":"faker","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.696 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.696 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3332502663","conversationType":1,"userID":"3332502663","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:18.701 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.702 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3335253060","conversationType":1,"userID":"3335253060","groupID":"","showName":"helloword","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.706 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.706 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3335272940","conversationType":1,"userID":"3335272940","groupID":"","showName":"look","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.710 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.711 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3336527674","conversationType":1,"userID":"3336527674","groupID":"","showName":"čč","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.717 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.717 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3340382285","conversationType":1,"userID":"3340382285","groupID":"","showName":"GavinMeng","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.723 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.724 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3340940320","conversationType":1,"userID":"3340940320","groupID":"","showName":"æ˛ŗåįŦŦä¸å¤§å´","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.729 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.730 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3348455039","conversationType":1,"userID":"3348455039","groupID":"","showName":"æąææž","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:18.734 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.735 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3349762211","conversationType":1,"userID":"3349762211","groupID":"","showName":"lp0124","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:18.740 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.740 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3351106700","conversationType":1,"userID":"3351106700","groupID":"","showName":"lf2024","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.744 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.744 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3351467437","conversationType":1,"userID":"3351467437","groupID":"","showName":"fwd","faceURL":"https://web.rentsoft.cn/api_enterprise/object/3351467437/20110814_171228260_iOS.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.749 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.749 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3352768401","conversationType":1,"userID":"3352768401","groupID":"","showName":"å°æ°´äšæē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.753 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.753 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3355860649","conversationType":1,"userID":"3355860649","groupID":"","showName":"SanMse","faceURL":"https://web.rentsoft.cn/api_enterprise/object/3355860649/image_cropper_1706693035480.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.759 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.759 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3356152522","conversationType":1,"userID":"3356152522","groupID":"","showName":"PPJ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.763 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.763 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3357676251","conversationType":1,"userID":"3357676251","groupID":"","showName":"åŋéļ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.767 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.767 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3360234875","conversationType":1,"userID":"3360234875","groupID":"","showName":"mind","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.772 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.772 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3361047963","conversationType":1,"userID":"3361047963","groupID":"","showName":"æŦ§åˇ´","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:18.777 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.777 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3362215269","conversationType":1,"userID":"3362215269","groupID":"","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:18.783 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.783 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3367952952","conversationType":1,"userID":"3367952952","groupID":"","showName":"įį","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.789 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.789 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3370281252","conversationType":1,"userID":"3370281252","groupID":"","showName":"ccni","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:18.795 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.795 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3372906588","conversationType":1,"userID":"3372906588","groupID":"","showName":"long","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:18.799 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.800 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3378171880","conversationType":1,"userID":"3378171880","groupID":"","showName":"ben","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.807 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.808 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3380521639","conversationType":1,"userID":"3380521639","groupID":"","showName":"ååå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.821 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.822 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3384044960","conversationType":1,"userID":"3384044960","groupID":"","showName":"qqq","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.829 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.830 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3384056544","conversationType":1,"userID":"3384056544","groupID":"","showName":"gdse","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:18.836 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.837 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3384401195","conversationType":1,"userID":"3384401195","groupID":"","showName":"flywe","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:18.843 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.843 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3387336082","conversationType":1,"userID":"3387336082","groupID":"","showName":"yleung","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.848 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.848 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3390583172","conversationType":1,"userID":"3390583172","groupID":"","showName":"zx","faceURL":"ic_avatar_01","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:18.853 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.853 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3394129159","conversationType":1,"userID":"3394129159","groupID":"","showName":"æ¯æå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.858 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.859 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3396066359","conversationType":1,"userID":"3396066359","groupID":"","showName":"mr.zhu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.864 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.864 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3396711993","conversationType":1,"userID":"3396711993","groupID":"","showName":"mm","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:18.870 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.870 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3397676820","conversationType":1,"userID":"3397676820","groupID":"","showName":"sababab","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.877 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.877 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3401196714","conversationType":1,"userID":"3401196714","groupID":"","showName":"go-zero","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:18.883 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.883 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3402038544","conversationType":1,"userID":"3402038544","groupID":"","showName":"æžčč
","faceURL":"https://web.rentsoft.cn/api_enterprise/object/3402038544/logo.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.887 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.888 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3405014751","conversationType":1,"userID":"3405014751","groupID":"","showName":"å
´","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.893 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.893 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3405537375","conversationType":1,"userID":"3405537375","groupID":"","showName":"DFF","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.897 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.897 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3408547602","conversationType":1,"userID":"3408547602","groupID":"","showName":"pe123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.901 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.901 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3413094703","conversationType":1,"userID":"3413094703","groupID":"","showName":"sleep","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:18.906 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.906 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3414693763","conversationType":1,"userID":"3414693763","groupID":"","showName":"莝莝é","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:18.911 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.911 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3417649963","conversationType":1,"userID":"3417649963","groupID":"","showName":"ziyuye","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.916 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.916 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3418101290","conversationType":1,"userID":"3418101290","groupID":"","showName":"lpltest","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.921 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.921 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3418577436","conversationType":1,"userID":"3418577436","groupID":"","showName":"OpenIM-skiffer","faceURL":"https://web.rentsoft.cn/api_enterprise/object/3418577436/BD14C2C1956AB2E1BD8A9F33E76220BE (1).jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:18.927 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.927 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3420613648","conversationType":1,"userID":"3420613648","groupID":"","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.933 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.933 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3423009410","conversationType":1,"userID":"3423009410","groupID":"","showName":"yu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.939 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.939 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3424164248","conversationType":1,"userID":"3424164248","groupID":"","showName":"yibao","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:18.946 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.946 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3424790937","conversationType":1,"userID":"3424790937","groupID":"","showName":"ææ¨å","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:18.951 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.951 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3424924792","conversationType":1,"userID":"3424924792","groupID":"","showName":"liuzh","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.956 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.956 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3427883907","conversationType":1,"userID":"3427883907","groupID":"","showName":"aiden","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.960 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.960 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3430278208","conversationType":1,"userID":"3430278208","groupID":"","showName":"ls263","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.969 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.971 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3435189401","conversationType":1,"userID":"3435189401","groupID":"","showName":"magic32","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:18.983 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.983 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3435706047","conversationType":1,"userID":"3435706047","groupID":"","showName":"大į˛Ŋå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:18.995 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:18.996 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3441335163","conversationType":1,"userID":"3441335163","groupID":"","showName":"éŋéå¤","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.002 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.002 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3442471610","conversationType":1,"userID":"3442471610","groupID":"","showName":"1231","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.007 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.007 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3444204020","conversationType":1,"userID":"3444204020","groupID":"","showName":"įå¸
","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:19.012 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.013 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3447932943","conversationType":1,"userID":"3447932943","groupID":"","showName":"chuxia","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.018 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.018 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3451045692","conversationType":1,"userID":"3451045692","groupID":"","showName":"pmanent","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.024 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.024 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3452044353","conversationType":1,"userID":"3452044353","groupID":"","showName":"jx","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.032 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.032 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3454057246","conversationType":1,"userID":"3454057246","groupID":"","showName":"įĢį","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:19.038 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.038 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3456754627","conversationType":1,"userID":"3456754627","groupID":"","showName":"bandong","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:19.043 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.043 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3463065880","conversationType":1,"userID":"3463065880","groupID":"","showName":"åĨļéž","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.048 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.048 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3463544352","conversationType":1,"userID":"3463544352","groupID":"","showName":"įŊææ","faceURL":"https://web.rentsoft.cn/api_enterprise/object/3463544352/01b6815a953d1da8012045b3572417.png@1280w_1l_2o_100sh.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:19.053 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.053 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3469803158","conversationType":1,"userID":"3469803158","groupID":"","showName":"mortal","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.057 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.057 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3470375736","conversationType":1,"userID":"3470375736","groupID":"","showName":"BIN","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.062 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.062 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3470728766","conversationType":1,"userID":"3470728766","groupID":"","showName":"åļ1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.067 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.067 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3471363726","conversationType":1,"userID":"3471363726","groupID":"","showName":"大ä¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.073 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.073 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3473799316","conversationType":1,"userID":"3473799316","groupID":"","showName":"įģåŽļ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.077 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.077 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3476401940","conversationType":1,"userID":"3476401940","groupID":"","showName":"WangZhar","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:19.081 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.082 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3479250495","conversationType":1,"userID":"3479250495","groupID":"","showName":"sickfox","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.089 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.090 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3482885129","conversationType":1,"userID":"3482885129","groupID":"","showName":"Timo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:19.103 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.104 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3483519033","conversationType":1,"userID":"3483519033","groupID":"","showName":"tiger","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.114 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.115 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3485197519","conversationType":1,"userID":"3485197519","groupID":"","showName":"999","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.121 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.122 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3485222434","conversationType":1,"userID":"3485222434","groupID":"","showName":"įåŊåŠ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.127 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.128 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3487505389","conversationType":1,"userID":"3487505389","groupID":"","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.132 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.133 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3488662042","conversationType":1,"userID":"3488662042","groupID":"","showName":"åä¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.138 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.139 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3489712763","conversationType":1,"userID":"3489712763","groupID":"","showName":"Arvin","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.144 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.144 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3489831359","conversationType":1,"userID":"3489831359","groupID":"","showName":"testOpenIM","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:19.148 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.148 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3489929329","conversationType":1,"userID":"3489929329","groupID":"","showName":"lihan","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.153 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.153 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3493014269","conversationType":1,"userID":"3493014269","groupID":"","showName":"æ čŊ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.157 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.157 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3495022341","conversationType":1,"userID":"3495022341","groupID":"","showName":"åžäēééŖ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.161 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.162 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3502864403","conversationType":1,"userID":"3502864403","groupID":"","showName":"pa","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.167 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.168 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3509756342","conversationType":1,"userID":"3509756342","groupID":"","showName":"huxing","faceURL":"https://web.rentsoft.cn/api_enterprise/object/3509756342/storage/emulated/0/Android/data/io.openim.android.demo/cache/1711418855686/1711418853287.png","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.173 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.174 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3512321008","conversationType":1,"userID":"3512321008","groupID":"","showName":"555","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.181 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.181 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3517778099","conversationType":1,"userID":"3517778099","groupID":"","showName":"11","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.187 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.188 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3521826845","conversationType":1,"userID":"3521826845","groupID":"","showName":"čåŧ ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.192 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.192 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3522449211","conversationType":1,"userID":"3522449211","groupID":"","showName":"miku","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.198 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.198 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3525517047","conversationType":1,"userID":"3525517047","groupID":"","showName":"åĩåĩ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:19.203 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.204 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3526379994","conversationType":1,"userID":"3526379994","groupID":"","showName":"JZ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.209 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.209 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3528275239","conversationType":1,"userID":"3528275239","groupID":"","showName":"llvcm","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.214 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.214 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3529802775","conversationType":1,"userID":"3529802775","groupID":"","showName":"zdx","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.220 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.220 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3530383327","conversationType":1,"userID":"3530383327","groupID":"","showName":"6234","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:19.225 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.225 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3530810171","conversationType":1,"userID":"3530810171","groupID":"","showName":"you","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:19.231 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.231 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3532135718","conversationType":1,"userID":"3532135718","groupID":"","showName":"limbus","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.238 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.238 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3534795134","conversationType":1,"userID":"3534795134","groupID":"","showName":"Kevin9527","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:19.246 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.247 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3534802796","conversationType":1,"userID":"3534802796","groupID":"","showName":"å°éŦŧ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:19.253 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.253 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3537220722","conversationType":1,"userID":"3537220722","groupID":"","showName":"www_chat_01","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:19.257 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.258 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3538940238","conversationType":1,"userID":"3538940238","groupID":"","showName":"1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:19.264 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.264 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3541443626","conversationType":1,"userID":"3541443626","groupID":"","showName":"饞æģ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:19.268 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.269 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3542101940","conversationType":1,"userID":"3542101940","groupID":"","showName":"lucaslx","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.274 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.274 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3546255283","conversationType":1,"userID":"3546255283","groupID":"","showName":"yhuaqiang","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:19.279 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.279 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3547273883","conversationType":1,"userID":"3547273883","groupID":"","showName":"æä¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:19.284 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.284 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3547752374","conversationType":1,"userID":"3547752374","groupID":"","showName":"you","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.289 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.289 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3550065953","conversationType":1,"userID":"3550065953","groupID":"","showName":"kã","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.294 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.294 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3551589140","conversationType":1,"userID":"3551589140","groupID":"","showName":"åäŧ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:19.302 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.302 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3554401652","conversationType":1,"userID":"3554401652","groupID":"","showName":"c","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.308 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.309 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3555750545","conversationType":1,"userID":"3555750545","groupID":"","showName":"ccm","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:19.314 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.314 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3560303364","conversationType":1,"userID":"3560303364","groupID":"","showName":"å°åĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.319 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.320 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3561370203","conversationType":1,"userID":"3561370203","groupID":"","showName":"zmg","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.324 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.324 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3564564648","conversationType":1,"userID":"3564564648","groupID":"","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.329 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.329 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3565888306","conversationType":1,"userID":"3565888306","groupID":"","showName":"åååžéŋæļé´äēå§īŧå¯đææč¯æ","faceURL":"/storage/emulated/0/Pictures/1701677914085.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:19.334 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.335 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3567031924","conversationType":1,"userID":"3567031924","groupID":"","showName":"æˇĄæˇĄ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:19.339 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.339 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3570607148","conversationType":1,"userID":"3570607148","groupID":"","showName":"å°ąæ¯čŽĄįŽæē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.344 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.345 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3570742368","conversationType":1,"userID":"3570742368","groupID":"","showName":"æĩč¯å¤§į","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.349 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.349 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3571074829","conversationType":1,"userID":"3571074829","groupID":"","showName":"æļå
","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.362 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.362 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3571143305","conversationType":1,"userID":"3571143305","groupID":"","showName":"1111","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.368 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.369 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3573077275","conversationType":1,"userID":"3573077275","groupID":"","showName":"大äŊŦ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:19.375 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.376 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3574516380","conversationType":1,"userID":"3574516380","groupID":"","showName":"","faceURL":"https://web.rentsoft.cn/api_enterprise/object/3574516380/storage/emulated/0/Android/data/io.openim.android.demo/cache/1704130906024/1704130904921.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:19.381 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.381 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3578633137","conversationType":1,"userID":"3578633137","groupID":"","showName":"Mm","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.387 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.387 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3580853228","conversationType":1,"userID":"3580853228","groupID":"","showName":"hashaha","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:19.392 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.392 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3583713307","conversationType":1,"userID":"3583713307","groupID":"","showName":"Lege","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.398 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.398 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3583831504","conversationType":1,"userID":"3583831504","groupID":"","showName":"qinglin","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.403 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.403 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3583855819","conversationType":1,"userID":"3583855819","groupID":"","showName":"čŋåŋ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.407 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.408 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3586015547","conversationType":1,"userID":"3586015547","groupID":"","showName":"leo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.412 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.412 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3591643599","conversationType":1,"userID":"3591643599","groupID":"","showName":"äšé¸Ļ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.417 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.417 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3593797495","conversationType":1,"userID":"3593797495","groupID":"","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.422 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.422 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3595322825","conversationType":1,"userID":"3595322825","groupID":"","showName":"å¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.429 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.429 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3598806139","conversationType":1,"userID":"3598806139","groupID":"","showName":"ææ¯č°","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.437 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.437 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3599088167","conversationType":1,"userID":"3599088167","groupID":"","showName":"tom","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.443 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.443 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3602243749","conversationType":1,"userID":"3602243749","groupID":"","showName":"å°čĄ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.449 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.449 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3602775150","conversationType":1,"userID":"3602775150","groupID":"","showName":"xbm","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.454 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.454 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3602955381","conversationType":1,"userID":"3602955381","groupID":"","showName":"Robert","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.458 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.458 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3603216444","conversationType":1,"userID":"3603216444","groupID":"","showName":"biubiuįĻåŠ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.464 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.464 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3603394766","conversationType":1,"userID":"3603394766","groupID":"","showName":"Kssion","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:19.468 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.468 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3605112122","conversationType":1,"userID":"3605112122","groupID":"","showName":"wuya","faceURL":"https://web.rentsoft.cn/api_enterprise/object/3605112122/at.png","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.473 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.474 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3605477209","conversationType":1,"userID":"3605477209","groupID":"","showName":"čžžå¸æē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.477 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.478 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3605639507","conversationType":1,"userID":"3605639507","groupID":"","showName":"plogp","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.481 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.482 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3611690609","conversationType":1,"userID":"3611690609","groupID":"","showName":"Jimmy","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.486 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.486 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3611757660","conversationType":1,"userID":"3611757660","groupID":"","showName":"132","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.492 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.492 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3613869101","conversationType":1,"userID":"3613869101","groupID":"","showName":"åĨšåĨšåĨš","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.499 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.499 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3613993751","conversationType":1,"userID":"3613993751","groupID":"","showName":"fengzhiguo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.506 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.506 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3617325444","conversationType":1,"userID":"3617325444","groupID":"","showName":"1111","faceURL":"https://web.rentsoft.cn/api_enterprise/object/3617325444/åąåšæĒåž 2024-04-23 095745.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.511 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.511 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3625321133","conversationType":1,"userID":"3625321133","groupID":"","showName":"Kite","faceURL":"ic_avatar_05","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.516 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.516 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3625514157","conversationType":1,"userID":"3625514157","groupID":"","showName":"Vį","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.521 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.521 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3628521511","conversationType":1,"userID":"3628521511","groupID":"","showName":"ffff","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.525 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.526 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3633193427","conversationType":1,"userID":"3633193427","groupID":"","showName":"leo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.530 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.530 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3635232898","conversationType":1,"userID":"3635232898","groupID":"","showName":"123456","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:19.534 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.534 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3637960024","conversationType":1,"userID":"3637960024","groupID":"","showName":"éĸį§","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:19.538 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.538 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3641418034","conversationType":1,"userID":"3641418034","groupID":"","showName":"éé
","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.543 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.544 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3643765049","conversationType":1,"userID":"3643765049","groupID":"","showName":"ztest","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.548 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.548 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3645011153","conversationType":1,"userID":"3645011153","groupID":"","showName":"čč","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.553 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.553 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3650402223","conversationType":1,"userID":"3650402223","groupID":"","showName":"ian001","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.559 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.560 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3654269967","conversationType":1,"userID":"3654269967","groupID":"","showName":"čĢéæąå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:19.565 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.565 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3655173277","conversationType":1,"userID":"3655173277","groupID":"","showName":"kkkkk","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.571 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.571 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3656425275","conversationType":1,"userID":"3656425275","groupID":"","showName":"å°æą","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.576 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.577 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3656507690","conversationType":1,"userID":"3656507690","groupID":"","showName":"tiger","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:19.580 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.581 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3656865963","conversationType":1,"userID":"3656865963","groupID":"","showName":"zsig","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.585 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.586 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3668055835","conversationType":1,"userID":"3668055835","groupID":"","showName":"Hansen","faceURL":"ic_avatar_06","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:19.589 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.590 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3668313451","conversationType":1,"userID":"3668313451","groupID":"","showName":"å´æ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:19.594 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.595 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3679618679","conversationType":1,"userID":"3679618679","groupID":"","showName":"smile","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.599 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.599 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3681367317","conversationType":1,"userID":"3681367317","groupID":"","showName":"čį","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.603 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.604 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3682601398","conversationType":1,"userID":"3682601398","groupID":"","showName":"xiaoka","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.608 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.609 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3685670989","conversationType":1,"userID":"3685670989","groupID":"","showName":"sf","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.613 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.614 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3688737567","conversationType":1,"userID":"3688737567","groupID":"","showName":"adam","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.619 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.619 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3689984008","conversationType":1,"userID":"3689984008","groupID":"","showName":"å¨","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:19.628 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.628 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3693010460","conversationType":1,"userID":"3693010460","groupID":"","showName":"huyujie0115","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:19.634 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.634 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3693972131","conversationType":1,"userID":"3693972131","groupID":"","showName":"mmmm","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.639 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.639 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3697152375","conversationType":1,"userID":"3697152375","groupID":"","showName":"æé","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.645 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.645 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3697628542","conversationType":1,"userID":"3697628542","groupID":"","showName":"111","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.650 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.650 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3701246521","conversationType":1,"userID":"3701246521","groupID":"","showName":"cb","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.655 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.656 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3707971244","conversationType":1,"userID":"3707971244","groupID":"","showName":"čĄåĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.661 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.661 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3708535808","conversationType":1,"userID":"3708535808","groupID":"","showName":"117503445","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.666 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.666 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3709292948","conversationType":1,"userID":"3709292948","groupID":"","showName":"å¨å¨","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.670 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.670 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3710967864","conversationType":1,"userID":"3710967864","groupID":"","showName":"Shiny","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:19.674 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.674 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3715277438","conversationType":0,"userID":"3715277438","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:19.679 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.681 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3719131896","conversationType":1,"userID":"3719131896","groupID":"","showName":"lydia1883","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.691 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.691 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3720515485","conversationType":1,"userID":"3720515485","groupID":"","showName":"æĩč¯001","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.697 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.698 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3724651470","conversationType":1,"userID":"3724651470","groupID":"","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.703 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.703 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3727425498","conversationType":1,"userID":"3727425498","groupID":"","showName":"yz","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.708 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.708 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3732248827","conversationType":1,"userID":"3732248827","groupID":"","showName":"wqy2","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.713 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.714 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3737685096","conversationType":1,"userID":"3737685096","groupID":"","showName":"éä¸å¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.718 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.719 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3739320072","conversationType":1,"userID":"3739320072","groupID":"","showName":"t","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.727 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.728 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3739899757","conversationType":1,"userID":"3739899757","groupID":"","showName":"jack","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.736 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.737 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3739934262","conversationType":1,"userID":"3739934262","groupID":"","showName":"zsq","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.743 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.744 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3741079018","conversationType":1,"userID":"3741079018","groupID":"","showName":"demo01","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.750 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.750 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3748470665","conversationType":1,"userID":"3748470665","groupID":"","showName":"åŽļåä¸å
´","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.755 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.755 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3750772349","conversationType":1,"userID":"3750772349","groupID":"","showName":"Kr","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.760 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.761 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3750980145","conversationType":1,"userID":"3750980145","groupID":"","showName":"æĨæĨæĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.765 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.765 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3751457430","conversationType":1,"userID":"3751457430","groupID":"","showName":"ååå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.770 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.771 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3755727328","conversationType":1,"userID":"3755727328","groupID":"","showName":"įæŽ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.776 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.776 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3765484234","conversationType":1,"userID":"3765484234","groupID":"","showName":"4234","faceURL":"https://web.rentsoft.cn/api_enterprise/object/3765484234/1713782495110.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:19.781 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.781 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3766915245","conversationType":1,"userID":"3766915245","groupID":"","showName":"æåŊą","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.786 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.787 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3767972548","conversationType":1,"userID":"3767972548","groupID":"","showName":"1_haha","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.791 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.791 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3768320302","conversationType":1,"userID":"3768320302","groupID":"","showName":"Eric","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.798 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.799 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3777699354","conversationType":1,"userID":"3777699354","groupID":"","showName":"åŧčŊ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.805 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.805 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3778574807","conversationType":1,"userID":"3778574807","groupID":"","showName":"忝åĻæįŽį","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.812 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.812 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3781524005","conversationType":1,"userID":"3781524005","groupID":"","showName":"åå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.817 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.817 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3782300709","conversationType":1,"userID":"3782300709","groupID":"","showName":"čĨŋč","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:19.821 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.822 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3786464348","conversationType":1,"userID":"3786464348","groupID":"","showName":"lee","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.826 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.827 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3787170103","conversationType":1,"userID":"3787170103","groupID":"","showName":"æ¨","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:19.832 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.832 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3787639127","conversationType":1,"userID":"3787639127","groupID":"","showName":"shumb","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.836 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.837 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3788067433","conversationType":1,"userID":"3788067433","groupID":"","showName":"q","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:19.842 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.842 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3789077505","conversationType":1,"userID":"3789077505","groupID":"","showName":"sakanal","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.847 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.848 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3789393466","conversationType":1,"userID":"3789393466","groupID":"","showName":"ååæĩæĩ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.853 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.853 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3789622986","conversationType":1,"userID":"3789622986","groupID":"","showName":"éĸå¤","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.859 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.860 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3790708319","conversationType":1,"userID":"3790708319","groupID":"","showName":"echotj","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.866 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.866 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3791452062","conversationType":1,"userID":"3791452062","groupID":"","showName":"wk","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.873 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.873 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3796678904","conversationType":1,"userID":"3796678904","groupID":"","showName":"Mjun","faceURL":"https://web.rentsoft.cn/api_enterprise/object/3796678904/1712470602578_1712409388652.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.879 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.879 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3799378960","conversationType":1,"userID":"3799378960","groupID":"","showName":"cgw","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.885 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.885 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3800330261","conversationType":1,"userID":"3800330261","groupID":"","showName":"Karven","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.890 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.890 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3800799958","conversationType":1,"userID":"3800799958","groupID":"","showName":"lili","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.896 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.896 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3801184840","conversationType":1,"userID":"3801184840","groupID":"","showName":"å°äē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.900 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.901 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3801465816","conversationType":1,"userID":"3801465816","groupID":"","showName":"l","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.906 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.907 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3802153805","conversationType":1,"userID":"3802153805","groupID":"","showName":"123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.911 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.911 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3803355027","conversationType":1,"userID":"3803355027","groupID":"","showName":"flynn","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.915 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.915 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3803994837","conversationType":1,"userID":"3803994837","groupID":"","showName":"Hunter","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.922 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.922 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3804444798","conversationType":1,"userID":"3804444798","groupID":"","showName":"Mlk","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.928 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.928 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3805642017","conversationType":1,"userID":"3805642017","groupID":"","showName":"kevin-01","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.934 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.934 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3812987647","conversationType":1,"userID":"3812987647","groupID":"","showName":"halo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.939 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.939 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3824382983","conversationType":1,"userID":"3824382983","groupID":"","showName":"éŖIos","faceURL":"https://web.rentsoft.cn/api_enterprise/object/3824382983/image_2024-05-08-32-46.437.png","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.943 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.943 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3826712907","conversationType":1,"userID":"3826712907","groupID":"","showName":"grand","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.948 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.949 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3832386746","conversationType":1,"userID":"3832386746","groupID":"","showName":"tao","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.954 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.954 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3834703974","conversationType":1,"userID":"3834703974","groupID":"","showName":"l1062","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.959 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.960 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3834757485","conversationType":1,"userID":"3834757485","groupID":"","showName":"xs","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.964 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.964 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3838004574","conversationType":1,"userID":"3838004574","groupID":"","showName":"Jie","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:19.969 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.969 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3839699134","conversationType":1,"userID":"3839699134","groupID":"","showName":"éŋč¨åžˇ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.975 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.975 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3840194843","conversationType":1,"userID":"3840194843","groupID":"","showName":"čå
","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.979 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.980 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3843602112","conversationType":1,"userID":"3843602112","groupID":"","showName":"2","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:19.984 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.985 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3844179588","conversationType":1,"userID":"3844179588","groupID":"","showName":"å¸
","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:19.991 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.992 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3844296459","conversationType":1,"userID":"3844296459","groupID":"","showName":"ufo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:19.998 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:19.998 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3845663923","conversationType":1,"userID":"3845663923","groupID":"","showName":"zxh","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.004 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.004 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3847693332","conversationType":1,"userID":"3847693332","groupID":"","showName":"ibinz","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:20.009 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.009 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3849018031","conversationType":1,"userID":"3849018031","groupID":"","showName":"ternary73","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:20.014 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.014 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3851012114","conversationType":1,"userID":"3851012114","groupID":"","showName":"æ čĢ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:20.019 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.020 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3851727632","conversationType":1,"userID":"3851727632","groupID":"","showName":"hello","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.024 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.025 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3853166116","conversationType":1,"userID":"3853166116","groupID":"","showName":"UI105","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.029 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.029 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3855555410","conversationType":1,"userID":"3855555410","groupID":"","showName":"qcg","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.033 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.033 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3859980461","conversationType":1,"userID":"3859980461","groupID":"","showName":"åčĢįŦ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:20.040 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.042 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3860769487","conversationType":1,"userID":"3860769487","groupID":"","showName":"David","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:20.053 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.054 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3862147424","conversationType":1,"userID":"3862147424","groupID":"","showName":"éģå
į","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.060 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.061 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3862854837","conversationType":1,"userID":"3862854837","groupID":"","showName":"shanjuke","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.068 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.068 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3868556005","conversationType":1,"userID":"3868556005","groupID":"","showName":"xuyiyang","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.076 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.076 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3868811660","conversationType":1,"userID":"3868811660","groupID":"","showName":"å°įŊ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.082 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.083 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3869241646","conversationType":1,"userID":"3869241646","groupID":"","showName":"Uuuj","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.088 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.088 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3870370757","conversationType":1,"userID":"3870370757","groupID":"","showName":"liu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.093 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.094 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3872108589","conversationType":1,"userID":"3872108589","groupID":"","showName":"robin","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.097 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.098 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3872601320","conversationType":1,"userID":"3872601320","groupID":"","showName":"Ronald","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.102 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.102 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3879871786","conversationType":1,"userID":"3879871786","groupID":"","showName":"æĩį§°","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:20.107 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.107 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3882316983","conversationType":1,"userID":"3882316983","groupID":"","showName":"åä¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.112 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.112 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3894253605","conversationType":1,"userID":"3894253605","groupID":"","showName":"ååŋæĩŽæĸĻ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:20.117 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.117 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3895447084","conversationType":1,"userID":"3895447084","groupID":"","showName":"į大å","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.121 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.122 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3897778874","conversationType":1,"userID":"3897778874","groupID":"","showName":"K","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.126 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.127 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3899444240","conversationType":1,"userID":"3899444240","groupID":"","showName":"black111","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.132 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.132 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3902232278","conversationType":1,"userID":"3902232278","groupID":"","showName":"wei","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.139 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.140 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3910602054","conversationType":1,"userID":"3910602054","groupID":"","showName":"åĢįžč","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.146 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.146 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3912740754","conversationType":1,"userID":"3912740754","groupID":"","showName":"äģ夊","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:20.152 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.152 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3913129073","conversationType":1,"userID":"3913129073","groupID":"","showName":"1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.159 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.161 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3919312406","conversationType":1,"userID":"3919312406","groupID":"","showName":"alone","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:20.172 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.173 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3922682136","conversationType":1,"userID":"3922682136","groupID":"","showName":"éŖ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:20.180 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.181 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3923864156","conversationType":1,"userID":"3923864156","groupID":"","showName":"å¤§åŖŽ","faceURL":"https://web.rentsoft.cn/api_enterprise/object/3923864156/头å2.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.187 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.187 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3926463720","conversationType":1,"userID":"3926463720","groupID":"","showName":"nildebug","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.193 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.193 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3927572489","conversationType":1,"userID":"3927572489","groupID":"","showName":"testyang","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.198 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.199 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3928216074","conversationType":1,"userID":"3928216074","groupID":"","showName":"Coke","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.203 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.204 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3931186398","conversationType":1,"userID":"3931186398","groupID":"","showName":"aaa","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.208 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.209 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3932374393","conversationType":1,"userID":"3932374393","groupID":"","showName":"Lucky","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.213 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.213 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3932990255","conversationType":1,"userID":"3932990255","groupID":"","showName":"äšäšäš","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.218 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.219 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3935071086","conversationType":1,"userID":"3935071086","groupID":"","showName":"ss","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.226 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.227 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3936773930","conversationType":1,"userID":"3936773930","groupID":"","showName":"ã","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.236 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.237 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3937424438","conversationType":1,"userID":"3937424438","groupID":"","showName":"willxm","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.243 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.243 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3939590154","conversationType":1,"userID":"3939590154","groupID":"","showName":"įéĄŋ8","faceURL":"ic_avatar_06","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:20.249 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.249 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3939999665","conversationType":1,"userID":"3939999665","groupID":"","showName":"mary","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:20.254 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.255 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3940445356","conversationType":1,"userID":"3940445356","groupID":"","showName":"čŋæ¯181","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.260 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.260 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3947763668","conversationType":1,"userID":"3947763668","groupID":"","showName":"tk","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.265 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.265 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3950148404","conversationType":1,"userID":"3950148404","groupID":"","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.269 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.269 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3950757937","conversationType":1,"userID":"3950757937","groupID":"","showName":"zhangzt","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.274 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.274 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3951978865","conversationType":1,"userID":"3951978865","groupID":"","showName":"wangshuang","faceURL":"https://web.rentsoft.cn/api_enterprise/object/3951978865/1706079474017_u=3182669744,3015526205&fm=253&fmt=auto&app=138&f=JPEG.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.278 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.278 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3954641888","conversationType":1,"userID":"3954641888","groupID":"","showName":"sktqaq11","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.283 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.283 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3958284610","conversationType":1,"userID":"3958284610","groupID":"","showName":"memo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.288 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.288 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3960310198","conversationType":1,"userID":"3960310198","groupID":"","showName":"大æŧ å¤į","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.293 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.293 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3962502361","conversationType":1,"userID":"3962502361","groupID":"","showName":"qiyu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.298 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.298 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3962961610","conversationType":1,"userID":"3962961610","groupID":"","showName":"minggow","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.303 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.304 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3963709279","conversationType":1,"userID":"3963709279","groupID":"","showName":"laijingwu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.309 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.309 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3963875243","conversationType":1,"userID":"3963875243","groupID":"","showName":"å¨18","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.315 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.315 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3965483986","conversationType":1,"userID":"3965483986","groupID":"","showName":"chirisCao","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.319 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.319 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3965647724","conversationType":1,"userID":"3965647724","groupID":"","showName":"į´æč´´æĄ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:20.323 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.324 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3971926306","conversationType":1,"userID":"3971926306","groupID":"","showName":"qwer","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:20.329 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.329 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3971967127","conversationType":1,"userID":"3971967127","groupID":"","showName":"hahh","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.333 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.333 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3973845314","conversationType":1,"userID":"3973845314","groupID":"","showName":"æģ´æģ´æģ´","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.337 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.338 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3974823781","conversationType":1,"userID":"3974823781","groupID":"","showName":"Hello","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:20.346 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.346 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3974913605","conversationType":1,"userID":"3974913605","groupID":"","showName":"čį","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.350 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.350 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3982399444","conversationType":1,"userID":"3982399444","groupID":"","showName":"Chandler","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.355 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.355 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3984192272","conversationType":1,"userID":"3984192272","groupID":"","showName":"yushuiying","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:20.359 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.359 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3985353822","conversationType":1,"userID":"3985353822","groupID":"","showName":"Terry","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:20.364 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.364 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3985432997","conversationType":1,"userID":"3985432997","groupID":"","showName":"vince","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:20.373 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.373 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3987941559","conversationType":1,"userID":"3987941559","groupID":"","showName":"k","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:20.378 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.378 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3989782521","conversationType":1,"userID":"3989782521","groupID":"","showName":"zjmantou","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:20.383 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.384 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3991660838","conversationType":1,"userID":"3991660838","groupID":"","showName":"ææåŽŊ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:20.389 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.389 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3992722755","conversationType":1,"userID":"3992722755","groupID":"","showName":"hhh","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.393 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.393 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3993861435","conversationType":1,"userID":"3993861435","groupID":"","showName":"åčą","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.398 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.398 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3994384158","conversationType":1,"userID":"3994384158","groupID":"","showName":"Bingou","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.403 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.403 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3995365114","conversationType":1,"userID":"3995365114","groupID":"","showName":"鏺鏝","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.407 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.408 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3995872443","conversationType":1,"userID":"3995872443","groupID":"","showName":"shenalong","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:20.412 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.412 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_3999001279","conversationType":1,"userID":"3999001279","groupID":"","showName":"tt","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.417 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.417 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4000650991","conversationType":1,"userID":"4000650991","groupID":"","showName":"jia","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.421 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.421 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4001754506","conversationType":1,"userID":"4001754506","groupID":"","showName":"yunduoduo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.432 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.432 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4002821549","conversationType":1,"userID":"4002821549","groupID":"","showName":"å¨įēŋIMæĩč¯éĒč¯č´Ļåˇ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:20.440 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.440 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4008031414","conversationType":1,"userID":"4008031414","groupID":"","showName":"VincentXu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.446 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.446 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4009086415","conversationType":1,"userID":"4009086415","groupID":"","showName":"äŊ åĨŊ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.451 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.451 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4010963995","conversationType":1,"userID":"4010963995","groupID":"","showName":"åå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.456 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.456 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4012541644","conversationType":1,"userID":"4012541644","groupID":"","showName":"å°åŋ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.460 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.460 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4013309319","conversationType":1,"userID":"4013309319","groupID":"","showName":"many","faceURL":"https://web.rentsoft.cn/api_enterprise/object/4013309319/image_cropper_1716990715928.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":true,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.465 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.465 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4015475256","conversationType":1,"userID":"4015475256","groupID":"","showName":"haoran127","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:20.471 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.471 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4019194868","conversationType":1,"userID":"4019194868","groupID":"","showName":"qqqq","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:20.475 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.475 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4019430612","conversationType":1,"userID":"4019430612","groupID":"","showName":"į°į°äģåŋå¯å¨į","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.480 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.480 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4023329658","conversationType":1,"userID":"4023329658","groupID":"","showName":"大å
ĩ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:20.484 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.485 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4023669015","conversationType":1,"userID":"4023669015","groupID":"","showName":"90åčžžäēē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:20.489 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.489 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4024116306","conversationType":1,"userID":"4024116306","groupID":"","showName":"conghuhu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.494 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.494 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4026813737","conversationType":1,"userID":"4026813737","groupID":"","showName":"Gloomy","faceURL":"https://web.rentsoft.cn/api_enterprise/object/4026813737/storage/emulated/0/Android/data/io.openim.android.demo/cache/1709745294065/1709745289378.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.500 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.501 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4026917269","conversationType":1,"userID":"4026917269","groupID":"","showName":"cloud","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.506 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.506 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4031972755","conversationType":1,"userID":"4031972755","groupID":"","showName":"louise","faceURL":"https://web.rentsoft.cn/api_enterprise/object/4031972755/image_cropper_1700622477448.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:20.512 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.512 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4039256136","conversationType":1,"userID":"4039256136","groupID":"","showName":"䏿åž","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.517 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.517 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4041344265","conversationType":1,"userID":"4041344265","groupID":"","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.523 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.523 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4049223183","conversationType":1,"userID":"4049223183","groupID":"","showName":"yuriko","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.527 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.527 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4049340883","conversationType":1,"userID":"4049340883","groupID":"","showName":"æĩč¯īŧ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.533 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.533 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4049517000","conversationType":1,"userID":"4049517000","groupID":"","showName":"Leldld","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:20.537 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.538 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4053284890","conversationType":1,"userID":"4053284890","groupID":"","showName":"2682","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.543 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.543 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4055940070","conversationType":1,"userID":"4055940070","groupID":"","showName":"start_test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.547 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.547 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4057171904","conversationType":1,"userID":"4057171904","groupID":"","showName":"CMD","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.551 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.552 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4064402118","conversationType":1,"userID":"4064402118","groupID":"","showName":"ä¸å椰æąå°ąæ¯AI","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.556 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.557 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4067008127","conversationType":1,"userID":"4067008127","groupID":"","showName":"aa","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.562 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.563 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4070197417","conversationType":1,"userID":"4070197417","groupID":"","showName":"åĩåĩå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:20.567 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.568 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4072022438","conversationType":1,"userID":"4072022438","groupID":"","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.573 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.574 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4079084055","conversationType":1,"userID":"4079084055","groupID":"","showName":"æĩč¯č´Ļåˇ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.579 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.579 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4080264659","conversationType":1,"userID":"4080264659","groupID":"","showName":"é1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.583 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.583 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4080738041","conversationType":1,"userID":"4080738041","groupID":"","showName":"goweii","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.587 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.587 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4082103573","conversationType":1,"userID":"4082103573","groupID":"","showName":"june","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:20.591 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.591 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4085376424","conversationType":1,"userID":"4085376424","groupID":"","showName":"aaa","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.595 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.595 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4087789327","conversationType":1,"userID":"4087789327","groupID":"","showName":"q","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.599 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.600 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4091428240","conversationType":1,"userID":"4091428240","groupID":"","showName":"ååĄ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.605 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.605 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4091541801","conversationType":1,"userID":"4091541801","groupID":"","showName":"éŖå č忝","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.609 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.609 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4093701989","conversationType":1,"userID":"4093701989","groupID":"","showName":"aaa","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:20.614 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.614 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4094740281","conversationType":1,"userID":"4094740281","groupID":"","showName":"į§ä¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.619 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.619 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4095191329","conversationType":1,"userID":"4095191329","groupID":"","showName":"lele","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.624 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.625 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4096170064","conversationType":1,"userID":"4096170064","groupID":"","showName":"bm1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:20.631 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.631 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4102041542","conversationType":1,"userID":"4102041542","groupID":"","showName":"čĩĩäēéŖ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.638 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.638 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4105734635","conversationType":1,"userID":"4105734635","groupID":"","showName":"neil","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.643 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.644 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4107410993","conversationType":1,"userID":"4107410993","groupID":"","showName":"夊ä¸č´æå¤čŗ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.649 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.649 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4111442760","conversationType":1,"userID":"4111442760","groupID":"","showName":"čĩæ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.653 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.654 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4113687442","conversationType":1,"userID":"4113687442","groupID":"","showName":"guodz123456","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.660 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.662 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4113735582","conversationType":1,"userID":"4113735582","groupID":"","showName":"dupi","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.673 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.674 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4114891625","conversationType":1,"userID":"4114891625","groupID":"","showName":"å§ä¸ä¸°","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:20.684 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.685 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4116383143","conversationType":1,"userID":"4116383143","groupID":"","showName":"æä¸13","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:20.692 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.693 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4117212022","conversationType":1,"userID":"4117212022","groupID":"","showName":"wqy","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.698 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.698 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4118659143","conversationType":1,"userID":"4118659143","groupID":"","showName":"äŧéš
ååž","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:20.703 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.704 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4119796562","conversationType":1,"userID":"4119796562","groupID":"","showName":"dota","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.710 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.711 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4121091576","conversationType":1,"userID":"4121091576","groupID":"","showName":"ll","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.717 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.717 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4121196365","conversationType":1,"userID":"4121196365","groupID":"","showName":"éŠįąæ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.724 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.724 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4122315779","conversationType":1,"userID":"4122315779","groupID":"","showName":"Xavier","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.728 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.728 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4122387753","conversationType":1,"userID":"4122387753","groupID":"","showName":"openread","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.733 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.733 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4124281952","conversationType":1,"userID":"4124281952","groupID":"","showName":"{}","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.739 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.739 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4124733788","conversationType":1,"userID":"4124733788","groupID":"","showName":"--w--","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.744 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.745 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4127687270","conversationType":1,"userID":"4127687270","groupID":"","showName":"Demo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.749 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.749 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4130100082","conversationType":1,"userID":"4130100082","groupID":"","showName":"kasia","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:20.754 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.755 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4134217728","conversationType":1,"userID":"4134217728","groupID":"","showName":"meme","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.759 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.759 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4140617939","conversationType":1,"userID":"4140617939","groupID":"","showName":"Sam","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.763 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.763 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4142553143","conversationType":1,"userID":"4142553143","groupID":"","showName":"į¤ŧæå¤Š","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.767 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.768 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4143953359","conversationType":1,"userID":"4143953359","groupID":"","showName":"å°æēĒ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.774 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.774 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4152679278","conversationType":1,"userID":"4152679278","groupID":"","showName":"æĒåæĒ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.779 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.779 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4155714037","conversationType":1,"userID":"4155714037","groupID":"","showName":"å°čˇéåžˇäŊŗ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:20.785 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.785 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4164499789","conversationType":1,"userID":"4164499789","groupID":"","showName":"äŊåĸ¨","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.795 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.796 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4164663659","conversationType":1,"userID":"4164663659","groupID":"","showName":"äŊįįæĸĻ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.807 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.808 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4167776677","conversationType":1,"userID":"4167776677","groupID":"","showName":"jacken","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.815 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.816 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4169162891","conversationType":1,"userID":"4169162891","groupID":"","showName":"hubert","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:20.823 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.824 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4174741233","conversationType":1,"userID":"4174741233","groupID":"","showName":"jinti","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.829 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.829 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4176532281","conversationType":1,"userID":"4176532281","groupID":"","showName":"æ´åģå°č","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.834 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.835 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4178861776","conversationType":1,"userID":"4178861776","groupID":"","showName":"åšŋåˇéŋä¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.840 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.840 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4180249221","conversationType":1,"userID":"4180249221","groupID":"","showName":"čąå","faceURL":"https://web.rentsoft.cn/api_enterprise/object/4180249221/1711207911976jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.845 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.845 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4189886690","conversationType":1,"userID":"4189886690","groupID":"","showName":"kmmt","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.850 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.850 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4189972689","conversationType":1,"userID":"4189972689","groupID":"","showName":"zz","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:20.855 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.855 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4193526288","conversationType":1,"userID":"4193526288","groupID":"","showName":"å°åŽ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.860 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.861 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4195435042","conversationType":1,"userID":"4195435042","groupID":"","showName":"åŊįģ´č","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.867 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.867 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4196155498","conversationType":1,"userID":"4196155498","groupID":"","showName":"æĩč¯åˇ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.873 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.874 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4198077672","conversationType":1,"userID":"4198077672","groupID":"","showName":"alan","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.879 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.879 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4201975122","conversationType":1,"userID":"4201975122","groupID":"","showName":"大į","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.885 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.885 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4202803190","conversationType":1,"userID":"4202803190","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:20.890 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.890 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4203267238","conversationType":1,"userID":"4203267238","groupID":"","showName":"jnne","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:20.894 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.894 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4204000340","conversationType":1,"userID":"4204000340","groupID":"","showName":"čĩčĩ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.899 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.899 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4204574965","conversationType":1,"userID":"4204574965","groupID":"","showName":"Ham","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.902 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.903 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4209534099","conversationType":1,"userID":"4209534099","groupID":"","showName":"hongyang","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.907 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.907 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4212105657","conversationType":1,"userID":"4212105657","groupID":"","showName":"aaa123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.912 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.912 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4215789737","conversationType":1,"userID":"4215789737","groupID":"","showName":"dd","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:20.918 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.918 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4216253974","conversationType":1,"userID":"4216253974","groupID":"","showName":"ä¸åĒįąŗéĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.924 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.924 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4216644062","conversationType":1,"userID":"4216644062","groupID":"","showName":"58086955","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.930 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.931 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4216757974","conversationType":1,"userID":"4216757974","groupID":"","showName":"åå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.938 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.938 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4220093768","conversationType":1,"userID":"4220093768","groupID":"","showName":"kk","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.944 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.944 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4221167475","conversationType":1,"userID":"4221167475","groupID":"","showName":"smith","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:20.948 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.948 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4221194205","conversationType":1,"userID":"4221194205","groupID":"","showName":"åŧ čå¸č¯´į","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.953 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.953 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4221983701","conversationType":1,"userID":"4221983701","groupID":"","showName":"éåéž","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:20.959 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.959 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4222334962","conversationType":1,"userID":"4222334962","groupID":"","showName":"Grit","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.963 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.964 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4223720127","conversationType":1,"userID":"4223720127","groupID":"","showName":"gj","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:20.968 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.969 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4226213321","conversationType":1,"userID":"4226213321","groupID":"","showName":"HappyNewYear","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.974 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.975 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4226237813","conversationType":1,"userID":"4226237813","groupID":"","showName":"äŊ ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.979 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.979 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4230648979","conversationType":1,"userID":"4230648979","groupID":"","showName":"åĢæäšäšäšå¯äģĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.983 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.986 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4231104423","conversationType":1,"userID":"4231104423","groupID":"","showName":"åąéŠåŋčŋ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:20.992 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:20.993 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4233310059","conversationType":1,"userID":"4233310059","groupID":"","showName":"1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.001 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.003 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4233425493","conversationType":1,"userID":"4233425493","groupID":"","showName":"Edward","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.017 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.018 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4235698714","conversationType":1,"userID":"4235698714","groupID":"","showName":"666","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.025 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.025 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4240278083","conversationType":1,"userID":"4240278083","groupID":"","showName":"hello","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.031 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.031 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4242533018","conversationType":1,"userID":"4242533018","groupID":"","showName":"yu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.038 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.038 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4246570603","conversationType":1,"userID":"4246570603","groupID":"","showName":"čŋææŦ§å°ŧ_","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:21.043 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.044 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4247095598","conversationType":1,"userID":"4247095598","groupID":"","showName":"ä¸åæščæŋ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.049 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.051 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4247377924","conversationType":1,"userID":"4247377924","groupID":"","showName":"mikenchen","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.057 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.057 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4252484758","conversationType":1,"userID":"4252484758","groupID":"","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.062 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.062 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4253127832","conversationType":1,"userID":"4253127832","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:21.074 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.074 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4253320786","conversationType":1,"userID":"4253320786","groupID":"","showName":"gvgfg","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.080 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.080 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4254681784","conversationType":1,"userID":"4254681784","groupID":"","showName":"To-T","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.087 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.088 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4257335322","conversationType":1,"userID":"4257335322","groupID":"","showName":"įģæĩ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.093 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.093 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4258660302","conversationType":1,"userID":"4258660302","groupID":"","showName":"éŽå°","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.098 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.098 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4259132146","conversationType":1,"userID":"4259132146","groupID":"","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.104 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.104 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4261410970","conversationType":1,"userID":"4261410970","groupID":"","showName":"BETTER","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.110 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.110 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4264539425","conversationType":1,"userID":"4264539425","groupID":"","showName":"abcd","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.117 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.117 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4265720132","conversationType":1,"userID":"4265720132","groupID":"","showName":"å°åˇ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:21.123 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.123 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4266615651","conversationType":1,"userID":"4266615651","groupID":"","showName":"sjf180","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.128 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.128 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4275733340","conversationType":1,"userID":"4275733340","groupID":"","showName":"Jack031","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.134 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.134 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4284653704","conversationType":1,"userID":"4284653704","groupID":"","showName":"Z","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.140 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.140 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4286070689","conversationType":1,"userID":"4286070689","groupID":"","showName":"tarrin","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:21.144 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.145 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4289978919","conversationType":1,"userID":"4289978919","groupID":"","showName":"seefly","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.149 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.149 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4293322269","conversationType":1,"userID":"4293322269","groupID":"","showName":"wahaha","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:21.155 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.155 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4293913125","conversationType":1,"userID":"4293913125","groupID":"","showName":"robin","faceURL":"https://web.rentsoft.cn/api_enterprise/object/4293913125/private/var/mobile/Containers/Data/Application/1BCB0F32-96B0-439C-AC59-89344673CEA7/tmp/image_cropper_73709AAE-C97C-475F-96B3-C1AC6A291781-1488-000000F061B7253F.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:21.160 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.160 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4297395201","conversationType":1,"userID":"4297395201","groupID":"","showName":"éļ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.165 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.165 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4300349125","conversationType":1,"userID":"4300349125","groupID":"","showName":"åŧæŦĄå
","faceURL":"https://web.rentsoft.cn/api_enterprise/object/4300349125/image_cropper_1709243082691.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.172 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.172 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4300789253","conversationType":1,"userID":"4300789253","groupID":"","showName":"æå°éĻ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:21.178 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.179 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4302380765","conversationType":1,"userID":"4302380765","groupID":"","showName":"æį쿏¸æŗŗįéąŧ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.186 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.186 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4306527503","conversationType":1,"userID":"4306527503","groupID":"","showName":"keyring1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.193 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.194 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4307478992","conversationType":1,"userID":"4307478992","groupID":"","showName":"æŽ_éĒ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.198 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.198 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4308365405","conversationType":1,"userID":"4308365405","groupID":"","showName":"æĨå°į§äš","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:21.203 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.204 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4313249276","conversationType":1,"userID":"4313249276","groupID":"","showName":"maple","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.210 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.210 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4316352542","conversationType":1,"userID":"4316352542","groupID":"","showName":"å°","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.215 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.215 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4319599306","conversationType":1,"userID":"4319599306","groupID":"","showName":"wolf","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.221 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.221 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4323462362","conversationType":1,"userID":"4323462362","groupID":"","showName":"åˇĻå ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.230 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.231 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4324879979","conversationType":1,"userID":"4324879979","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:21.243 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.244 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4326656042","conversationType":1,"userID":"4326656042","groupID":"","showName":"æĩč¯1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.251 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.252 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4328265262","conversationType":1,"userID":"4328265262","groupID":"","showName":"abc","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.258 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.259 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4328490815","conversationType":1,"userID":"4328490815","groupID":"","showName":"ekko","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.264 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.264 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4328997633","conversationType":1,"userID":"4328997633","groupID":"","showName":"z","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.270 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.270 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4329402013","conversationType":1,"userID":"4329402013","groupID":"","showName":"IGF","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.278 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.279 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4331285657","conversationType":1,"userID":"4331285657","groupID":"","showName":"ray","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.286 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.286 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4331847866","conversationType":1,"userID":"4331847866","groupID":"","showName":"TechFish","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.291 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.292 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4332427151","conversationType":1,"userID":"4332427151","groupID":"","showName":"thunder","faceURL":"ic_avatar_01","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:21.297 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.297 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4333324598","conversationType":1,"userID":"4333324598","groupID":"","showName":"å¨å","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.301 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.302 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4336422144","conversationType":1,"userID":"4336422144","groupID":"","showName":"įįįåģ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.308 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.308 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4337583921","conversationType":1,"userID":"4337583921","groupID":"","showName":"chann","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.315 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.316 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4340810454","conversationType":1,"userID":"4340810454","groupID":"","showName":"åįŦ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.328 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.329 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4344723150","conversationType":1,"userID":"4344723150","groupID":"","showName":"bb0001","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.338 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.339 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4344973084","conversationType":1,"userID":"4344973084","groupID":"","showName":"dnc","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:21.345 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.346 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4346231461","conversationType":1,"userID":"4346231461","groupID":"","showName":"kiopwias","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:21.351 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.352 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4346543697","conversationType":1,"userID":"4346543697","groupID":"","showName":"ryan","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:21.357 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.358 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4348082955","conversationType":1,"userID":"4348082955","groupID":"","showName":"missful","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.362 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.362 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4348869517","conversationType":1,"userID":"4348869517","groupID":"","showName":"rrtt","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:21.366 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.366 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4351325833","conversationType":1,"userID":"4351325833","groupID":"","showName":"å¸čąæŠ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:21.371 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.371 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4356312106","conversationType":1,"userID":"4356312106","groupID":"","showName":"lisx","faceURL":"ic_avatar_05","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:21.376 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.376 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4357320975","conversationType":1,"userID":"4357320975","groupID":"","showName":"xx","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.381 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.381 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4359161104","conversationType":1,"userID":"4359161104","groupID":"","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.386 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.386 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4359987819","conversationType":1,"userID":"4359987819","groupID":"","showName":"WangPengGuy","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:21.393 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.394 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4363081068","conversationType":1,"userID":"4363081068","groupID":"","showName":"lin","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.403 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.404 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4364213352","conversationType":1,"userID":"4364213352","groupID":"","showName":"xiaoyu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.412 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.412 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4365758115","conversationType":1,"userID":"4365758115","groupID":"","showName":"Miss","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.419 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.419 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4366259531","conversationType":1,"userID":"4366259531","groupID":"","showName":"ttt","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.425 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.425 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4366431790","conversationType":1,"userID":"4366431790","groupID":"","showName":"tony wang","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.430 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.430 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4371536904","conversationType":1,"userID":"4371536904","groupID":"","showName":"lewis","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.434 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.434 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4372248137","conversationType":1,"userID":"4372248137","groupID":"","showName":"ååå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.439 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.439 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4372919561","conversationType":1,"userID":"4372919561","groupID":"","showName":"104-admin","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.444 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.444 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4378913374","conversationType":1,"userID":"4378913374","groupID":"","showName":"asy5668985363","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.449 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.449 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4379253236","conversationType":1,"userID":"4379253236","groupID":"","showName":"wucangeo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.454 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.454 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4382914823","conversationType":1,"userID":"4382914823","groupID":"","showName":"hellosss","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.459 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.459 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4385453331","conversationType":1,"userID":"4385453331","groupID":"","showName":"zhuo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.464 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.464 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4385686899","conversationType":1,"userID":"4385686899","groupID":"","showName":"į§å¤Š","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.471 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.472 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4389192475","conversationType":1,"userID":"4389192475","groupID":"","showName":"HD","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.478 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.478 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4389669728","conversationType":1,"userID":"4389669728","groupID":"","showName":"wfx1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.483 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.483 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4393448866","conversationType":1,"userID":"4393448866","groupID":"","showName":"åäš","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.489 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.489 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4401936006","conversationType":1,"userID":"4401936006","groupID":"","showName":"ååč§äŊ ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.493 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.493 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4413764571","conversationType":1,"userID":"4413764571","groupID":"","showName":"äŊį´§åĨŊ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.497 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.498 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4413835259","conversationType":1,"userID":"4413835259","groupID":"","showName":"éģæ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.502 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.502 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4415857340","conversationType":1,"userID":"4415857340","groupID":"","showName":"xyx","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.506 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.506 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4419129931","conversationType":1,"userID":"4419129931","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.511 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.511 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4422224754","conversationType":1,"userID":"4422224754","groupID":"","showName":"123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.515 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.515 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4422329530","conversationType":1,"userID":"4422329530","groupID":"","showName":"tpeng","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.519 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.519 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4423627349","conversationType":1,"userID":"4423627349","groupID":"","showName":"a","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.523 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.523 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4426459498","conversationType":1,"userID":"4426459498","groupID":"","showName":"emsea","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:21.541 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.541 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4428304728","conversationType":1,"userID":"4428304728","groupID":"","showName":"X","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.549 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.550 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4430427191","conversationType":1,"userID":"4430427191","groupID":"","showName":"xuejian","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.565 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.566 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4436439007","conversationType":1,"userID":"4436439007","groupID":"","showName":"huhu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.576 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.577 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4440450535","conversationType":1,"userID":"4440450535","groupID":"","showName":"éŋæ˛įå¸
æ¯","faceURL":"http://14.29.213.197:50002/object/4440450535/storage/emulated/0/Android/data/io.openim.android.demo/cache/1717312187829/1717312183625.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.584 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.584 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4440534964","conversationType":1,"userID":"4440534964","groupID":"","showName":"IM_STU","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:21.591 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.592 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4445212300","conversationType":1,"userID":"4445212300","groupID":"","showName":"m","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:21.598 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.598 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4448855672","conversationType":1,"userID":"4448855672","groupID":"","showName":"pp_0","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.604 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.604 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4449558244","conversationType":1,"userID":"4449558244","groupID":"","showName":"æŋäščĄ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.610 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.610 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4450360727","conversationType":1,"userID":"4450360727","groupID":"","showName":"åå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.615 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.615 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4451267516","conversationType":1,"userID":"4451267516","groupID":"","showName":"leven","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.620 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.620 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4453030062","conversationType":1,"userID":"4453030062","groupID":"","showName":"æĩč¯åˇ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.626 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.626 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4453849009","conversationType":1,"userID":"4453849009","groupID":"","showName":"zcw","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:21.638 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.639 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4454612664","conversationType":1,"userID":"4454612664","groupID":"","showName":"maben","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.651 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.652 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4464911980","conversationType":1,"userID":"4464911980","groupID":"","showName":"long","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.659 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.660 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4467365448","conversationType":1,"userID":"4467365448","groupID":"","showName":"å°čž","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.666 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.666 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4475835014","conversationType":1,"userID":"4475835014","groupID":"","showName":"Van","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.671 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.671 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4476306361","conversationType":1,"userID":"4476306361","groupID":"","showName":"Anker","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.676 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.676 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4479234419","conversationType":1,"userID":"4479234419","groupID":"","showName":"Jerry","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.681 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.681 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4480521251","conversationType":1,"userID":"4480521251","groupID":"","showName":"ååļå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:21.686 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.686 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4481379556","conversationType":1,"userID":"4481379556","groupID":"","showName":"erwin fu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.692 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.692 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4485043552","conversationType":1,"userID":"4485043552","groupID":"","showName":"wasss","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.696 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.696 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4486805078","conversationType":1,"userID":"4486805078","groupID":"","showName":"narsu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.701 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.701 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4488638760","conversationType":1,"userID":"4488638760","groupID":"","showName":"æĩč¯čåŧ ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.708 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.709 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4493065873","conversationType":1,"userID":"4493065873","groupID":"","showName":"äŊå
į","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.717 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.717 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4494156274","conversationType":1,"userID":"4494156274","groupID":"","showName":"skastyle","faceURL":"https://web.rentsoft.cn/api_enterprise/object/4494156274/image_2023-10-12-10-20.604.png","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:21.725 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.725 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4500177587","conversationType":1,"userID":"4500177587","groupID":"","showName":"ycyxuehan","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.730 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.730 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4501084974","conversationType":1,"userID":"4501084974","groupID":"","showName":"hello","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.736 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.736 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4501771438","conversationType":1,"userID":"4501771438","groupID":"","showName":"é˛","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.747 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.747 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4502082928","conversationType":1,"userID":"4502082928","groupID":"","showName":"å°éé","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.753 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.753 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4508553291","conversationType":1,"userID":"4508553291","groupID":"","showName":"åŽåæčž°","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.759 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.759 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4509502522","conversationType":1,"userID":"4509502522","groupID":"","showName":"æčž°","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.764 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.764 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4510059360","conversationType":1,"userID":"4510059360","groupID":"","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:21.770 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.770 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4510938314","conversationType":1,"userID":"4510938314","groupID":"","showName":"joln","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.776 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.776 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4511028690","conversationType":1,"userID":"4511028690","groupID":"","showName":"čå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.783 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.783 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4512614259","conversationType":1,"userID":"4512614259","groupID":"","showName":"æĩč¯2åˇ","faceURL":"https://web.rentsoft.cn/api_enterprise/object/4512614259/image_cropper_1697164231321.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:21.791 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.791 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4513939193","conversationType":1,"userID":"4513939193","groupID":"","showName":"ææĻ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.800 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.802 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4514515621","conversationType":1,"userID":"4514515621","groupID":"","showName":"į§éŖ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.814 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.815 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4515124280","conversationType":1,"userID":"4515124280","groupID":"","showName":"ä¸č°ä¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.823 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.824 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4518410219","conversationType":1,"userID":"4518410219","groupID":"","showName":"éŠŦåč č","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.831 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.832 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4519437471","conversationType":1,"userID":"4519437471","groupID":"","showName":"brian","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.839 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.839 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4521618779","conversationType":1,"userID":"4521618779","groupID":"","showName":"1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.845 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.845 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4526705625","conversationType":1,"userID":"4526705625","groupID":"","showName":"夊夊","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.850 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.851 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4530769942","conversationType":1,"userID":"4530769942","groupID":"","showName":"snake","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.856 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.856 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4534383505","conversationType":1,"userID":"4534383505","groupID":"","showName":"wayne","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.860 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.861 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4536976003","conversationType":1,"userID":"4536976003","groupID":"","showName":"qdatt","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.867 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.867 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4537133650","conversationType":1,"userID":"4537133650","groupID":"","showName":"MMM","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.873 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.874 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4539505962","conversationType":1,"userID":"4539505962","groupID":"","showName":"hugh","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.881 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.882 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4541622211","conversationType":1,"userID":"4541622211","groupID":"","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.886 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.887 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4542445708","conversationType":1,"userID":"4542445708","groupID":"","showName":"6688","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.891 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.891 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4546854512","conversationType":1,"userID":"4546854512","groupID":"","showName":"čēæå夊éž","faceURL":"https://web.rentsoft.cn/api_enterprise/object/4546854512/垎äŋĄåžį_20230727113525.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:21.897 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.898 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4547179316","conversationType":1,"userID":"4547179316","groupID":"","showName":"æĩč¯428","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.903 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.903 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4549986255","conversationType":1,"userID":"4549986255","groupID":"","showName":"č夊","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.909 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.909 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4551538686","conversationType":1,"userID":"4551538686","groupID":"","showName":"åŧæ ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.913 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.913 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4553582795","conversationType":1,"userID":"4553582795","groupID":"","showName":"tomtom","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.918 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.918 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4554875439","conversationType":1,"userID":"4554875439","groupID":"","showName":"hhhh","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.923 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.923 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4555507970","conversationType":1,"userID":"4555507970","groupID":"","showName":"litm","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.928 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.929 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4558664801","conversationType":1,"userID":"4558664801","groupID":"","showName":"aa","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.935 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.936 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4559881917","conversationType":1,"userID":"4559881917","groupID":"","showName":"čŋæ¯ mail","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.944 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.945 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4560543353","conversationType":1,"userID":"4560543353","groupID":"","showName":"fleesa","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.950 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.950 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4568092882","conversationType":1,"userID":"4568092882","groupID":"","showName":"įį","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.955 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.955 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4569177198","conversationType":1,"userID":"4569177198","groupID":"","showName":"edl1967","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.961 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.962 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4569497081","conversationType":1,"userID":"4569497081","groupID":"","showName":"anan","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.966 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.966 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4576249771","conversationType":1,"userID":"4576249771","groupID":"","showName":"chuntianli","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.973 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.973 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4576673457","conversationType":1,"userID":"4576673457","groupID":"","showName":"tigger","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.977 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.977 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4576871044","conversationType":1,"userID":"4576871044","groupID":"","showName":"xw","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:21.982 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.982 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4578601959","conversationType":1,"userID":"4578601959","groupID":"","showName":"xuchaoqian","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.987 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.987 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4583274239","conversationType":1,"userID":"4583274239","groupID":"","showName":"æĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.992 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.993 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4585412233","conversationType":1,"userID":"4585412233","groupID":"","showName":"w","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:21.999 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:21.999 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4589334066","conversationType":1,"userID":"4589334066","groupID":"","showName":"simon hacker","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:22.009 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.010 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4590290601","conversationType":1,"userID":"4590290601","groupID":"","showName":"PDZS","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.024 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.026 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4591244785","conversationType":1,"userID":"4591244785","groupID":"","showName":"å°¸éǍ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.034 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.035 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4594001188","conversationType":1,"userID":"4594001188","groupID":"","showName":"åĩåĩ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.041 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.041 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4596532610","conversationType":1,"userID":"4596532610","groupID":"","showName":"user88","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.047 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.048 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4596959443","conversationType":1,"userID":"4596959443","groupID":"","showName":"įŊäšäš","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:22.055 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.056 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4597354478","conversationType":1,"userID":"4597354478","groupID":"","showName":"C1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.060 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.060 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4598359368","conversationType":1,"userID":"4598359368","groupID":"","showName":"x","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.065 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.066 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4600766877","conversationType":1,"userID":"4600766877","groupID":"","showName":"YangBH","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:22.070 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.071 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4601563033","conversationType":1,"userID":"4601563033","groupID":"","showName":"HenryHe","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.076 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.076 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4601951290","conversationType":1,"userID":"4601951290","groupID":"","showName":"aabIMer","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.081 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.081 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4604489387","conversationType":1,"userID":"4604489387","groupID":"","showName":"BUZZ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.088 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.088 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4605716056","conversationType":1,"userID":"4605716056","groupID":"","showName":"hklinfeng","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.095 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.095 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4609025266","conversationType":1,"userID":"4609025266","groupID":"","showName":"lm","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.100 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.101 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4610709176","conversationType":1,"userID":"4610709176","groupID":"","showName":"a9999001","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.106 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.106 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4612931477","conversationType":1,"userID":"4612931477","groupID":"","showName":"HFDG","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.111 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.111 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4613234206","conversationType":1,"userID":"4613234206","groupID":"","showName":"james","faceURL":"https://web.rentsoft.cn/api_enterprise/object/4613234206/image_cropper_1700090828297.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:22.116 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.116 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4613808391","conversationType":1,"userID":"4613808391","groupID":"","showName":"厧äšå
šæéĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.120 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.121 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4614771183","conversationType":1,"userID":"4614771183","groupID":"","showName":"大åĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.126 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.126 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4615063306","conversationType":1,"userID":"4615063306","groupID":"","showName":"čąčą","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.130 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.130 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4615500844","conversationType":1,"userID":"4615500844","groupID":"","showName":"Asanatsa","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.136 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.136 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4616348536","conversationType":1,"userID":"4616348536","groupID":"","showName":"æå¤åĄ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:22.141 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.141 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4617886925","conversationType":1,"userID":"4617886925","groupID":"","showName":"kevin_wen1","faceURL":"https://web.rentsoft.cn/api_enterprise/object/4617886925/1706666272705jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.146 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.147 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4627372556","conversationType":1,"userID":"4627372556","groupID":"","showName":"derek","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.152 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.152 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4627757948","conversationType":1,"userID":"4627757948","groupID":"","showName":"ååå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.158 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.159 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4628456484","conversationType":1,"userID":"4628456484","groupID":"","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.165 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.165 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4631480818","conversationType":1,"userID":"4631480818","groupID":"","showName":"test1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.172 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.172 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4636565947","conversationType":1,"userID":"4636565947","groupID":"","showName":"BH2VSQ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.178 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.178 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4641688133","conversationType":1,"userID":"4641688133","groupID":"","showName":"ææ","faceURL":"https://web.rentsoft.cn/api_enterprise/object/4641688133/image_2024-04-26-22-27.549.png","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.182 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.182 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4641774210","conversationType":1,"userID":"4641774210","groupID":"","showName":"æ°æŋæšæĩč¯7035","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.187 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.187 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4644188070","conversationType":1,"userID":"4644188070","groupID":"","showName":"Phil","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:22.193 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.193 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4647156540","conversationType":1,"userID":"4647156540","groupID":"","showName":"listenmiss","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:22.197 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.197 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4647392322","conversationType":1,"userID":"4647392322","groupID":"","showName":"maxincai","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.202 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.202 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4648916002","conversationType":1,"userID":"4648916002","groupID":"","showName":"Sam","faceURL":"https://web.rentsoft.cn/api_enterprise/object/4648916002/image_cropper_1707582245462.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.207 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.207 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4650957151","conversationType":1,"userID":"4650957151","groupID":"","showName":"longyu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.212 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.212 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4654851468","conversationType":1,"userID":"4654851468","groupID":"","showName":"man","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.217 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.218 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4655129542","conversationType":1,"userID":"4655129542","groupID":"","showName":"leon","faceURL":"https://web.rentsoft.cn/api_enterprise/object/4655129542/storage/emulated/0/Android/data/io.openim.android.demo/cache/1699262576820.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:22.224 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.224 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4655516792","conversationType":1,"userID":"4655516792","groupID":"","showName":"įŧéģ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.230 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.230 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4662755661","conversationType":1,"userID":"4662755661","groupID":"","showName":"Syq-850814","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.237 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.237 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4663715535","conversationType":1,"userID":"4663715535","groupID":"","showName":"zzz","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.243 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.244 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4667739897","conversationType":1,"userID":"4667739897","groupID":"","showName":"éšéš","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.248 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.248 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4668099372","conversationType":1,"userID":"4668099372","groupID":"","showName":"jarwin","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.253 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.254 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4671482518","conversationType":1,"userID":"4671482518","groupID":"","showName":"dfd","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.259 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.259 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4672885387","conversationType":1,"userID":"4672885387","groupID":"","showName":"Tyyyy","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.263 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.264 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4674991198","conversationType":1,"userID":"4674991198","groupID":"","showName":"561367","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.268 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.268 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4678037588","conversationType":1,"userID":"4678037588","groupID":"","showName":"éŋå¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.274 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.274 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4681582191","conversationType":1,"userID":"4681582191","groupID":"","showName":"zjnbfjh","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.278 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.278 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4685588650","conversationType":1,"userID":"4685588650","groupID":"","showName":"Nic","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.283 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.283 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4687007131","conversationType":1,"userID":"4687007131","groupID":"","showName":"éå¤Ēéŋ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.287 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.287 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4689169233","conversationType":1,"userID":"4689169233","groupID":"","showName":"jakey","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.294 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.294 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4689278818","conversationType":1,"userID":"4689278818","groupID":"","showName":"ITįˇ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.303 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.303 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4689925923","conversationType":1,"userID":"4689925923","groupID":"","showName":"nim","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.309 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.310 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4698451133","conversationType":1,"userID":"4698451133","groupID":"","showName":"į į ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:22.315 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.315 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4699751551","conversationType":1,"userID":"4699751551","groupID":"","showName":"RayChen","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.320 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.320 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4700799522","conversationType":1,"userID":"4700799522","groupID":"","showName":"zhnagdaiozong","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.325 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.325 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4701844957","conversationType":1,"userID":"4701844957","groupID":"","showName":"æĩč¯ä¸ä¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.330 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.330 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4701865718","conversationType":1,"userID":"4701865718","groupID":"","showName":"HzTTT","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:22.334 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.334 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4702935618","conversationType":1,"userID":"4702935618","groupID":"","showName":"Ssiswent","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.339 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.340 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4704979905","conversationType":1,"userID":"4704979905","groupID":"","showName":"įå äŧ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.353 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.353 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4705713217","conversationType":1,"userID":"4705713217","groupID":"","showName":"itly","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.360 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.360 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4710682050","conversationType":1,"userID":"4710682050","groupID":"","showName":"įĢčąå¸ĻéĒįĩ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.365 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.365 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4711741755","conversationType":1,"userID":"4711741755","groupID":"","showName":"maoxiang","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.373 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.373 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4714470295","conversationType":1,"userID":"4714470295","groupID":"","showName":"Davey","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.380 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.380 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4715090983","conversationType":1,"userID":"4715090983","groupID":"","showName":"sss","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.386 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.386 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4716126862","conversationType":1,"userID":"4716126862","groupID":"","showName":"T_T","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.391 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.392 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4717198450","conversationType":1,"userID":"4717198450","groupID":"","showName":"thtns","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.396 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.396 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4718128155","conversationType":1,"userID":"4718128155","groupID":"","showName":"hhuang","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.400 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.401 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4718771983","conversationType":1,"userID":"4718771983","groupID":"","showName":"MellyWang","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.406 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.406 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4721455080","conversationType":1,"userID":"4721455080","groupID":"","showName":"å å ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:22.410 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.410 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4732324211","conversationType":1,"userID":"4732324211","groupID":"","showName":"chwa","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.415 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.417 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4732620707","conversationType":1,"userID":"4732620707","groupID":"","showName":"iunknown2k","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.427 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.427 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4733304576","conversationType":1,"userID":"4733304576","groupID":"","showName":"xwvon","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.432 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.432 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4738033186","conversationType":1,"userID":"4738033186","groupID":"","showName":"å°č¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:22.439 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.439 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4741130938","conversationType":1,"userID":"4741130938","groupID":"","showName":"æ¨čĨį","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.444 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.444 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4742854958","conversationType":1,"userID":"4742854958","groupID":"","showName":"xiaowunai","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:22.449 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.449 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4748156889","conversationType":1,"userID":"4748156889","groupID":"","showName":"åå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:22.453 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.453 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4749302175","conversationType":1,"userID":"4749302175","groupID":"","showName":"asdafv2","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.458 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.458 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4752930364","conversationType":1,"userID":"4752930364","groupID":"","showName":"st","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.462 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.462 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4754517682","conversationType":1,"userID":"4754517682","groupID":"","showName":"OYB","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.467 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.469 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4754852664","conversationType":1,"userID":"4754852664","groupID":"","showName":"mzl","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:22.476 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.476 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4755574168","conversationType":1,"userID":"4755574168","groupID":"","showName":"klayhao","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.482 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.482 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4757807995","conversationType":1,"userID":"4757807995","groupID":"","showName":"alex","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.489 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.489 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4764613832","conversationType":1,"userID":"4764613832","groupID":"","showName":"poemsea","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.495 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.495 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4767981688","conversationType":1,"userID":"4767981688","groupID":"","showName":"ake","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.499 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.499 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4774906057","conversationType":1,"userID":"4774906057","groupID":"","showName":"am123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.506 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.506 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4780839267","conversationType":1,"userID":"4780839267","groupID":"","showName":"112312kle","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.511 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.511 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4785165125","conversationType":1,"userID":"4785165125","groupID":"","showName":"ååŦ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:22.516 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.516 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4785606051","conversationType":1,"userID":"4785606051","groupID":"","showName":"glm","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.521 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.521 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4786954344","conversationType":1,"userID":"4786954344","groupID":"","showName":"junko","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.526 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.526 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4791442681","conversationType":1,"userID":"4791442681","groupID":"","showName":"åå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.531 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.531 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4794115560","conversationType":1,"userID":"4794115560","groupID":"","showName":"zhazha","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.537 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.538 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4802965282","conversationType":1,"userID":"4802965282","groupID":"","showName":"Kainy","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.546 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.547 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4805646202","conversationType":1,"userID":"4805646202","groupID":"","showName":"äēį","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.553 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.553 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4819622986","conversationType":1,"userID":"4819622986","groupID":"","showName":"liu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.560 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.561 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4821224168","conversationType":1,"userID":"4821224168","groupID":"","showName":"William.Lai","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.565 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.566 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4823617060","conversationType":1,"userID":"4823617060","groupID":"","showName":"heart devil","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:22.570 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.571 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4824619122","conversationType":1,"userID":"4824619122","groupID":"","showName":"åģēåēˇ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.576 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.577 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4829651300","conversationType":1,"userID":"4829651300","groupID":"","showName":"qmarliu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.583 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.583 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4832615071","conversationType":1,"userID":"4832615071","groupID":"","showName":"suyan","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:22.588 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.588 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4833342766","conversationType":1,"userID":"4833342766","groupID":"","showName":"ooooks","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.593 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.593 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4834232511","conversationType":1,"userID":"4834232511","groupID":"","showName":"zc2","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.599 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.599 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4834281814","conversationType":1,"userID":"4834281814","groupID":"","showName":"Sammeow","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.606 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.606 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4834690774","conversationType":1,"userID":"4834690774","groupID":"","showName":"įįĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.615 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.615 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4835033409","conversationType":1,"userID":"4835033409","groupID":"","showName":"dfer","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.623 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.623 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4835400415","conversationType":1,"userID":"4835400415","groupID":"","showName":"æŦå¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.629 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.629 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4840588859","conversationType":1,"userID":"4840588859","groupID":"","showName":"ccanna","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:22.635 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.636 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4846054480","conversationType":1,"userID":"4846054480","groupID":"","showName":"test1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.641 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.641 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4849669261","conversationType":1,"userID":"4849669261","groupID":"","showName":"fckneedu","faceURL":"ic_avatar_05","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:22.647 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.648 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4849985881","conversationType":1,"userID":"4849985881","groupID":"","showName":"åæå°","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.652 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.652 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4850514972","conversationType":1,"userID":"4850514972","groupID":"","showName":"æģæģæģ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.656 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.657 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4857349434","conversationType":1,"userID":"4857349434","groupID":"","showName":"åžéŽ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.661 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.662 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4858487103","conversationType":1,"userID":"4858487103","groupID":"","showName":"PuGuolin","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.666 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.666 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4867820065","conversationType":1,"userID":"4867820065","groupID":"","showName":"jie","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.685 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.687 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4868312193","conversationType":1,"userID":"4868312193","groupID":"","showName":"syclsc","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.699 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.700 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4870999670","conversationType":1,"userID":"4870999670","groupID":"","showName":"kevin97","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.709 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.710 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4871183993","conversationType":1,"userID":"4871183993","groupID":"","showName":"renfen1433","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.718 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.719 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4872085821","conversationType":1,"userID":"4872085821","groupID":"","showName":"aaaa","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.726 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.726 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4873691241","conversationType":1,"userID":"4873691241","groupID":"","showName":"244433","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.732 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.733 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4875538382","conversationType":1,"userID":"4875538382","groupID":"","showName":"huangpj0210","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.737 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.737 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4876217110","conversationType":1,"userID":"4876217110","groupID":"","showName":"įŦ莰æŦ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.743 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.743 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4892758656","conversationType":1,"userID":"4892758656","groupID":"","showName":"5566","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.748 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.749 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4893424641","conversationType":1,"userID":"4893424641","groupID":"","showName":"įįåå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:22.753 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.753 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4893727151","conversationType":1,"userID":"4893727151","groupID":"","showName":"Ian","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.759 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.759 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4896388822","conversationType":1,"userID":"4896388822","groupID":"","showName":"æéŗ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.765 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.765 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4900753426","conversationType":1,"userID":"4900753426","groupID":"","showName":"snowywar","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.769 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.770 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4901778325","conversationType":1,"userID":"4901778325","groupID":"","showName":"wJiaaa","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.778 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.779 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4902397738","conversationType":1,"userID":"4902397738","groupID":"","showName":"Monday","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.785 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.785 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4908904387","conversationType":1,"userID":"4908904387","groupID":"","showName":"AndroidW","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.792 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.792 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4911332544","conversationType":1,"userID":"4911332544","groupID":"","showName":"jj","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.797 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.797 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4911414951","conversationType":1,"userID":"4911414951","groupID":"","showName":"OpenimAnd-Jane","faceURL":"https://web.rentsoft.cn/api_enterprise/object/4911414951/image_2024-05-06-20-59.111.png","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.798 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:316] ping and getMaxSeq start {"operationID": "1719197846400967072", "goroutine ID:": 58}
+2024-06-24 10:57:22.802 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.802 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4911851183","conversationType":1,"userID":"4911851183","groupID":"","showName":"lionjoy","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.807 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.807 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4912844543","conversationType":1,"userID":"4912844543","groupID":"","showName":"admin","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.811 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.812 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4915484479","conversationType":1,"userID":"4915484479","groupID":"","showName":"123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.816 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.816 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4918276559","conversationType":1,"userID":"4918276559","groupID":"","showName":"OpenIM Service","faceURL":"https://web.rentsoft.cn/api_enterprise/object/4918276559/storage/emulated/0/Android/data/io.openim.android.demo/cache/1701055992946/1701055983961.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:22.820 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.821 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4918328683","conversationType":1,"userID":"4918328683","groupID":"","showName":"éĢį̝大æ°ä¸æĄŖæŦĄ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:22.827 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.827 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4923873012","conversationType":1,"userID":"4923873012","groupID":"","showName":"system1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:22.831 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.832 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4926446021","conversationType":1,"userID":"4926446021","groupID":"","showName":"liu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:22.836 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.836 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4930915768","conversationType":1,"userID":"4930915768","groupID":"","showName":"æļĩ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:22.844 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.845 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4934894155","conversationType":1,"userID":"4934894155","groupID":"","showName":"eifying","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:22.851 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.851 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4937209096","conversationType":1,"userID":"4937209096","groupID":"","showName":"xxx","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:22.858 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.859 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4938106565","conversationType":1,"userID":"4938106565","groupID":"","showName":"iamtsm","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.862 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.862 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4939956693","conversationType":1,"userID":"4939956693","groupID":"","showName":"skysheep","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.866 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.867 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4940175675","conversationType":1,"userID":"4940175675","groupID":"","showName":"äŊåå2","faceURL":"https://web.rentsoft.cn/api_enterprise/object/4940175675/äŧä¸åžŽäŋĄæĒåž_17128865029087.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.872 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.872 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4940249071","conversationType":1,"userID":"4940249071","groupID":"","showName":"éĒčąéŖ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.879 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.879 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4943773015","conversationType":1,"userID":"4943773015","groupID":"","showName":"åå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.884 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.884 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4949622917","conversationType":1,"userID":"4949622917","groupID":"","showName":"test4/177","faceURL":"https://web.rentsoft.cn/api_enterprise/object/openIM123456/BOT.png","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.889 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.890 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4950713210","conversationType":1,"userID":"4950713210","groupID":"","showName":"helpmsg","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.897 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.898 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4951801389","conversationType":1,"userID":"4951801389","groupID":"","showName":"tsunamier","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.902 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.903 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4952005760","conversationType":1,"userID":"4952005760","groupID":"","showName":"åå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.909 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.909 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4958357173","conversationType":1,"userID":"4958357173","groupID":"","showName":"éĢåŽ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.916 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.917 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4958846328","conversationType":1,"userID":"4958846328","groupID":"","showName":"wangzhian","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.922 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.923 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4959913802","conversationType":1,"userID":"4959913802","groupID":"","showName":"å
å","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.928 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.928 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4961711537","conversationType":1,"userID":"4961711537","groupID":"","showName":"meimei","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.932 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.932 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4963393229","conversationType":1,"userID":"4963393229","groupID":"","showName":"bdn","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:22.937 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.937 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4975019413","conversationType":1,"userID":"4975019413","groupID":"","showName":"ginkuing","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.941 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.941 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4975337998","conversationType":1,"userID":"4975337998","groupID":"","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:22.946 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.946 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4977198622","conversationType":1,"userID":"4977198622","groupID":"","showName":"ez001","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.950 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.950 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4979480519","conversationType":1,"userID":"4979480519","groupID":"","showName":"éčįå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.954 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.954 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4979639389","conversationType":1,"userID":"4979639389","groupID":"","showName":"1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:22.960 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.960 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4981130292","conversationType":1,"userID":"4981130292","groupID":"","showName":"mo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.964 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.964 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4981191121","conversationType":1,"userID":"4981191121","groupID":"","showName":"sasaaa","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.969 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.969 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4981368838","conversationType":1,"userID":"4981368838","groupID":"","showName":"čąæ įŧē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.974 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.974 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4985196437","conversationType":1,"userID":"4985196437","groupID":"","showName":"čåžˇč¨č§éŖäŊŋčĩ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.980 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.980 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4988969273","conversationType":1,"userID":"4988969273","groupID":"","showName":"厍é","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.986 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.986 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4990193480","conversationType":1,"userID":"4990193480","groupID":"","showName":"malong","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.991 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.991 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4995366980","conversationType":1,"userID":"4995366980","groupID":"","showName":"karl","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:22.998 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:22.998 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4995988309","conversationType":1,"userID":"4995988309","groupID":"","showName":"null","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:23.002 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.002 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4999156692","conversationType":1,"userID":"4999156692","groupID":"","showName":"Colin","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.006 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.006 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_4999749136","conversationType":1,"userID":"4999749136","groupID":"","showName":"Bill","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:23.010 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.010 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5001599614","conversationType":1,"userID":"5001599614","groupID":"","showName":"åĸ¨å","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.014 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.015 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5002491660","conversationType":1,"userID":"5002491660","groupID":"","showName":"å°čŊĻ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.019 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.019 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5003938059","conversationType":1,"userID":"5003938059","groupID":"","showName":"åŧ å","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.024 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.024 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5007601899","conversationType":1,"userID":"5007601899","groupID":"","showName":"cc","faceURL":"https://web.rentsoft.cn/api_enterprise/object/5007601899/image_cropper_1713876533739.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.031 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.031 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5009769752","conversationType":1,"userID":"5009769752","groupID":"","showName":"äŋ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:23.035 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.035 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5011307721","conversationType":1,"userID":"5011307721","groupID":"","showName":"star","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:23.040 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.040 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5016947087","conversationType":1,"userID":"5016947087","groupID":"","showName":"metarial","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.045 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.046 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5017045152","conversationType":1,"userID":"5017045152","groupID":"","showName":"Wu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.054 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.055 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5024780259","conversationType":1,"userID":"5024780259","groupID":"","showName":"guo-y","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:23.063 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.063 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5027132489","conversationType":1,"userID":"5027132489","groupID":"","showName":"cs","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.069 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.070 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5030358081","conversationType":1,"userID":"5030358081","groupID":"","showName":"ééĢ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.075 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.075 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5033164124","conversationType":1,"userID":"5033164124","groupID":"","showName":"1111","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.079 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.079 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5036254684","conversationType":1,"userID":"5036254684","groupID":"","showName":"XXXX","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.083 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.084 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5039689203","conversationType":1,"userID":"5039689203","groupID":"","showName":"åį¯į§æ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.089 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.089 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5040986608","conversationType":1,"userID":"5040986608","groupID":"","showName":"test me and time","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:23.094 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.094 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5044983328","conversationType":1,"userID":"5044983328","groupID":"","showName":"å°éąŧ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:23.099 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.099 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5045959757","conversationType":1,"userID":"5045959757","groupID":"","showName":"Yyang","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.104 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.104 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5046045029","conversationType":1,"userID":"5046045029","groupID":"","showName":"åéŖ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.109 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.109 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5052720919","conversationType":1,"userID":"5052720919","groupID":"","showName":"X","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.114 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.114 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5054553896","conversationType":1,"userID":"5054553896","groupID":"","showName":"ljscs","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.119 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.119 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5057316211","conversationType":1,"userID":"5057316211","groupID":"","showName":"ccc","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.126 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.126 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5057868990","conversationType":1,"userID":"5057868990","groupID":"","showName":"ååå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:23.131 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.132 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5058490688","conversationType":1,"userID":"5058490688","groupID":"","showName":"lx","faceURL":"https://web.rentsoft.cn/api_enterprise/object/5058490688/storage/emulated/0/Android/data/io.openim.android.demo/cache/1704449175671/1704449168051.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.138 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.138 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5059658106","conversationType":1,"userID":"5059658106","groupID":"","showName":"Hz","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.143 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.144 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5063708805","conversationType":1,"userID":"5063708805","groupID":"","showName":"hhh","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.149 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.149 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5064450025","conversationType":1,"userID":"5064450025","groupID":"","showName":"sdfads","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:23.154 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.154 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5067345572","conversationType":1,"userID":"5067345572","groupID":"","showName":"Gavin","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.159 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.159 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5067438435","conversationType":1,"userID":"5067438435","groupID":"","showName":"AdminX","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:23.163 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.163 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5068449155","conversationType":1,"userID":"5068449155","groupID":"","showName":"åģåģåģ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.169 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.169 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5072662873","conversationType":1,"userID":"5072662873","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.173 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.174 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5073192046","conversationType":1,"userID":"5073192046","groupID":"","showName":"testnnn","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.178 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.178 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5074137138","conversationType":1,"userID":"5074137138","groupID":"","showName":"įå
æŖŽ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.183 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.183 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5075042452","conversationType":1,"userID":"5075042452","groupID":"","showName":"į¨ģčäēē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.188 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.189 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5086890922","conversationType":1,"userID":"5086890922","groupID":"","showName":"GdlSky","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.196 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.196 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5086994351","conversationType":1,"userID":"5086994351","groupID":"","showName":"æ˛ŗä¸éąŧ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.207 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.208 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5087027370","conversationType":1,"userID":"5087027370","groupID":"","showName":"wang","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.220 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.220 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5092290187","conversationType":1,"userID":"5092290187","groupID":"","showName":"Finley","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:23.229 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.229 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5093785048","conversationType":1,"userID":"5093785048","groupID":"","showName":"li","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.235 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.236 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5098290115","conversationType":1,"userID":"5098290115","groupID":"","showName":"ééĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.241 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.241 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5098473308","conversationType":1,"userID":"5098473308","groupID":"","showName":"æ˛Ąæ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.246 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.246 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5104021530","conversationType":1,"userID":"5104021530","groupID":"","showName":"zhou178","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.253 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.254 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5107494273","conversationType":1,"userID":"5107494273","groupID":"","showName":"tg","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.259 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.260 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5108778950","conversationType":1,"userID":"5108778950","groupID":"","showName":"zhangjinbao","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.264 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.265 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5109208108","conversationType":1,"userID":"5109208108","groupID":"","showName":"čĩéįäēē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.269 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.269 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5109328754","conversationType":1,"userID":"5109328754","groupID":"","showName":"yanwei","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.274 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.274 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5113616736","conversationType":1,"userID":"5113616736","groupID":"","showName":"å¤é
Š","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.280 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.280 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5114178152","conversationType":1,"userID":"5114178152","groupID":"","showName":"whoami","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.288 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.288 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5115816718","conversationType":1,"userID":"5115816718","groupID":"","showName":"KKL","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.295 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.296 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5120891134","conversationType":1,"userID":"5120891134","groupID":"","showName":"æ§čŋˇč§æĩ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.300 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.300 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5124623407","conversationType":1,"userID":"5124623407","groupID":"","showName":"jizhenwei","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.306 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.306 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5129646012","conversationType":1,"userID":"5129646012","groupID":"","showName":"Inzaghi","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.312 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.312 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5131260895","conversationType":1,"userID":"5131260895","groupID":"","showName":"zkt123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.320 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.321 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5131548684","conversationType":1,"userID":"5131548684","groupID":"","showName":"čé¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.332 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.333 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5132970330","conversationType":1,"userID":"5132970330","groupID":"","showName":"xing","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.343 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.344 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5138412244","conversationType":1,"userID":"5138412244","groupID":"","showName":"cc","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.350 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.350 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5139953083","conversationType":1,"userID":"5139953083","groupID":"","showName":"captain","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.356 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.356 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5143564922","conversationType":1,"userID":"5143564922","groupID":"","showName":"blt","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.362 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.362 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5148465784","conversationType":1,"userID":"5148465784","groupID":"","showName":"æ§æŗ","faceURL":"https://web.rentsoft.cn/api_enterprise/object/5148465784/1713826105724_mmexport1713811195322.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.367 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.368 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5151877467","conversationType":1,"userID":"5151877467","groupID":"","showName":"mk123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.375 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.375 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5152364658","conversationType":1,"userID":"5152364658","groupID":"","showName":"čĨå°čĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:23.381 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.381 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5152367578","conversationType":1,"userID":"5152367578","groupID":"","showName":"ååŊå¯įš","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.386 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.386 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5152700528","conversationType":1,"userID":"5152700528","groupID":"","showName":"james","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.392 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.392 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5152772821","conversationType":1,"userID":"5152772821","groupID":"","showName":"Gggg","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.396 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.396 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5159407655","conversationType":1,"userID":"5159407655","groupID":"","showName":"benjamin","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.401 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.401 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5159666152","conversationType":1,"userID":"5159666152","groupID":"","showName":"æ æ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.406 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.407 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5160877753","conversationType":1,"userID":"5160877753","groupID":"","showName":"lord","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.411 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.411 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5164441961","conversationType":1,"userID":"5164441961","groupID":"","showName":"wolfchild","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.415 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.415 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5165900123","conversationType":1,"userID":"5165900123","groupID":"","showName":"į","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:23.420 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.420 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5166465530","conversationType":1,"userID":"5166465530","groupID":"","showName":"dqy","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.424 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.424 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5166918125","conversationType":1,"userID":"5166918125","groupID":"","showName":"đđđđđđđŊđŊđđđ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:23.428 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.429 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5175156228","conversationType":1,"userID":"5175156228","groupID":"","showName":"åčŋ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:23.435 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.435 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5175926475","conversationType":1,"userID":"5175926475","groupID":"","showName":"čĄįģæ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.442 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.442 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5178916117","conversationType":1,"userID":"5178916117","groupID":"","showName":"5897","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:23.450 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.452 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5181423157","conversationType":1,"userID":"5181423157","groupID":"","showName":"haur","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.463 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.464 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5185600527","conversationType":1,"userID":"5185600527","groupID":"","showName":"ding","faceURL":"https://web.rentsoft.cn/api_enterprise/object/5185600527/image_cropper_1708305929906.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.472 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.473 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5189528969","conversationType":1,"userID":"5189528969","groupID":"","showName":"mingmi","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.479 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.479 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5190651797","conversationType":1,"userID":"5190651797","groupID":"","showName":"ææįį夊","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:23.486 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.486 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5191177805","conversationType":1,"userID":"5191177805","groupID":"","showName":"ååå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.491 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.491 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5192859184","conversationType":1,"userID":"5192859184","groupID":"","showName":"yaya","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.496 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.496 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5200142893","conversationType":1,"userID":"5200142893","groupID":"","showName":"ttt","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.501 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.501 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5203162281","conversationType":1,"userID":"5203162281","groupID":"","showName":"jacek","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.507 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.507 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5206821177","conversationType":1,"userID":"5206821177","groupID":"","showName":"æ˛ååŋ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:23.512 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.512 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5206946655","conversationType":1,"userID":"5206946655","groupID":"","showName":"sascsacsacsac","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.516 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.516 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5207254443","conversationType":1,"userID":"5207254443","groupID":"","showName":"čĩĩåæĩŠ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.525 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.526 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5211251741","conversationType":1,"userID":"5211251741","groupID":"","showName":"æąčŽ¯ææ´","faceURL":"https://web.rentsoft.cn/api_enterprise/object/5211251741/msg_picture_43bbebbf93515fefc96d9d9c37215dcd.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:23.539 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.540 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5213333820","conversationType":1,"userID":"5213333820","groupID":"","showName":"jun","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:23.548 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.549 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5217579807","conversationType":1,"userID":"5217579807","groupID":"","showName":"mustafa","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.556 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.557 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5221720362","conversationType":1,"userID":"5221720362","groupID":"","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.562 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.563 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5222516154","conversationType":1,"userID":"5222516154","groupID":"","showName":"æ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.567 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.568 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5226459880","conversationType":1,"userID":"5226459880","groupID":"","showName":"sineom","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:23.573 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.574 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5226627818","conversationType":1,"userID":"5226627818","groupID":"","showName":"7131","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.578 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.579 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5233426123","conversationType":1,"userID":"5233426123","groupID":"","showName":"admin1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.583 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.583 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5235308523","conversationType":1,"userID":"5235308523","groupID":"","showName":"æå¸Ļįåéįč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.588 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.588 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5236359243","conversationType":1,"userID":"5236359243","groupID":"","showName":"ææ¯åŧ ä¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.592 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.593 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5236545003","conversationType":1,"userID":"5236545003","groupID":"","showName":"xiaoguo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.597 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.597 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5237025674","conversationType":1,"userID":"5237025674","groupID":"","showName":"Cisco","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.602 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.602 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5240408296","conversationType":1,"userID":"5240408296","groupID":"","showName":"fff","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.608 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.608 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5240575339","conversationType":1,"userID":"5240575339","groupID":"","showName":"hank","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.615 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.615 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5241529913","conversationType":1,"userID":"5241529913","groupID":"","showName":"éēĻå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.622 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.622 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5244482702","conversationType":1,"userID":"5244482702","groupID":"","showName":"keep","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.627 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.627 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5248071176","conversationType":1,"userID":"5248071176","groupID":"","showName":"ugvcdt","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.632 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.632 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5248150745","conversationType":1,"userID":"5248150745","groupID":"","showName":"ackerman","faceURL":"https://web.rentsoft.cn/api_enterprise/object/5248150745/storage/emulated/0/Android/data/io.openim.android.demo/cache/1713631965868/1713631965378.png","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.636 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.636 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5248385191","conversationType":1,"userID":"5248385191","groupID":"","showName":"Ramu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.641 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.641 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5249725335","conversationType":1,"userID":"5249725335","groupID":"","showName":"ben","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.646 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.647 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5256311014","conversationType":1,"userID":"5256311014","groupID":"","showName":"TAMIR","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.651 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.651 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5259696013","conversationType":1,"userID":"5259696013","groupID":"","showName":"Ray","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.656 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.656 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5260081632","conversationType":1,"userID":"5260081632","groupID":"","showName":"厴éģéĒ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:23.661 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.661 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5262644632","conversationType":1,"userID":"5262644632","groupID":"","showName":"æ æŗæžį¤ēæĩį§°","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.665 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.665 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5263712829","conversationType":1,"userID":"5263712829","groupID":"","showName":"hw","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.673 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.673 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5264992214","conversationType":1,"userID":"5264992214","groupID":"","showName":"业å°ŧå°","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.680 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.680 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5268812393","conversationType":1,"userID":"5268812393","groupID":"","showName":"super","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.686 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.686 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5280943776","conversationType":1,"userID":"5280943776","groupID":"","showName":"coor","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.692 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.692 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5282627881","conversationType":1,"userID":"5282627881","groupID":"","showName":"å","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:23.697 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.697 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5285022981","conversationType":1,"userID":"5285022981","groupID":"","showName":"vitas","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.700 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.701 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5286535793","conversationType":1,"userID":"5286535793","groupID":"","showName":"testMann","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.706 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.707 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5288626264","conversationType":1,"userID":"5288626264","groupID":"","showName":"大æŋ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.712 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.713 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5290454482","conversationType":1,"userID":"5290454482","groupID":"","showName":"Black","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.718 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:437] recv msg {"operationID": "1719197846400967072", "errCode": 0, "errMsg": "", "reqIdentifier": 1001}
+2024-06-24 10:57:23.720 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:131] recv max seqs from long conn mgr, start sync msgs {"operationID": "1719197846400967072", "cmd": "maxSeq", "value": {"ConversationMaxSeqOnSvr":{"n_1695766238_7122229636":1,"sg_105081877":2,"sg_1177987017":2,"sg_1254300734":1,"sg_161019322":3,"sg_2300748497":2,"sg_2836218947":2,"sg_3187706596":3,"sg_3896488295":1,"sg_3926645279":18,"sg_3927081813":1,"sg_84614448":2,"si_1695766238_5967938442":1,"si_1695766238_7122229636":1}}}
+2024-06-24 10:57:23.720 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:306] noting conversation to sync {"operationID": "1719197817604066041", "syncMsgNum": 10}
+2024-06-24 10:57:23.720 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.721 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5290473735","conversationType":1,"userID":"5290473735","groupID":"","showName":"å
æĄ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:23.726 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.726 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5291311764","conversationType":1,"userID":"5291311764","groupID":"","showName":"aa","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:23.731 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.731 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5291456050","conversationType":1,"userID":"5291456050","groupID":"","showName":"mia","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:23.736 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.736 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5294929577","conversationType":1,"userID":"5294929577","groupID":"","showName":"aaa","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.742 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.743 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5295369982","conversationType":1,"userID":"5295369982","groupID":"","showName":"Mageia","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.749 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.750 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5296052389","conversationType":1,"userID":"5296052389","groupID":"","showName":"11","faceURL":"ic_avatar_01","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.756 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.757 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5296469685","conversationType":1,"userID":"5296469685","groupID":"","showName":"rongsw","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.762 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.763 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5296644653","conversationType":1,"userID":"5296644653","groupID":"","showName":"å","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.768 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.768 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5297662536","conversationType":1,"userID":"5297662536","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.774 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.774 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5297812664","conversationType":1,"userID":"5297812664","groupID":"","showName":"åæé¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.781 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.787 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5304967461","conversationType":1,"userID":"5304967461","groupID":"","showName":"å°įēĸ","faceURL":"https://web.rentsoft.cn/api_enterprise/object/5304967461/image_cropper_1711332115708.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.794 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.794 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5306710076","conversationType":1,"userID":"5306710076","groupID":"","showName":"RmondJone","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.800 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.801 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5307357041","conversationType":1,"userID":"5307357041","groupID":"","showName":"lu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.807 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.807 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5320305071","conversationType":1,"userID":"5320305071","groupID":"","showName":"æ´Ēå°å¸
","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.813 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.813 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5321467496","conversationType":1,"userID":"5321467496","groupID":"","showName":"216565","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.819 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.819 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5321587991","conversationType":1,"userID":"5321587991","groupID":"","showName":"122","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.824 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.824 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5329005553","conversationType":1,"userID":"5329005553","groupID":"","showName":"å¤§čĄ¨åĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.829 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.830 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5329462571","conversationType":1,"userID":"5329462571","groupID":"","showName":"åå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.835 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.835 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5329543914","conversationType":1,"userID":"5329543914","groupID":"","showName":"clewm","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.840 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.840 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5331279867","conversationType":1,"userID":"5331279867","groupID":"","showName":"smile","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.846 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.846 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5334542905","conversationType":1,"userID":"5334542905","groupID":"","showName":"éŖ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:23.863 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.863 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5334756257","conversationType":1,"userID":"5334756257","groupID":"","showName":"ocean","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.869 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.870 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5336317141","conversationType":1,"userID":"5336317141","groupID":"","showName":"xm","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.876 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.876 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5343195507","conversationType":1,"userID":"5343195507","groupID":"","showName":"叿","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.881 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.881 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5346815324","conversationType":1,"userID":"5346815324","groupID":"","showName":"cash","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.887 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.887 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5348575962","conversationType":1,"userID":"5348575962","groupID":"","showName":"stone","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:23.891 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.892 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5349221317","conversationType":1,"userID":"5349221317","groupID":"","showName":"ellan_ios","faceURL":"https://web.rentsoft.cn/api_enterprise/object/5349221317/image_2023-08-29-24-39.833.png","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:23.898 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.898 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5349634613","conversationType":1,"userID":"5349634613","groupID":"","showName":"sam","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.902 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.903 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5350931457","conversationType":1,"userID":"5350931457","groupID":"","showName":"åŧ ä¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.908 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.909 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5351132193","conversationType":1,"userID":"5351132193","groupID":"","showName":"åįˇ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.913 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.913 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5352682579","conversationType":1,"userID":"5352682579","groupID":"","showName":"åĄæŽ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.919 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.919 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5356113166","conversationType":1,"userID":"5356113166","groupID":"","showName":"å123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:23.926 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.926 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5358143052","conversationType":1,"userID":"5358143052","groupID":"","showName":"Hapety","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.933 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.933 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5358714951","conversationType":1,"userID":"5358714951","groupID":"","showName":"gg","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.939 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.940 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5358843278","conversationType":1,"userID":"5358843278","groupID":"","showName":"åŧ ä¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:23.945 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.945 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5358983896","conversationType":1,"userID":"5358983896","groupID":"","showName":"įŠēæ°åŊä¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.950 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.951 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5360417820","conversationType":1,"userID":"5360417820","groupID":"","showName":"a","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.957 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.957 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5363582234","conversationType":1,"userID":"5363582234","groupID":"","showName":"wei","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:23.964 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.965 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5363957705","conversationType":1,"userID":"5363957705","groupID":"","showName":"大Sam","faceURL":"https://web.rentsoft.cn/api_enterprise/object/5363957705/SamAvatar.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.970 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.970 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5365048884","conversationType":1,"userID":"5365048884","groupID":"","showName":"įįäšĻ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.974 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.975 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5368584236","conversationType":1,"userID":"5368584236","groupID":"","showName":"77","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.978 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.978 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5370620069","conversationType":1,"userID":"5370620069","groupID":"","showName":"jdysya","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.983 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.983 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5373490184","conversationType":1,"userID":"5373490184","groupID":"","showName":"yuxg","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:23.993 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:23.993 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5373710322","conversationType":1,"userID":"5373710322","groupID":"","showName":"OpenIM","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:23.999 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.000 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5375609152","conversationType":1,"userID":"5375609152","groupID":"","showName":"Ci","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.006 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.006 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5377724931","conversationType":1,"userID":"5377724931","groupID":"","showName":"cc","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.012 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.012 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5381374647","conversationType":1,"userID":"5381374647","groupID":"","showName":"å°éŖčąĄæĨåĻ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.018 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.018 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5382734642","conversationType":1,"userID":"5382734642","groupID":"","showName":"John","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:24.023 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.023 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5383441189","conversationType":1,"userID":"5383441189","groupID":"","showName":"åŽĸææĨå
Ĩ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.029 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.029 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5384318976","conversationType":1,"userID":"5384318976","groupID":"","showName":"flowerpp","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.034 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.034 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5390236703","conversationType":1,"userID":"5390236703","groupID":"","showName":"ikun","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:24.039 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.039 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5396639819","conversationType":1,"userID":"5396639819","groupID":"","showName":"čį","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.044 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.044 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5397087982","conversationType":1,"userID":"5397087982","groupID":"","showName":"ccc0992008","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.049 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.049 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5397363424","conversationType":1,"userID":"5397363424","groupID":"","showName":"bigmelon","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.059 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.060 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5398613531","conversationType":1,"userID":"5398613531","groupID":"","showName":"įž","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:24.073 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.074 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5401562218","conversationType":1,"userID":"5401562218","groupID":"","showName":"å°æ°","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.086 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.087 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5402322052","conversationType":1,"userID":"5402322052","groupID":"","showName":"openIMUser","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:24.094 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.095 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5404307971","conversationType":1,"userID":"5404307971","groupID":"","showName":"jiebao","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.100 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.101 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5405441233","conversationType":1,"userID":"5405441233","groupID":"","showName":"å¤§æ˛ŗéŠŦ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.107 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.107 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5406159540","conversationType":1,"userID":"5406159540","groupID":"","showName":"ghost","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.112 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.112 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5407091476","conversationType":1,"userID":"5407091476","groupID":"","showName":"ember","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.117 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.117 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5407782499","conversationType":1,"userID":"5407782499","groupID":"","showName":"archer","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.122 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.123 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5409594675","conversationType":1,"userID":"5409594675","groupID":"","showName":"Y","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.128 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.128 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5410098477","conversationType":1,"userID":"5410098477","groupID":"","showName":"hongzai","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.133 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.133 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5410355545","conversationType":1,"userID":"5410355545","groupID":"","showName":"diaodiao","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:24.140 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.140 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5410368232","conversationType":1,"userID":"5410368232","groupID":"","showName":"Allen","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.146 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.146 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5410772311","conversationType":1,"userID":"5410772311","groupID":"","showName":"ywx","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.152 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.152 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5414128931","conversationType":1,"userID":"5414128931","groupID":"","showName":"čĻä¸čĻ䏿Ĩä¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:24.158 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.159 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5416738193","conversationType":1,"userID":"5416738193","groupID":"","showName":"æåŖļ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.165 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.165 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5417124831","conversationType":1,"userID":"5417124831","groupID":"","showName":"eqweq","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.171 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.171 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5420104655","conversationType":1,"userID":"5420104655","groupID":"","showName":"zz","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.177 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.177 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5430821760","conversationType":1,"userID":"5430821760","groupID":"","showName":"ouyang","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.181 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.181 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5432843240","conversationType":1,"userID":"5432843240","groupID":"","showName":"water","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.186 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.186 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5442199418","conversationType":1,"userID":"5442199418","groupID":"","showName":"éå
į","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.190 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.190 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5446046008","conversationType":1,"userID":"5446046008","groupID":"","showName":"ææ¯æ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.195 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.195 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5446567702","conversationType":1,"userID":"5446567702","groupID":"","showName":"MAX","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.200 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.200 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5449593636","conversationType":1,"userID":"5449593636","groupID":"","showName":"Fred","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:24.204 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.204 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5450965115","conversationType":1,"userID":"5450965115","groupID":"","showName":"dvhchuot","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.209 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.209 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5452365658","conversationType":1,"userID":"5452365658","groupID":"","showName":"lotric","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.214 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.215 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5452450197","conversationType":1,"userID":"5452450197","groupID":"","showName":"1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.222 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.222 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5453108500","conversationType":1,"userID":"5453108500","groupID":"","showName":"åžåĄ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.229 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.229 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5455481997","conversationType":1,"userID":"5455481997","groupID":"","showName":"sam","faceURL":"/storage/emulated/0/Pictures/1694853489786.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:24.235 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.235 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5480212485","conversationType":1,"userID":"5480212485","groupID":"","showName":"äŊ åĨŊ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:24.240 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.240 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5480713946","conversationType":1,"userID":"5480713946","groupID":"","showName":"ceshi","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.245 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.245 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5480812632","conversationType":1,"userID":"5480812632","groupID":"","showName":"test7975","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:24.250 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.250 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5485148642","conversationType":1,"userID":"5485148642","groupID":"","showName":"æˇĄåŋ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.255 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.255 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5496039772","conversationType":1,"userID":"5496039772","groupID":"","showName":"ååå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.260 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.260 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5502486573","conversationType":1,"userID":"5502486573","groupID":"","showName":"NoPanic","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.266 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.267 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5503315300","conversationType":1,"userID":"5503315300","groupID":"","showName":"1Ckpwee","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.271 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.272 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5503837684","conversationType":1,"userID":"5503837684","groupID":"","showName":"123123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.277 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.278 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5512448749","conversationType":1,"userID":"5512448749","groupID":"","showName":"cll","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:24.283 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.283 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5512868112","conversationType":1,"userID":"5512868112","groupID":"","showName":"Aäģ夊","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:24.289 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.290 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5513765615","conversationType":1,"userID":"5513765615","groupID":"","showName":"zxl","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.296 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.297 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5514725837","conversationType":1,"userID":"5514725837","groupID":"","showName":"å°éŠŦ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:24.306 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.307 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5525192219","conversationType":1,"userID":"5525192219","groupID":"","showName":"fanxing666ya","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.315 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.315 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5525995594","conversationType":1,"userID":"5525995594","groupID":"","showName":"ååå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.321 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.322 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5526021912","conversationType":1,"userID":"5526021912","groupID":"","showName":"卿æ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:24.327 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.327 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5526651611","conversationType":1,"userID":"5526651611","groupID":"","showName":"įéį","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.333 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.333 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5535739780","conversationType":1,"userID":"5535739780","groupID":"","showName":"1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.338 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.338 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5540563810","conversationType":1,"userID":"5540563810","groupID":"","showName":"aaaaa","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.343 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.343 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5540757722","conversationType":1,"userID":"5540757722","groupID":"","showName":"daqiez","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:24.348 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.348 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5541069207","conversationType":1,"userID":"5541069207","groupID":"","showName":"å¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.353 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.353 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5542535779","conversationType":1,"userID":"5542535779","groupID":"","showName":"Fizzer","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.359 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.360 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5548591709","conversationType":1,"userID":"5548591709","groupID":"","showName":"Odyssey","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.366 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.366 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5549513683","conversationType":1,"userID":"5549513683","groupID":"","showName":"jason","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.373 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.374 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5552236107","conversationType":1,"userID":"5552236107","groupID":"","showName":"夊夊","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.381 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.381 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5553194662","conversationType":1,"userID":"5553194662","groupID":"","showName":"åŽåįŗįŗ","faceURL":"https://web.rentsoft.cn/api_enterprise/object/5553194662/storage/emulated/0/Android/data/io.openim.android.demo/cache/1710897301210.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.387 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.387 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5557876583","conversationType":1,"userID":"5557876583","groupID":"","showName":"æ¨å
","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:24.391 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.392 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5558311156","conversationType":1,"userID":"5558311156","groupID":"","showName":"YL","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.397 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.397 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5561959046","conversationType":1,"userID":"5561959046","groupID":"","showName":"AgoniMou","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.402 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.402 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5566365465","conversationType":1,"userID":"5566365465","groupID":"","showName":".","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:24.407 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.408 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5568853842","conversationType":1,"userID":"5568853842","groupID":"","showName":"long","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:24.413 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.413 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5570249193","conversationType":1,"userID":"5570249193","groupID":"","showName":"silence","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.420 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.420 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5570319326","conversationType":1,"userID":"5570319326","groupID":"","showName":"äŊ čŋä¸įäēē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.428 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.431 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5576420817","conversationType":1,"userID":"5576420817","groupID":"","showName":"YOO","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:24.446 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.446 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5577874223","conversationType":1,"userID":"5577874223","groupID":"","showName":"9988","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:24.456 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.456 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5578328451","conversationType":1,"userID":"5578328451","groupID":"","showName":"holoho","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.464 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.464 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5578731578","conversationType":1,"userID":"5578731578","groupID":"","showName":"įįå°å","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.471 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.471 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5581090381","conversationType":1,"userID":"5581090381","groupID":"","showName":"rey","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.476 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.476 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5581435034","conversationType":1,"userID":"5581435034","groupID":"","showName":"æčå§","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.482 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.482 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5584327976","conversationType":1,"userID":"5584327976","groupID":"","showName":"kimi","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.488 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.488 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5586125949","conversationType":1,"userID":"5586125949","groupID":"","showName":"momo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.493 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.493 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5586255658","conversationType":1,"userID":"5586255658","groupID":"","showName":"zzp","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.497 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.498 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5587098679","conversationType":1,"userID":"5587098679","groupID":"","showName":"fdsafd","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.502 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.503 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5587217057","conversationType":1,"userID":"5587217057","groupID":"","showName":"janifc","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:24.507 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.507 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5587808406","conversationType":1,"userID":"5587808406","groupID":"","showName":"zhaofeng","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.514 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.514 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5594047664","conversationType":1,"userID":"5594047664","groupID":"","showName":"éģä¸Ŋ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.521 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.521 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5596279712","conversationType":1,"userID":"5596279712","groupID":"","showName":"1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.528 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.529 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5605784685","conversationType":1,"userID":"5605784685","groupID":"","showName":"yh","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:24.537 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.538 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5606396140","conversationType":1,"userID":"5606396140","groupID":"","showName":"scc","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.551 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.552 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5610837207","conversationType":1,"userID":"5610837207","groupID":"","showName":"åĄå¸čžž","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.563 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.563 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5616569214","conversationType":1,"userID":"5616569214","groupID":"","showName":"æåŋéŖįŋ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:24.570 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.571 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5618114098","conversationType":1,"userID":"5618114098","groupID":"","showName":"jin","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.577 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.577 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5619318712","conversationType":1,"userID":"5619318712","groupID":"","showName":"pierre","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.583 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.583 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5619336399","conversationType":1,"userID":"5619336399","groupID":"","showName":"Evan","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.588 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.589 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5620768201","conversationType":1,"userID":"5620768201","groupID":"","showName":"DFđđ¤","faceURL":"https://web.rentsoft.cn/api_enterprise/object/5620768201/qq襨æ
.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.595 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.595 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5625548410","conversationType":1,"userID":"5625548410","groupID":"","showName":"winrd","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.600 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.600 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5626394972","conversationType":1,"userID":"5626394972","groupID":"","showName":"Dragon","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.610 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.610 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5629610459","conversationType":1,"userID":"5629610459","groupID":"","showName":"å°čĸåĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.617 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.618 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5630216908","conversationType":1,"userID":"5630216908","groupID":"","showName":"yiyi","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.625 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.625 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5632773822","conversationType":1,"userID":"5632773822","groupID":"","showName":"ä¸ä¸","faceURL":"https://web.rentsoft.cn/api_enterprise/object/5632773822/1713086177401jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.630 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.630 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5633059660","conversationType":1,"userID":"5633059660","groupID":"","showName":"Tytg","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.635 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.635 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5633188673","conversationType":1,"userID":"5633188673","groupID":"","showName":"čåĨį§į¤","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:24.641 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.641 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5633378166","conversationType":1,"userID":"5633378166","groupID":"","showName":"SilentLand","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.646 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.646 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5636993626","conversationType":1,"userID":"5636993626","groupID":"","showName":"yuanshao","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.651 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.651 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5640122986","conversationType":1,"userID":"5640122986","groupID":"","showName":"lhca521","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.656 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.657 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5643092782","conversationType":1,"userID":"5643092782","groupID":"","showName":"OYHTEST","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.662 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.662 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5644765212","conversationType":1,"userID":"5644765212","groupID":"","showName":"jenny maya","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.667 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.667 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5645682170","conversationType":1,"userID":"5645682170","groupID":"","showName":"gfddff","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:24.674 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.675 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5647374792","conversationType":1,"userID":"5647374792","groupID":"","showName":"ee","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.686 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.687 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5653943210","conversationType":1,"userID":"5653943210","groupID":"","showName":"Henry","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.702 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.703 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5654578948","conversationType":1,"userID":"5654578948","groupID":"","showName":"gortonlau","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.712 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.713 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5656745158","conversationType":1,"userID":"5656745158","groupID":"","showName":"bbbbbb","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.720 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.720 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5657688195","conversationType":1,"userID":"5657688195","groupID":"","showName":"æŦĄå§åޤ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:24.726 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.726 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5658001949","conversationType":1,"userID":"5658001949","groupID":"","showName":"chao","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.732 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.733 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5659165582","conversationType":1,"userID":"5659165582","groupID":"","showName":"éæåŽ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:24.739 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.739 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5659573503","conversationType":1,"userID":"5659573503","groupID":"","showName":"extra","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.745 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.745 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5661158812","conversationType":1,"userID":"5661158812","groupID":"","showName":"177","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.750 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.750 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5665554530","conversationType":1,"userID":"5665554530","groupID":"","showName":"locke","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.756 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.756 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5665605844","conversationType":1,"userID":"5665605844","groupID":"","showName":"lgm","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.763 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.763 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5665783096","conversationType":1,"userID":"5665783096","groupID":"","showName":"OyukaZOyunja","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.774 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.774 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5668726699","conversationType":1,"userID":"5668726699","groupID":"","showName":"4","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:24.780 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.780 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5668985363","conversationType":1,"userID":"5668985363","groupID":"","showName":"Smile","faceURL":"https://web.rentsoft.cn/api_enterprise/object/5668985363/image_cropper_1704713618993.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:24.784 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.784 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5669416921","conversationType":1,"userID":"5669416921","groupID":"","showName":"大éž","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.788 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.788 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5674745391","conversationType":1,"userID":"5674745391","groupID":"","showName":"dgf","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.793 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.793 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5677381479","conversationType":1,"userID":"5677381479","groupID":"","showName":"Skesa","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.798 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.798 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5693206451","conversationType":1,"userID":"5693206451","groupID":"","showName":"kk","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.803 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.803 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5695116048","conversationType":1,"userID":"5695116048","groupID":"","showName":"å°éģå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.808 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.808 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5695990734","conversationType":1,"userID":"5695990734","groupID":"","showName":"wfk","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.812 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.813 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5699652927","conversationType":1,"userID":"5699652927","groupID":"","showName":"naraku","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:24.818 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.818 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5708410287","conversationType":1,"userID":"5708410287","groupID":"","showName":"åĻåĻåĻ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.823 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.823 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5710168294","conversationType":1,"userID":"5710168294","groupID":"","showName":"joke","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.830 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.830 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5710649058","conversationType":1,"userID":"5710649058","groupID":"","showName":"Saber","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:24.837 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.837 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5715976407","conversationType":1,"userID":"5715976407","groupID":"","showName":"åå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:24.844 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.844 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5717044381","conversationType":1,"userID":"5717044381","groupID":"","showName":"nick","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.849 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.849 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5718405684","conversationType":1,"userID":"5718405684","groupID":"","showName":"ssdc","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.854 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.854 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5719987926","conversationType":1,"userID":"5719987926","groupID":"","showName":"åˇĻæææ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.859 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.859 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5726747048","conversationType":1,"userID":"5726747048","groupID":"","showName":"į
ææŦ˛č¨","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.863 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.863 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5728062211","conversationType":1,"userID":"5728062211","groupID":"","showName":"Akihi","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.867 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.867 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5728220862","conversationType":1,"userID":"5728220862","groupID":"","showName":"111","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.871 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.871 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5728456517","conversationType":1,"userID":"5728456517","groupID":"","showName":"WH","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.875 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.876 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5729235369","conversationType":1,"userID":"5729235369","groupID":"","showName":"æ¯æäēē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.880 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.880 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5730628535","conversationType":1,"userID":"5730628535","groupID":"","showName":"æĢåš´","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.886 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.886 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5734504508","conversationType":1,"userID":"5734504508","groupID":"","showName":"zmhbh","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.891 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.892 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5735206330","conversationType":1,"userID":"5735206330","groupID":"","showName":"Super","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.897 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.897 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5735757792","conversationType":1,"userID":"5735757792","groupID":"","showName":"lj","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:24.903 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.904 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5741092371","conversationType":1,"userID":"5741092371","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.910 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.910 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5741564889","conversationType":1,"userID":"5741564889","groupID":"","showName":"roninz","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.916 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.916 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5743097181","conversationType":1,"userID":"5743097181","groupID":"","showName":"ray","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.921 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.921 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5743288207","conversationType":1,"userID":"5743288207","groupID":"","showName":"éĢé","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.926 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.926 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5745714391","conversationType":1,"userID":"5745714391","groupID":"","showName":"䏿ĸ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.931 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.931 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5746670115","conversationType":1,"userID":"5746670115","groupID":"","showName":"åĨåĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.935 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.936 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5752307329","conversationType":1,"userID":"5752307329","groupID":"","showName":"11","faceURL":"ic_avatar_04","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:24.941 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.941 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5762137067","conversationType":1,"userID":"5762137067","groupID":"","showName":"ioi","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.946 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.946 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5763494246","conversationType":1,"userID":"5763494246","groupID":"","showName":"ray","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.951 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.951 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5764725232","conversationType":1,"userID":"5764725232","groupID":"","showName":"bryce","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.955 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.956 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5766348077","conversationType":1,"userID":"5766348077","groupID":"","showName":"éŠŦį¨įŊ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:24.960 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.960 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5770532835","conversationType":1,"userID":"5770532835","groupID":"","showName":"www","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.967 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.967 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5775691842","conversationType":1,"userID":"5775691842","groupID":"","showName":"蝎éŽåŽå¸å
","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.975 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.975 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5775768919","conversationType":1,"userID":"5775768919","groupID":"","showName":"wao äēēīŧ #","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:24.981 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.981 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5778047866","conversationType":1,"userID":"5778047866","groupID":"","showName":"CHEN","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.986 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.986 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5782315790","conversationType":1,"userID":"5782315790","groupID":"","showName":" ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.990 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.990 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5784013945","conversationType":1,"userID":"5784013945","groupID":"","showName":"åžŽįąŗ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:24.995 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:24.996 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5788143929","conversationType":1,"userID":"5788143929","groupID":"","showName":"11","faceURL":"https://web.rentsoft.cn/api_enterprise/object/5788143929/image_cropper_1705453373761.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.000 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.000 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5788891525","conversationType":1,"userID":"5788891525","groupID":"","showName":"A~CXQ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.005 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.006 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5790728514","conversationType":1,"userID":"5790728514","groupID":"","showName":"éŗå
-垎įŦ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.010 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.010 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5794961319","conversationType":1,"userID":"5794961319","groupID":"","showName":"paxy","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.014 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.014 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5795637205","conversationType":1,"userID":"5795637205","groupID":"","showName":"helloworld","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.019 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.019 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5798749721","conversationType":1,"userID":"5798749721","groupID":"","showName":"åĻåĻåĨŊ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:25.029 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.029 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5800725777","conversationType":1,"userID":"5800725777","groupID":"","showName":"3213213","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:25.037 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.037 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5803896006","conversationType":1,"userID":"5803896006","groupID":"","showName":"z","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.043 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.044 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5806188403","conversationType":1,"userID":"5806188403","groupID":"","showName":"éžäšæˇą","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.050 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.050 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5808959084","conversationType":1,"userID":"5808959084","groupID":"","showName":"Tttt","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.054 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.055 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5814165285","conversationType":1,"userID":"5814165285","groupID":"","showName":"aaa","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.059 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.060 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5816557466","conversationType":1,"userID":"5816557466","groupID":"","showName":"åĻåĻåĻ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.064 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.064 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5816946439","conversationType":1,"userID":"5816946439","groupID":"","showName":"qwer","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.069 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.070 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5817653065","conversationType":1,"userID":"5817653065","groupID":"","showName":"test9527","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.075 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.075 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5817925510","conversationType":1,"userID":"5817925510","groupID":"","showName":"godLei6","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.080 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.080 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5818783212","conversationType":1,"userID":"5818783212","groupID":"","showName":"wjun","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.083 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.083 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5821718929","conversationType":1,"userID":"5821718929","groupID":"","showName":"wisdom","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.088 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.089 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5822391747","conversationType":1,"userID":"5822391747","groupID":"","showName":"LogoRun","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.095 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.096 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5823977481","conversationType":1,"userID":"5823977481","groupID":"","showName":"bsmaa","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.109 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.111 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5832825629","conversationType":1,"userID":"5832825629","groupID":"","showName":"hugon","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.122 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.123 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5839682145","conversationType":1,"userID":"5839682145","groupID":"","showName":"alex","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.132 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.133 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5842361658","conversationType":1,"userID":"5842361658","groupID":"","showName":"ååŽæåŽ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.141 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.143 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5842695634","conversationType":1,"userID":"5842695634","groupID":"","showName":"xiaoxie","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.150 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.150 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5843381897","conversationType":1,"userID":"5843381897","groupID":"","showName":"čĸåŽčž","faceURL":"https://web.rentsoft.cn/api_enterprise/object/5843381897/1702171640794_Image_1701332479286.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.155 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.155 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5856396568","conversationType":1,"userID":"5856396568","groupID":"","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.162 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.163 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5857452412","conversationType":1,"userID":"5857452412","groupID":"","showName":"xiongliang","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.169 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.170 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5860770188","conversationType":1,"userID":"5860770188","groupID":"","showName":"åŽäģ˛åē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.176 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.177 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5863796992","conversationType":1,"userID":"5863796992","groupID":"","showName":"čåååĢ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.183 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.183 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5863894652","conversationType":1,"userID":"5863894652","groupID":"","showName":"yier","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:25.189 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.189 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5864051915","conversationType":1,"userID":"5864051915","groupID":"","showName":"coco","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.196 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.196 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5864943501","conversationType":1,"userID":"5864943501","groupID":"","showName":"wxhpby","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.203 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.203 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5871437314","conversationType":1,"userID":"5871437314","groupID":"","showName":"yazi","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.209 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.209 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5883787211","conversationType":1,"userID":"5883787211","groupID":"","showName":"tanch","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.214 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.214 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5885080003","conversationType":1,"userID":"5885080003","groupID":"","showName":"xth","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.219 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.220 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5887387594","conversationType":1,"userID":"5887387594","groupID":"","showName":"ä¸åĸ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.225 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.225 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5890658001","conversationType":1,"userID":"5890658001","groupID":"","showName":"Numb","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:25.230 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.230 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5894974847","conversationType":1,"userID":"5894974847","groupID":"","showName":"éģč˛åšŊéģ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.235 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.235 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5896039030","conversationType":1,"userID":"5896039030","groupID":"","showName":"大éģ夊","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.240 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.240 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5896150134","conversationType":1,"userID":"5896150134","groupID":"","showName":"L","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.246 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.246 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5896186963","conversationType":1,"userID":"5896186963","groupID":"","showName":"éǍæ
é","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.250 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.251 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5899173891","conversationType":1,"userID":"5899173891","groupID":"","showName":"liuzihuang","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.257 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.257 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5904075897","conversationType":1,"userID":"5904075897","groupID":"","showName":"lll","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.263 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.264 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5907279098","conversationType":1,"userID":"5907279098","groupID":"","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.271 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.271 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5908182038","conversationType":1,"userID":"5908182038","groupID":"","showName":"įæĻ¨įąŗį˛","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.277 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.278 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5910546288","conversationType":1,"userID":"5910546288","groupID":"","showName":"tonka","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.284 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.284 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5915346182","conversationType":1,"userID":"5915346182","groupID":"","showName":"åå
åå°","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.288 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.289 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5915558310","conversationType":1,"userID":"5915558310","groupID":"","showName":"1åˇäŊ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:25.293 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.294 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5918528750","conversationType":1,"userID":"5918528750","groupID":"","showName":"w-gmailæĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.299 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.299 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5921376933","conversationType":1,"userID":"5921376933","groupID":"","showName":"æį¯äž ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:25.304 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.304 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5921920938","conversationType":1,"userID":"5921920938","groupID":"","showName":"wuzyhfa","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.308 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.308 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5925608879","conversationType":1,"userID":"5925608879","groupID":"","showName":"imįį","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.313 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.313 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5928750409","conversationType":1,"userID":"5928750409","groupID":"","showName":"čįĢ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:25.318 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.319 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5929046253","conversationType":1,"userID":"5929046253","groupID":"","showName":"夿´ģį˛","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:25.325 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.325 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5929204367","conversationType":1,"userID":"5929204367","groupID":"","showName":"fkfk","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.332 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.332 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5931929122","conversationType":1,"userID":"5931929122","groupID":"","showName":"123456","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.338 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.339 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5932065188","conversationType":1,"userID":"5932065188","groupID":"","showName":"MrWang","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.344 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.344 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5935225979","conversationType":1,"userID":"5935225979","groupID":"","showName":"daybreakcold","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.350 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.350 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5935227089","conversationType":1,"userID":"5935227089","groupID":"","showName":"éįåŗ°","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.355 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.355 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5936400835","conversationType":1,"userID":"5936400835","groupID":"","showName":"13681409897","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.360 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.360 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5937916635","conversationType":1,"userID":"5937916635","groupID":"","showName":"æĢé","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:25.365 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.366 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5937972697","conversationType":1,"userID":"5937972697","groupID":"","showName":"--","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.371 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.371 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5939377886","conversationType":1,"userID":"5939377886","groupID":"","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.377 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.377 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5940571929","conversationType":1,"userID":"5940571929","groupID":"","showName":"marstau","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.383 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.383 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5945434993","conversationType":1,"userID":"5945434993","groupID":"","showName":"hehehe","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.390 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.390 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5948016835","conversationType":1,"userID":"5948016835","groupID":"","showName":"ghj","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.397 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.397 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5950701783","conversationType":1,"userID":"5950701783","groupID":"","showName":"abc","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.404 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.404 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5952571464","conversationType":1,"userID":"5952571464","groupID":"","showName":"goodorbad","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:25.410 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.410 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5954565885","conversationType":1,"userID":"5954565885","groupID":"","showName":"åĨåĨåĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:25.414 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.414 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5955203999","conversationType":1,"userID":"5955203999","groupID":"","showName":"111","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.420 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.421 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5955873566","conversationType":1,"userID":"5955873566","groupID":"","showName":"JC","faceURL":"https://web.rentsoft.cn/api_enterprise/object/5955873566/image_cropper_60A0712F-389B-4095-A78D-75D24AA2576F-70507-0000087FB91B1AD9.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:25.425 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.426 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5959625032","conversationType":1,"userID":"5959625032","groupID":"","showName":"åēˇ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.433 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.433 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:152] not same {"conversationID": "si_1695766238_5967938442", "server": 0, "local": 0}
+2024-06-24 10:57:25.433 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:293] sync update {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5967938442","conversationType":1,"userID":"5967938442","groupID":"","showName":"hhh","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}, "local": {"conversationID":"si_1695766238_5967938442","conversationType":1,"userID":"5967938442","groupID":"","showName":"hhh","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"{\"clientMsgID\":\"f3bc501a9e75ed5d7ae967b00d81c749\",\"serverMsgID\":\"77b5d27ea8ea581781d049133aef1754\",\"createTime\":1718949580641,\"sendTime\":1718949580644,\"sessionType\":1,\"sendID\":\"1695766238\",\"recvID\":\"5967938442\",\"msgFrom\":200,\"contentType\":1201,\"senderPlatformID\":0,\"seq\":1,\"isRead\":false,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"fromToUserID\\\":{\\\"fromUserID\\\":\\\"5967938442\\\",\\\"toUserID\\\":\\\"1695766238\\\"},\\\"handleMsg\\\":\\\"\\\",\\\"friendVersion\\\":0,\\\"friendVersionID\\\":\\\"\\\"}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}}","latestMsgSendTime":1718949580644,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":1,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:25.437 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[{\"conversationID\":\"si_1695766238_5967938442\",\"conversationType\":1,\"userID\":\"5967938442\",\"groupID\":\"\",\"showName\":\"hhh\",\"faceURL\":\"\",\"recvMsgOpt\":0,\"unreadCount\":0,\"groupAtType\":0,\"latestMsg\":\"{\\\"clientMsgID\\\":\\\"f3bc501a9e75ed5d7ae967b00d81c749\\\",\\\"serverMsgID\\\":\\\"77b5d27ea8ea581781d049133aef1754\\\",\\\"createTime\\\":1718949580641,\\\"sendTime\\\":1718949580644,\\\"sessionType\\\":1,\\\"sendID\\\":\\\"1695766238\\\",\\\"recvID\\\":\\\"5967938442\\\",\\\"msgFrom\\\":200,\\\"contentType\\\":1201,\\\"senderPlatformID\\\":0,\\\"seq\\\":1,\\\"isRead\\\":false,\\\"status\\\":2,\\\"notificationElem\\\":{\\\"detail\\\":\\\"{\\\\\\\"fromToUserID\\\\\\\":{\\\\\\\"fromUserID\\\\\\\":\\\\\\\"5967938442\\\\\\\",\\\\\\\"toUserID\\\\\\\":\\\\\\\"1695766238\\\\\\\"},\\\\\\\"handleMsg\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"friendVersion\\\\\\\":0,\\\\\\\"friendVersionID\\\\\\\":\\\\\\\"\\\\\\\"}\\\"},\\\"attachedInfoElem\\\":{\\\"groupHasReadInfo\\\":{\\\"hasReadCount\\\":0,\\\"groupMemberCount\\\":0},\\\"isPrivateChat\\\":false,\\\"burnDuration\\\":0,\\\"hasReadTime\\\":0,\\\"isEncryption\\\":false,\\\"inEncryptStatus\\\":false}}\",\"latestMsgSendTime\":1718949580644,\"draftText\":\"\",\"draftTextTime\":0,\"isPinned\":false,\"isPrivateChat\":false,\"burnDuration\":0,\"isNotInGroup\":false,\"updateUnreadCountTime\":0,\"attachedInfo\":\"\",\"ex\":\"\",\"maxSeq\":0,\"minSeq\":0,\"hasReadSeq\":0,\"msgDestructTime\":0,\"isMsgDestruct\":false}]"}
+2024-06-24 10:57:25.438 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5975439779","conversationType":1,"userID":"5975439779","groupID":"","showName":"NimY.","faceURL":"https://web.rentsoft.cn/api_enterprise/object/5975439779/storage/emulated/0/Android/data/io.openim.android.demo/cache/1706961762464/1706961759978.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.443 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.443 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5975476723","conversationType":1,"userID":"5975476723","groupID":"","showName":"JJ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.452 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.454 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5977374952","conversationType":1,"userID":"5977374952","groupID":"","showName":"ååīŧä¸äŧå§","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:25.467 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.468 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5981427132","conversationType":1,"userID":"5981427132","groupID":"","showName":"P","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.477 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.478 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5983902361","conversationType":1,"userID":"5983902361","groupID":"","showName":"avitori","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:25.485 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.485 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5984173458","conversationType":1,"userID":"5984173458","groupID":"","showName":"å¸
ææ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.490 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.491 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5984271985","conversationType":1,"userID":"5984271985","groupID":"","showName":"æēæēå°å°é
Ĩ","faceURL":"https://web.rentsoft.cn/api_enterprise/object/5984271985/667b867c63563b0ad76795198fdfc811.gif","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:25.496 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.496 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5986232431","conversationType":1,"userID":"5986232431","groupID":"","showName":"æį","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.502 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.503 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5996388709","conversationType":1,"userID":"5996388709","groupID":"","showName":"į
čåģåĒäē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.507 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.508 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5997395137","conversationType":1,"userID":"5997395137","groupID":"","showName":"dongdong","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.513 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.513 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_5997701968","conversationType":1,"userID":"5997701968","groupID":"","showName":"čļ
äēēåŧēåĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:25.518 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.518 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6005888406","conversationType":1,"userID":"6005888406","groupID":"","showName":"kennyxjd","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.522 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.523 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6006128096","conversationType":1,"userID":"6006128096","groupID":"","showName":"123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.527 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.527 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6006290878","conversationType":1,"userID":"6006290878","groupID":"","showName":"fooger","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.532 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.532 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6008066663","conversationType":1,"userID":"6008066663","groupID":"","showName":"æčĒ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.540 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.541 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6013027606","conversationType":1,"userID":"6013027606","groupID":"","showName":"moyeah","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.548 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.548 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6013955514","conversationType":1,"userID":"6013955514","groupID":"","showName":"å
č¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:25.554 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.555 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6015794695","conversationType":1,"userID":"6015794695","groupID":"","showName":"Hexi","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.559 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.560 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6016147145","conversationType":1,"userID":"6016147145","groupID":"","showName":"feng3","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.564 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.564 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6018243921","conversationType":1,"userID":"6018243921","groupID":"","showName":"11","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:25.570 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.570 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6023508071","conversationType":1,"userID":"6023508071","groupID":"","showName":"h","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.575 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.575 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6026538705","conversationType":1,"userID":"6026538705","groupID":"","showName":"sea.sky","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.579 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.580 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6031134585","conversationType":1,"userID":"6031134585","groupID":"","showName":"Aaron","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.584 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.584 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6031667349","conversationType":1,"userID":"6031667349","groupID":"","showName":"tsy","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.588 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.588 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6033028313","conversationType":1,"userID":"6033028313","groupID":"","showName":"portguas","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.593 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.594 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6034497071","conversationType":1,"userID":"6034497071","groupID":"","showName":"h","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.599 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.599 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6036151426","conversationType":1,"userID":"6036151426","groupID":"","showName":"6666","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.606 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.606 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6036941107","conversationType":1,"userID":"6036941107","groupID":"","showName":"æĩč¯1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.612 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.613 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6038779981","conversationType":1,"userID":"6038779981","groupID":"","showName":"åĨŊä¸å¤´","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:25.618 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.618 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6048406952","conversationType":1,"userID":"6048406952","groupID":"","showName":"yger","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.625 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.625 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6051177811","conversationType":1,"userID":"6051177811","groupID":"","showName":"kevin","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.629 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.629 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6051934668","conversationType":1,"userID":"6051934668","groupID":"","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:25.634 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.635 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6055213651","conversationType":1,"userID":"6055213651","groupID":"","showName":"åŊąå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:25.640 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.640 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6060091841","conversationType":1,"userID":"6060091841","groupID":"","showName":"åįˇ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.645 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.645 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6060319919","conversationType":1,"userID":"6060319919","groupID":"","showName":"huhu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.650 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.650 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6062924771","conversationType":1,"userID":"6062924771","groupID":"","showName":"čąčą","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:25.657 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.658 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6064103151","conversationType":1,"userID":"6064103151","groupID":"","showName":"amark","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.662 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.663 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6065191029","conversationType":1,"userID":"6065191029","groupID":"","showName":"doogup99","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.670 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.671 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6068497884","conversationType":1,"userID":"6068497884","groupID":"","showName":"hsguo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.676 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.677 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6074324251","conversationType":1,"userID":"6074324251","groupID":"","showName":"ONLY","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:25.683 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.683 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6076551181","conversationType":1,"userID":"6076551181","groupID":"","showName":"fields","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.689 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.689 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6078638343","conversationType":1,"userID":"6078638343","groupID":"","showName":"坿Ļä¸åļčĢ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.694 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.694 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6083577052","conversationType":1,"userID":"6083577052","groupID":"","showName":"č§åžįåŧįš","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:25.699 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.700 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6083951309","conversationType":1,"userID":"6083951309","groupID":"","showName":"sunJsona","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.704 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.704 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6087811348","conversationType":1,"userID":"6087811348","groupID":"","showName":"大į","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.708 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.709 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6088409125","conversationType":1,"userID":"6088409125","groupID":"","showName":"Henry Wu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.713 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.713 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6093808210","conversationType":1,"userID":"6093808210","groupID":"","showName":"æ åļ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.719 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.719 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6096605449","conversationType":1,"userID":"6096605449","groupID":"","showName":"åé","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.724 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.724 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6099670645","conversationType":1,"userID":"6099670645","groupID":"","showName":"į įŠļį įŠļ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.729 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.729 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6104556263","conversationType":1,"userID":"6104556263","groupID":"","showName":"NIKKI","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.734 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.734 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6106775804","conversationType":1,"userID":"6106775804","groupID":"","showName":"čąčą","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.743 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.744 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6113261132","conversationType":1,"userID":"6113261132","groupID":"","showName":"Test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.757 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.758 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6115346815","conversationType":1,"userID":"6115346815","groupID":"","showName":"åąå¤äēē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.771 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.771 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6116849462","conversationType":1,"userID":"6116849462","groupID":"","showName":"IcyFanta","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.778 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.778 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6116896250","conversationType":1,"userID":"6116896250","groupID":"","showName":"wildlynx","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.784 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.784 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6118899713","conversationType":1,"userID":"6118899713","groupID":"","showName":"ggg","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.789 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.790 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6126224779","conversationType":1,"userID":"6126224779","groupID":"","showName":"dddkkk","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.795 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.795 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6128440220","conversationType":1,"userID":"6128440220","groupID":"","showName":"įĢĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.799 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.799 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6131489317","conversationType":1,"userID":"6131489317","groupID":"","showName":"xxhhope","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.804 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.805 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6132231740","conversationType":1,"userID":"6132231740","groupID":"","showName":"MotisJA","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.810 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.810 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6132997969","conversationType":1,"userID":"6132997969","groupID":"","showName":"zj","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.814 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.814 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6133038339","conversationType":1,"userID":"6133038339","groupID":"","showName":"aaaa","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.818 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.819 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6133543856","conversationType":1,"userID":"6133543856","groupID":"","showName":"æĩč¯å","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.827 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.827 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6133844467","conversationType":1,"userID":"6133844467","groupID":"","showName":"1216","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.834 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.834 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6134647314","conversationType":1,"userID":"6134647314","groupID":"","showName":"åŧ įäē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.845 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.846 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6135244436","conversationType":1,"userID":"6135244436","groupID":"","showName":"qq","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.850 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.851 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6140652559","conversationType":1,"userID":"6140652559","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:25.856 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.856 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6141140222","conversationType":1,"userID":"6141140222","groupID":"","showName":"longlongago","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.862 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.862 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6141620999","conversationType":1,"userID":"6141620999","groupID":"","showName":"æŗ¨åä¸ä¸Ēč´Ļåˇč¯į¨ä¸ä¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:25.867 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.868 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6142166971","conversationType":1,"userID":"6142166971","groupID":"","showName":"155","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:25.873 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.873 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6142186125","conversationType":1,"userID":"6142186125","groupID":"","showName":"sezi","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.878 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.878 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6143363837","conversationType":1,"userID":"6143363837","groupID":"","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.883 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.883 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6145520493","conversationType":1,"userID":"6145520493","groupID":"","showName":"17","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.888 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.888 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6149155248","conversationType":1,"userID":"6149155248","groupID":"","showName":"556699","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.893 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.894 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6152830251","conversationType":1,"userID":"6152830251","groupID":"","showName":"įé
¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:25.903 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.904 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6156827373","conversationType":1,"userID":"6156827373","groupID":"","showName":"čĻįčĄ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.917 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.917 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6158590414","conversationType":1,"userID":"6158590414","groupID":"","showName":"markerj","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:25.927 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.927 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6161718484","conversationType":1,"userID":"6161718484","groupID":"","showName":"jack","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.935 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.935 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6165380448","conversationType":1,"userID":"6165380448","groupID":"","showName":"zhanghang","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.941 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.942 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6168075727","conversationType":1,"userID":"6168075727","groupID":"","showName":"æ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.947 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.948 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6168367570","conversationType":1,"userID":"6168367570","groupID":"","showName":"eerr1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:25.955 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.955 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6171471555","conversationType":1,"userID":"6171471555","groupID":"","showName":"zhazha","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.964 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.965 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6171560899","conversationType":1,"userID":"6171560899","groupID":"","showName":"莞įŊŽäŋĄæ¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.971 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.971 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6171677006","conversationType":1,"userID":"6171677006","groupID":"","showName":"crui990","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.977 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.978 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6179365429","conversationType":1,"userID":"6179365429","groupID":"","showName":"RR","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.982 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.983 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6182458494","conversationType":1,"userID":"6182458494","groupID":"","showName":"åäēē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.988 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.988 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6182903129","conversationType":1,"userID":"6182903129","groupID":"","showName":"zzz","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:25.994 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:25.994 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6195299101","conversationType":1,"userID":"6195299101","groupID":"","showName":"jack","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.001 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.001 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6195752325","conversationType":1,"userID":"6195752325","groupID":"","showName":"OpenIM","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.008 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.009 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6201510570","conversationType":1,"userID":"6201510570","groupID":"","showName":"IM","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.018 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.018 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6203470761","conversationType":1,"userID":"6203470761","groupID":"","showName":"åŠ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.024 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.024 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6204547412","conversationType":1,"userID":"6204547412","groupID":"","showName":"Martin","faceURL":"https://web.rentsoft.cn/api_enterprise/object/6204547412/Snipaste_2021-09-23_18-29-58.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.031 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.031 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6204882268","conversationType":1,"userID":"6204882268","groupID":"","showName":"įĩé¨","faceURL":"https://web.rentsoft.cn/api_enterprise/object/6204882268/a6483-fmbp4.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.036 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.036 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6205781501","conversationType":1,"userID":"6205781501","groupID":"","showName":"Tashan","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:26.042 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.042 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6218720837","conversationType":1,"userID":"6218720837","groupID":"","showName":"åååŋ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:26.047 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.047 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6219207142","conversationType":1,"userID":"6219207142","groupID":"","showName":"zmq3821","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:26.052 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.052 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6219819108","conversationType":1,"userID":"6219819108","groupID":"","showName":"åææįå°čĄæ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.058 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.058 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6224388014","conversationType":1,"userID":"6224388014","groupID":"","showName":"tanxm","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.063 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.064 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6225512933","conversationType":1,"userID":"6225512933","groupID":"","showName":"dawnswwwww","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.068 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.068 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6227325792","conversationType":1,"userID":"6227325792","groupID":"","showName":"åŽæšæé","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.075 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.075 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6231818471","conversationType":1,"userID":"6231818471","groupID":"","showName":"simon","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.082 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.082 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6232137221","conversationType":1,"userID":"6232137221","groupID":"","showName":"éä¸ččĄåĒå¨äēē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.091 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.091 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6237905746","conversationType":1,"userID":"6237905746","groupID":"","showName":"rooike","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.100 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.101 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6240876322","conversationType":1,"userID":"6240876322","groupID":"","showName":"ny","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:26.112 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.114 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6244724164","conversationType":1,"userID":"6244724164","groupID":"","showName":"djn","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.124 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.124 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6246279298","conversationType":1,"userID":"6246279298","groupID":"","showName":"im-test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.132 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.133 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6250904913","conversationType":1,"userID":"6250904913","groupID":"","showName":"ss","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.139 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.139 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6254689070","conversationType":1,"userID":"6254689070","groupID":"","showName":"HUI","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.146 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.146 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6257143773","conversationType":1,"userID":"6257143773","groupID":"","showName":"tufeiyao","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.152 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.152 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6261322669","conversationType":1,"userID":"6261322669","groupID":"","showName":"zxd","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.157 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.158 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6262174436","conversationType":1,"userID":"6262174436","groupID":"","showName":"æ¸
æ°´ä¸æļ§","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.163 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.164 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6265354518","conversationType":1,"userID":"6265354518","groupID":"","showName":"大åˇåˇ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:26.170 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.170 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6265776649","conversationType":1,"userID":"6265776649","groupID":"","showName":"cunsheng","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.180 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.180 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6266941295","conversationType":1,"userID":"6266941295","groupID":"","showName":"longxiang","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:26.188 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.188 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6270795380","conversationType":1,"userID":"6270795380","groupID":"","showName":"ååå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.193 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.194 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6270908929","conversationType":1,"userID":"6270908929","groupID":"","showName":"夿åĸ","faceURL":"http://14.29.213.197:50002/object/6270908929/1714817973096_mmexport9493e7c86c9ce49c9725562bbbacdd7d_1714799451796.jpeg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.199 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.199 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6271691561","conversationType":1,"userID":"6271691561","groupID":"","showName":"TIM","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.204 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.204 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6273646617","conversationType":1,"userID":"6273646617","groupID":"","showName":"į
į
","faceURL":"https://web.rentsoft.cn/api_enterprise/object/6273646617/垎äŋĄæĒåž_20231022201428.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:26.209 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.209 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6277147514","conversationType":1,"userID":"6277147514","groupID":"","showName":"įˇåŠ","faceURL":"https://web.rentsoft.cn/api_enterprise/object/6277147514/image_cropper_1706173937363.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.216 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.217 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6283419580","conversationType":1,"userID":"6283419580","groupID":"","showName":"æ¸
čˇ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.230 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.231 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6285709625","conversationType":1,"userID":"6285709625","groupID":"","showName":"夊įŠē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.240 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.240 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6287774671","conversationType":1,"userID":"6287774671","groupID":"","showName":"kk","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.247 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.248 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6288096156","conversationType":1,"userID":"6288096156","groupID":"","showName":"åå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.253 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.253 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6291070602","conversationType":1,"userID":"6291070602","groupID":"","showName":"éŊ夊大åŖ","faceURL":"https://web.rentsoft.cn/api_enterprise/object/6291070602/image_2023-09-02-59-26.227.png","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:26.260 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.261 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6292285317","conversationType":1,"userID":"6292285317","groupID":"","showName":"įŋįåŦ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:26.286 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.286 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6302501675","conversationType":1,"userID":"6302501675","groupID":"","showName":"ben","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.294 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.294 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6303051991","conversationType":1,"userID":"6303051991","groupID":"","showName":"eightdoor","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:26.300 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.300 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6303348015","conversationType":1,"userID":"6303348015","groupID":"","showName":"carlfeng","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:26.305 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.305 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6311770884","conversationType":1,"userID":"6311770884","groupID":"","showName":"åģéŽéŽæ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.310 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.311 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6312531724","conversationType":1,"userID":"6312531724","groupID":"","showName":"kjj","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.315 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.315 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6312576873","conversationType":1,"userID":"6312576873","groupID":"","showName":"li","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.319 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.319 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6313231245","conversationType":1,"userID":"6313231245","groupID":"","showName":"wolly","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:26.325 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.325 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6313419358","conversationType":1,"userID":"6313419358","groupID":"","showName":"jerry119","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.330 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.330 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6317201698","conversationType":1,"userID":"6317201698","groupID":"","showName":"åŦ蝴","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:26.336 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.338 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6319015024","conversationType":1,"userID":"6319015024","groupID":"","showName":"OpenIM-wind","faceURL":"https://web.rentsoft.cn/api_enterprise/object/6319015024/pexels-photo-2174974.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:26.345 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.345 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6319901751","conversationType":1,"userID":"6319901751","groupID":"","showName":"åĨŊåĨŊįĄč§","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.351 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.351 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6322374743","conversationType":1,"userID":"6322374743","groupID":"","showName":"å°æŦ§","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.357 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.357 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6326666004","conversationType":1,"userID":"6326666004","groupID":"","showName":"czy","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.362 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.362 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6327876925","conversationType":1,"userID":"6327876925","groupID":"","showName":"Done","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.368 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.368 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6330822619","conversationType":1,"userID":"6330822619","groupID":"","showName":"Will","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:26.374 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.375 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6331971236","conversationType":1,"userID":"6331971236","groupID":"","showName":"įēĸįąŗ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:26.381 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.381 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6334911076","conversationType":1,"userID":"6334911076","groupID":"","showName":"hi","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:26.386 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.386 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6338240526","conversationType":1,"userID":"6338240526","groupID":"","showName":"å¨å¨","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.391 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.391 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6339230517","conversationType":1,"userID":"6339230517","groupID":"","showName":"čŋĒ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.395 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.395 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6342959213","conversationType":1,"userID":"6342959213","groupID":"","showName":"cotox","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.399 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.399 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6346508066","conversationType":1,"userID":"6346508066","groupID":"","showName":"åŊæ˛ģ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.403 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.404 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6347103724","conversationType":1,"userID":"6347103724","groupID":"","showName":"hellworld","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.407 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.407 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6351160254","conversationType":1,"userID":"6351160254","groupID":"","showName":"111","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.412 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.413 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6352104335","conversationType":1,"userID":"6352104335","groupID":"","showName":"æĩĒčŋš","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.417 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.417 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6352490253","conversationType":1,"userID":"6352490253","groupID":"","showName":"zzz","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:26.421 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.421 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6352839849","conversationType":1,"userID":"6352839849","groupID":"","showName":"ss","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.426 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.426 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6353020967","conversationType":1,"userID":"6353020967","groupID":"","showName":"Wendy","faceURL":"ic_avatar_01","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:26.433 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.433 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6361976167","conversationType":1,"userID":"6361976167","groupID":"","showName":"dsfdsf","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:26.439 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.439 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6362196673","conversationType":1,"userID":"6362196673","groupID":"","showName":"Jane.com","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.445 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.445 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6363109385","conversationType":1,"userID":"6363109385","groupID":"","showName":"įå¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.449 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.450 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6364600020","conversationType":1,"userID":"6364600020","groupID":"","showName":"ln","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.454 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.454 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6373189805","conversationType":1,"userID":"6373189805","groupID":"","showName":"įŧĨįŧ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.460 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.460 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6378176309","conversationType":1,"userID":"6378176309","groupID":"","showName":"åčå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.464 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.465 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6381244261","conversationType":1,"userID":"6381244261","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:26.469 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.469 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6386210375","conversationType":1,"userID":"6386210375","groupID":"","showName":"mg","faceURL":"https://web.rentsoft.cn/api_enterprise/object/6386210375/image_cropper_1711039284490.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.474 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.474 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6397860749","conversationType":1,"userID":"6397860749","groupID":"","showName":"å¤įį","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:26.479 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.479 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6398540247","conversationType":1,"userID":"6398540247","groupID":"","showName":"įč§å¸¸å¨åææĨįĻ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.483 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.483 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6401239370","conversationType":1,"userID":"6401239370","groupID":"","showName":"čéŠŦ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.487 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.487 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6404356222","conversationType":1,"userID":"6404356222","groupID":"","showName":"å°å°","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.493 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.493 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6406732941","conversationType":1,"userID":"6406732941","groupID":"","showName":"tanjiang","faceURL":"https://web.rentsoft.cn/api_enterprise/object/6406732941/åå¸.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.501 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.501 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6410043931","conversationType":1,"userID":"6410043931","groupID":"","showName":"rhjiang","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.509 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.510 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6411073511","conversationType":1,"userID":"6411073511","groupID":"","showName":"č´ĸįĨįˇ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.515 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.515 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6412329187","conversationType":1,"userID":"6412329187","groupID":"","showName":"Lc","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:26.520 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.520 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6414911020","conversationType":1,"userID":"6414911020","groupID":"","showName":"æą¤įŋæˇ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.524 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.525 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6416142584","conversationType":1,"userID":"6416142584","groupID":"","showName":"chenhu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.529 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.529 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6417602965","conversationType":1,"userID":"6417602965","groupID":"","showName":"damain","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.533 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.533 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6419911901","conversationType":1,"userID":"6419911901","groupID":"","showName":"code000000","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:26.538 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.538 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6420701443","conversationType":1,"userID":"6420701443","groupID":"","showName":"ä¸į","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.544 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.544 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6421051438","conversationType":1,"userID":"6421051438","groupID":"","showName":"pppp","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.549 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.549 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6431088982","conversationType":1,"userID":"6431088982","groupID":"","showName":"æ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:26.553 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.553 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6433354761","conversationType":1,"userID":"6433354761","groupID":"","showName":"įŠē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.558 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.559 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6438561890","conversationType":1,"userID":"6438561890","groupID":"","showName":"lululemon","faceURL":"https://web.rentsoft.cn/api_enterprise/object/6438561890/HUTiKj4__400x400.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.566 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.566 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6441149641","conversationType":1,"userID":"6441149641","groupID":"","showName":"felix","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.577 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.578 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6441650238","conversationType":1,"userID":"6441650238","groupID":"","showName":"theeight","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.582 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.583 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6443345562","conversationType":1,"userID":"6443345562","groupID":"","showName":"æĩį§°","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.587 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.587 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6444500926","conversationType":1,"userID":"6444500926","groupID":"","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.593 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.594 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6444929933","conversationType":1,"userID":"6444929933","groupID":"","showName":"test9","faceURL":"ic_avatar_06","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:26.600 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.600 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6447835862","conversationType":1,"userID":"6447835862","groupID":"","showName":"MrJiaHe","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.606 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.607 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6448579919","conversationType":1,"userID":"6448579919","groupID":"","showName":"äēįåä¸åˇ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.613 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.613 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6449138632","conversationType":1,"userID":"6449138632","groupID":"","showName":"zyl","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.618 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.619 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6449141444","conversationType":1,"userID":"6449141444","groupID":"","showName":"Dasin","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.623 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.623 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6453774519","conversationType":1,"userID":"6453774519","groupID":"","showName":"panziyu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.629 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.629 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6453949619","conversationType":1,"userID":"6453949619","groupID":"","showName":"Aragakiyui","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.633 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.634 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6454827578","conversationType":1,"userID":"6454827578","groupID":"","showName":"tyhcmzy","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:26.638 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.638 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6458562938","conversationType":1,"userID":"6458562938","groupID":"","showName":"čå
æŦ§","faceURL":"https://web.rentsoft.cn/api_enterprise/object/6458562938/image_cropper_1700369233784.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:26.643 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.643 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6460025590","conversationType":1,"userID":"6460025590","groupID":"","showName":"AY","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.648 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.648 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6469392278","conversationType":1,"userID":"6469392278","groupID":"","showName":"solomagic","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.653 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.653 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6481678351","conversationType":1,"userID":"6481678351","groupID":"","showName":"åčĢ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.660 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.660 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6483893350","conversationType":1,"userID":"6483893350","groupID":"","showName":"ååååäŊ æŗ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:26.666 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.667 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6484797725","conversationType":1,"userID":"6484797725","groupID":"","showName":"automan001","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.672 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.673 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6487716839","conversationType":1,"userID":"6487716839","groupID":"","showName":"fuck123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.678 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.678 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6494483474","conversationType":1,"userID":"6494483474","groupID":"","showName":"398131","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.683 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.683 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6496496312","conversationType":1,"userID":"6496496312","groupID":"","showName":"5234","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:26.688 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.688 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6498376092","conversationType":1,"userID":"6498376092","groupID":"","showName":"å
é","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.693 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.693 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6499282212","conversationType":1,"userID":"6499282212","groupID":"","showName":"ååååąą","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.698 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.698 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6500329873","conversationType":1,"userID":"6500329873","groupID":"","showName":"å¯čžžé¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.703 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.703 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6501494738","conversationType":1,"userID":"6501494738","groupID":"","showName":"vicky","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:26.714 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.714 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6506881202","conversationType":1,"userID":"6506881202","groupID":"","showName":"leebai","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.720 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.721 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6511811241","conversationType":1,"userID":"6511811241","groupID":"","showName":"uniapp - app","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.728 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.728 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6512556770","conversationType":1,"userID":"6512556770","groupID":"","showName":"123321","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.735 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.735 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6513275013","conversationType":1,"userID":"6513275013","groupID":"","showName":"æ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.741 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.741 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6516498277","conversationType":1,"userID":"6516498277","groupID":"","showName":"AA","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.748 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.748 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6516684062","conversationType":1,"userID":"6516684062","groupID":"","showName":"lucis","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:26.753 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.753 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6518420590","conversationType":1,"userID":"6518420590","groupID":"","showName":"äŊį§æ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.759 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.759 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6519854131","conversationType":1,"userID":"6519854131","groupID":"","showName":"hhoo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.765 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.765 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6522084706","conversationType":1,"userID":"6522084706","groupID":"","showName":"jason","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:26.769 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.769 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6524017485","conversationType":1,"userID":"6524017485","groupID":"","showName":"jie","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:26.774 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.774 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6529480566","conversationType":1,"userID":"6529480566","groupID":"","showName":"ahzhangcg","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.779 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.780 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6531017055","conversationType":1,"userID":"6531017055","groupID":"","showName":"a123456","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.785 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.785 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6531826562","conversationType":1,"userID":"6531826562","groupID":"","showName":"im_love","faceURL":"https://web.rentsoft.cn/api_enterprise/object/6531826562/storage/emulated/0/Android/data/io.openim.android.demo/cache/1706596723436/1706596722663.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.792 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.793 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6536907751","conversationType":1,"userID":"6536907751","groupID":"","showName":"tsl","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.799 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.800 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6537610017","conversationType":1,"userID":"6537610017","groupID":"","showName":"111111","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.806 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.806 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6538167968","conversationType":1,"userID":"6538167968","groupID":"","showName":"guodz123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.812 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.812 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6539096974","conversationType":1,"userID":"6539096974","groupID":"","showName":"sl","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.817 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.817 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6549189747","conversationType":1,"userID":"6549189747","groupID":"","showName":"CodeMax","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:26.822 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.822 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6549643089","conversationType":1,"userID":"6549643089","groupID":"","showName":"å¯äš","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.829 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.829 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6551973401","conversationType":1,"userID":"6551973401","groupID":"","showName":"å°čž","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:26.834 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.834 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6554716140","conversationType":1,"userID":"6554716140","groupID":"","showName":"shuinan","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.839 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.839 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6557841892","conversationType":1,"userID":"6557841892","groupID":"","showName":"į´å","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.845 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.846 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6557880147","conversationType":1,"userID":"6557880147","groupID":"","showName":"T","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.851 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.851 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6559013673","conversationType":1,"userID":"6559013673","groupID":"","showName":"withitren","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.858 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.859 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6561826343","conversationType":1,"userID":"6561826343","groupID":"","showName":"Muzikoud","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.866 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.867 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6561879012","conversationType":1,"userID":"6561879012","groupID":"","showName":"Jack","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.872 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.873 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6564186011","conversationType":1,"userID":"6564186011","groupID":"","showName":"mikeooye","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.878 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.878 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6566879594","conversationType":1,"userID":"6566879594","groupID":"","showName":"Uson","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.883 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.884 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6567751477","conversationType":1,"userID":"6567751477","groupID":"","showName":"čŊ鍿éŖ","faceURL":"http://14.29.213.197:50002/object/6567751477/storage/emulated/0/Android/data/io.openim.android.demo/cache/1715432443767/1715432390804.png","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.888 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.888 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6568661215","conversationType":1,"userID":"6568661215","groupID":"","showName":"éŋæ¨","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.894 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.894 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6569298083","conversationType":1,"userID":"6569298083","groupID":"","showName":"iwtbam","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.899 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.899 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6571764694","conversationType":1,"userID":"6571764694","groupID":"","showName":"åēäŊ å¤Ēįž","faceURL":"https://web.rentsoft.cn/api_enterprise/object/6571764694/1706086377280jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.904 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.904 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6572366754","conversationType":1,"userID":"6572366754","groupID":"","showName":"scy","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.908 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.909 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6574042397","conversationType":1,"userID":"6574042397","groupID":"","showName":"test1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:26.913 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.913 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6579374753","conversationType":1,"userID":"6579374753","groupID":"","showName":"hello","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.917 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.917 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6582408770","conversationType":1,"userID":"6582408770","groupID":"","showName":"æˇĄæˇĄįįą","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:26.923 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.923 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6582718155","conversationType":1,"userID":"6582718155","groupID":"","showName":"bbnnnn","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.929 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.929 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6585308853","conversationType":1,"userID":"6585308853","groupID":"","showName":"įĢįš","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.934 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.934 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6585436255","conversationType":1,"userID":"6585436255","groupID":"","showName":"Arimis","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.940 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.940 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6587366044","conversationType":1,"userID":"6587366044","groupID":"","showName":"čˇ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.946 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.946 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6588136652","conversationType":1,"userID":"6588136652","groupID":"","showName":"1551","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.950 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.950 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6588496447","conversationType":1,"userID":"6588496447","groupID":"","showName":"a12345678","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:26.956 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.956 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6591504507","conversationType":1,"userID":"6591504507","groupID":"","showName":"å¨ååĨæĩč¯","faceURL":"http://14.29.213.197:50002/object/6591504507/1717934829011_mmexport1717915202644.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.961 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.961 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6592301142","conversationType":1,"userID":"6592301142","groupID":"","showName":"æéčŋåčĒčēĢįĄŦ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.966 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.966 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6592334053","conversationType":1,"userID":"6592334053","groupID":"","showName":"jack","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:26.971 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.971 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6592691219","conversationType":1,"userID":"6592691219","groupID":"","showName":"įč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:26.976 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.976 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6593158401","conversationType":1,"userID":"6593158401","groupID":"","showName":"test5","faceURL":"ic_avatar_06","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:26.981 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.981 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6593585083","conversationType":1,"userID":"6593585083","groupID":"","showName":"test7","faceURL":"ic_avatar_03","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:26.986 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.986 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6602728377","conversationType":1,"userID":"6602728377","groupID":"","showName":"Q","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.991 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.992 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6605809249","conversationType":1,"userID":"6605809249","groupID":"","showName":"ldq","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:26.998 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:26.998 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6605893249","conversationType":1,"userID":"6605893249","groupID":"","showName":"县233","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.004 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.004 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6606496379","conversationType":1,"userID":"6606496379","groupID":"","showName":"åģåģ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.010 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.010 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6608487604","conversationType":1,"userID":"6608487604","groupID":"","showName":"Aaron","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.015 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.015 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6611636445","conversationType":1,"userID":"6611636445","groupID":"","showName":"yaohaha","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.020 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.020 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6614558445","conversationType":1,"userID":"6614558445","groupID":"","showName":"helchuan","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.025 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.026 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6616366600","conversationType":1,"userID":"6616366600","groupID":"","showName":"mailong","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.031 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.031 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6618248076","conversationType":1,"userID":"6618248076","groupID":"","showName":"jojojo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.036 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.036 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6621259604","conversationType":1,"userID":"6621259604","groupID":"","showName":"Etwases","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.041 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.041 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6625451597","conversationType":1,"userID":"6625451597","groupID":"","showName":"lk","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.046 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.046 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6627105296","conversationType":1,"userID":"6627105296","groupID":"","showName":"yuka","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.051 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.051 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6628117309","conversationType":1,"userID":"6628117309","groupID":"","showName":"įĨæĸéŖæē头","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:27.055 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.055 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6629808721","conversationType":1,"userID":"6629808721","groupID":"","showName":"ccyydd","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.062 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.062 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6630888513","conversationType":1,"userID":"6630888513","groupID":"","showName":"ææĻ大åģX","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:27.068 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.068 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6631065279","conversationType":1,"userID":"6631065279","groupID":"","showName":"čščš","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.075 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.075 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6640200986","conversationType":1,"userID":"6640200986","groupID":"","showName":"æĩč¯1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.080 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.080 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6640754016","conversationType":1,"userID":"6640754016","groupID":"","showName":"æ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:27.084 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.085 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6642201111","conversationType":1,"userID":"6642201111","groupID":"","showName":"edx","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.090 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.090 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6644481571","conversationType":1,"userID":"6644481571","groupID":"","showName":"lucky","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.095 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.095 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6650213351","conversationType":1,"userID":"6650213351","groupID":"","showName":"éäžŋ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:27.100 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.100 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6655870493","conversationType":1,"userID":"6655870493","groupID":"","showName":"éååĻ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.104 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.104 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6658903475","conversationType":1,"userID":"6658903475","groupID":"","showName":"zheng","faceURL":"https://web.rentsoft.cn/api_enterprise/object/6658903475/ic_voice_blue.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:27.109 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.109 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6662856855","conversationType":1,"userID":"6662856855","groupID":"","showName":"፿æ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.114 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.115 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6663129968","conversationType":1,"userID":"6663129968","groupID":"","showName":"éžåžįŗæļ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.119 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.119 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6663875174","conversationType":1,"userID":"6663875174","groupID":"","showName":"įąéŧ æ įįĢåĒ","faceURL":"https://web.rentsoft.cn/api_enterprise/object/6663875174/IMG_20221231_114836744.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.125 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.125 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6665134423","conversationType":1,"userID":"6665134423","groupID":"","showName":"cj","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:27.131 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.131 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6667078727","conversationType":1,"userID":"6667078727","groupID":"","showName":"wangc","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:27.180 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.180 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6670339193","conversationType":1,"userID":"6670339193","groupID":"","showName":"é","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.187 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.188 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6670746810","conversationType":1,"userID":"6670746810","groupID":"","showName":"aylian","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.193 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.194 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6670760760","conversationType":1,"userID":"6670760760","groupID":"","showName":"adsf0021","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.199 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.200 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6675598583","conversationType":1,"userID":"6675598583","groupID":"","showName":"Alan","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.210 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.210 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6676873258","conversationType":1,"userID":"6676873258","groupID":"","showName":"18862194354","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.220 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.221 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6677772576","conversationType":1,"userID":"6677772576","groupID":"","showName":"åé","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:27.226 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.226 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6683875714","conversationType":1,"userID":"6683875714","groupID":"","showName":"MARK DUANYASONG","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.231 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.231 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6685902642","conversationType":1,"userID":"6685902642","groupID":"","showName":"æčå¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.236 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.236 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6686526228","conversationType":1,"userID":"6686526228","groupID":"","showName":"111","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.240 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.240 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6686846215","conversationType":1,"userID":"6686846215","groupID":"","showName":"18310935896","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.246 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.247 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6687633010","conversationType":1,"userID":"6687633010","groupID":"","showName":"åļåģē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.253 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.253 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6688995137","conversationType":1,"userID":"6688995137","groupID":"","showName":"zz","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.259 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.259 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6689518881","conversationType":1,"userID":"6689518881","groupID":"","showName":"kk","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.265 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.266 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6691071198","conversationType":1,"userID":"6691071198","groupID":"","showName":"éŋä¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:27.271 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.271 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6691486515","conversationType":1,"userID":"6691486515","groupID":"","showName":"liuted","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.277 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.277 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6692484993","conversationType":1,"userID":"6692484993","groupID":"","showName":"yy","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.282 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.282 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6693315961","conversationType":1,"userID":"6693315961","groupID":"","showName":"RonyTest","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.288 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.288 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6699224388","conversationType":1,"userID":"6699224388","groupID":"","showName":"liubaogang","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.293 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.293 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6699700239","conversationType":1,"userID":"6699700239","groupID":"","showName":"cxk","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.298 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.298 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6700192964","conversationType":1,"userID":"6700192964","groupID":"","showName":"li","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:27.302 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.302 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6700296582","conversationType":1,"userID":"6700296582","groupID":"","showName":"j2","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.309 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.309 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6700520119","conversationType":1,"userID":"6700520119","groupID":"","showName":"äŧéŖįčé
","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.316 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.316 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6703162622","conversationType":1,"userID":"6703162622","groupID":"","showName":"xiaolin","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.321 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.322 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6704991652","conversationType":1,"userID":"6704991652","groupID":"","showName":"Alex","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.327 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.327 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6712048605","conversationType":1,"userID":"6712048605","groupID":"","showName":"å°åčą","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:27.333 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.333 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6719767483","conversationType":1,"userID":"6719767483","groupID":"","showName":"åĻåĻåĻ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:27.337 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.338 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6720463717","conversationType":1,"userID":"6720463717","groupID":"","showName":"dskjfdsfjieee","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.343 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.344 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6723382158","conversationType":1,"userID":"6723382158","groupID":"","showName":"aaaa","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.348 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.349 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6723843756","conversationType":1,"userID":"6723843756","groupID":"","showName":"å°į","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.354 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.354 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6726134118","conversationType":1,"userID":"6726134118","groupID":"","showName":"įĻæĩˇ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.359 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.359 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6740911583","conversationType":1,"userID":"6740911583","groupID":"","showName":"henry","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.364 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.364 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6741909723","conversationType":1,"userID":"6741909723","groupID":"","showName":"Joe","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.378 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.378 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6742265687","conversationType":1,"userID":"6742265687","groupID":"","showName":"jiaoshui","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.385 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.385 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6742554919","conversationType":1,"userID":"6742554919","groupID":"","showName":"åå¤ä¸Ŋ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:27.391 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.391 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6746838054","conversationType":1,"userID":"6746838054","groupID":"","showName":"Molex","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.397 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.397 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6753861572","conversationType":1,"userID":"6753861572","groupID":"","showName":"Stan ","faceURL":"https://web.rentsoft.cn/api_enterprise/object/6753861572/t3.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.402 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.402 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6754011874","conversationType":1,"userID":"6754011874","groupID":"","showName":"rover","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.407 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.408 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6754137880","conversationType":1,"userID":"6754137880","groupID":"","showName":"Test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.413 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.413 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6754912650","conversationType":1,"userID":"6754912650","groupID":"","showName":"Kite","faceURL":"ic_avatar_01","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.419 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.419 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6755720200","conversationType":1,"userID":"6755720200","groupID":"","showName":"Lansong","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.423 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.423 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6760352680","conversationType":1,"userID":"6760352680","groupID":"","showName":"locdee","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.428 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.428 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6761468459","conversationType":1,"userID":"6761468459","groupID":"","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.433 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.434 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6761872625","conversationType":1,"userID":"6761872625","groupID":"","showName":"testli","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:27.441 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.441 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6763043356","conversationType":1,"userID":"6763043356","groupID":"","showName":"įĒåŋčĢ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.447 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.448 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6765773509","conversationType":1,"userID":"6765773509","groupID":"","showName":"hjgkjh","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:27.455 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.455 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6765812585","conversationType":1,"userID":"6765812585","groupID":"","showName":"th","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.464 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.465 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6767809967","conversationType":1,"userID":"6767809967","groupID":"","showName":"lee","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:27.470 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.470 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6767821294","conversationType":1,"userID":"6767821294","groupID":"","showName":"Fly","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.476 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.476 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6768590754","conversationType":1,"userID":"6768590754","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:27.482 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.482 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6770102525","conversationType":1,"userID":"6770102525","groupID":"","showName":"tester","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.488 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.488 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6772352172","conversationType":1,"userID":"6772352172","groupID":"","showName":"Huang","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.493 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.494 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6773909696","conversationType":1,"userID":"6773909696","groupID":"","showName":"įŠēåĻ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.498 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.499 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6778602686","conversationType":1,"userID":"6778602686","groupID":"","showName":"፿æē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.503 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.503 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6784987176","conversationType":1,"userID":"6784987176","groupID":"","showName":"wei564104865","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.509 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.509 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6786364682","conversationType":1,"userID":"6786364682","groupID":"","showName":"jj","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.516 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.516 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6787283652","conversationType":1,"userID":"6787283652","groupID":"","showName":"blooming3","faceURL":"http://14.29.213.197:50002/object/6787283652/įģæŋ.png","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:27.524 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.524 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6791203959","conversationType":1,"userID":"6791203959","groupID":"","showName":"įĻģåĢ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.530 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.530 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6802380858","conversationType":1,"userID":"6802380858","groupID":"","showName":"xiaolai","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.534 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.534 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6806887201","conversationType":1,"userID":"6806887201","groupID":"","showName":"VV","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.539 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.539 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6806913128","conversationType":1,"userID":"6806913128","groupID":"","showName":"lyn","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.545 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.545 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6808160177","conversationType":1,"userID":"6808160177","groupID":"","showName":"myIM","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.551 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.551 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6811700180","conversationType":1,"userID":"6811700180","groupID":"","showName":"夊įŠēäšå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:27.555 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.555 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6814913395","conversationType":1,"userID":"6814913395","groupID":"","showName":"čæąé¸Ą","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.559 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.560 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6814929287","conversationType":1,"userID":"6814929287","groupID":"","showName":"åĨŊæŗįĸįą","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.564 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.564 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6816903047","conversationType":1,"userID":"6816903047","groupID":"","showName":"Blue","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:27.569 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.569 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6817618499","conversationType":1,"userID":"6817618499","groupID":"","showName":"å¤įĻš","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.575 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.576 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6818425876","conversationType":1,"userID":"6818425876","groupID":"","showName":"xiaoH","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.582 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.582 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6820141548","conversationType":1,"userID":"6820141548","groupID":"","showName":"åŧæēåĄ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.587 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.588 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6820503013","conversationType":1,"userID":"6820503013","groupID":"","showName":"Arlo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.592 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.592 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6821762379","conversationType":1,"userID":"6821762379","groupID":"","showName":"æĩč¯ä¸ä¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.596 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.596 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6829726306","conversationType":1,"userID":"6829726306","groupID":"","showName":"æææä¸ļæå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.601 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.601 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6830551855","conversationType":1,"userID":"6830551855","groupID":"","showName":"bm","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:27.606 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.606 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6832510780","conversationType":1,"userID":"6832510780","groupID":"","showName":"æģ´æ°´æĩˇæ´","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.611 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.611 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6833055175","conversationType":1,"userID":"6833055175","groupID":"","showName":"ops","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.616 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.616 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6838907936","conversationType":1,"userID":"6838907936","groupID":"","showName":"æįąæåŽļ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:27.621 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.621 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6839612396","conversationType":1,"userID":"6839612396","groupID":"","showName":"soend","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.625 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.625 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6840115382","conversationType":1,"userID":"6840115382","groupID":"","showName":"yshen","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.631 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.631 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6845692313","conversationType":1,"userID":"6845692313","groupID":"","showName":"NPCæē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.637 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.637 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6845749447","conversationType":1,"userID":"6845749447","groupID":"","showName":"į¨į¨į¨","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.642 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.643 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6845802743","conversationType":1,"userID":"6845802743","groupID":"","showName":"eahau","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.649 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.649 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6848013573","conversationType":1,"userID":"6848013573","groupID":"","showName":"Læ°","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:27.654 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.654 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6848660331","conversationType":1,"userID":"6848660331","groupID":"","showName":"åŧåĨ2","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.659 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.659 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6850614360","conversationType":1,"userID":"6850614360","groupID":"","showName":"dahezi","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:27.663 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.664 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6857178107","conversationType":1,"userID":"6857178107","groupID":"","showName":"top","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.668 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.668 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6858024107","conversationType":1,"userID":"6858024107","groupID":"","showName":"Albert","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.672 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.672 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6859717785","conversationType":1,"userID":"6859717785","groupID":"","showName":"éŖé¸äšéĒ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.677 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.677 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6863876045","conversationType":1,"userID":"6863876045","groupID":"","showName":"haose","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.681 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.681 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6864422826","conversationType":1,"userID":"6864422826","groupID":"","showName":"runrunaway","faceURL":"https://web.rentsoft.cn/api_enterprise/object/6864422826/45a58c66743c3e7d8b5d04cdbceca2c2.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:27.686 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.687 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6868678037","conversationType":1,"userID":"6868678037","groupID":"","showName":"åĸ¨č˛0109","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.691 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.691 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6871533486","conversationType":1,"userID":"6871533486","groupID":"","showName":"æ
å¤","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.696 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.696 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6871953976","conversationType":1,"userID":"6871953976","groupID":"","showName":"z-x","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:27.702 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.703 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6875431039","conversationType":1,"userID":"6875431039","groupID":"","showName":"jason","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.708 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.708 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6875498620","conversationType":1,"userID":"6875498620","groupID":"","showName":"lywang","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.714 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.715 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6878072504","conversationType":1,"userID":"6878072504","groupID":"","showName":"breeze","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.720 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.720 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6880909295","conversationType":1,"userID":"6880909295","groupID":"","showName":"1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:27.725 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.725 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6881072860","conversationType":1,"userID":"6881072860","groupID":"","showName":"Habit","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.729 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.730 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6881124784","conversationType":1,"userID":"6881124784","groupID":"","showName":"feng","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.734 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.734 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6881765283","conversationType":1,"userID":"6881765283","groupID":"","showName":"56456","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.738 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.738 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6891659611","conversationType":1,"userID":"6891659611","groupID":"","showName":"yooome","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.743 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.743 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6892010385","conversationType":1,"userID":"6892010385","groupID":"","showName":"yinwu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:27.748 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.748 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6893239717","conversationType":1,"userID":"6893239717","groupID":"","showName":"å°æĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.752 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.752 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6895745083","conversationType":1,"userID":"6895745083","groupID":"","showName":"éå¤","faceURL":"https://web.rentsoft.cn/api_enterprise/object/6895745083/DALL¡E 2024-05-15 02.16.37 - A logo for 'TrueMeet' featuring a rainbow, chat bubble, and connection elements. Use an animal character to create the logo, incorporating the followi.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.758 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.758 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6897470526","conversationType":1,"userID":"6897470526","groupID":"","showName":"čžåĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.763 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.763 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6897615973","conversationType":1,"userID":"6897615973","groupID":"","showName":"æŠå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.770 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.771 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6900099844","conversationType":1,"userID":"6900099844","groupID":"","showName":"leo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.776 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.776 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6901714518","conversationType":1,"userID":"6901714518","groupID":"","showName":"å","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.782 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.782 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6902718642","conversationType":1,"userID":"6902718642","groupID":"","showName":"xuexi","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.787 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.787 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6904613543","conversationType":1,"userID":"6904613543","groupID":"","showName":"æ°äēē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.791 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.792 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6908614794","conversationType":1,"userID":"6908614794","groupID":"","showName":"xxxxx","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.796 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.796 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6912850481","conversationType":1,"userID":"6912850481","groupID":"","showName":"Noi_q","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.801 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.802 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6913797339","conversationType":1,"userID":"6913797339","groupID":"","showName":"æŠčĩ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.805 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.806 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6919005317","conversationType":1,"userID":"6919005317","groupID":"","showName":"éĒæ´","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.810 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.810 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6920562819","conversationType":1,"userID":"6920562819","groupID":"","showName":"nitzhou","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.814 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.815 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6921798228","conversationType":1,"userID":"6921798228","groupID":"","showName":"hzb.gg","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.820 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.821 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6923431604","conversationType":1,"userID":"6923431604","groupID":"","showName":"AA","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:27.826 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.826 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6924019193","conversationType":1,"userID":"6924019193","groupID":"","showName":"ai","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.835 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.835 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6924749515","conversationType":1,"userID":"6924749515","groupID":"","showName":"yt","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.841 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.841 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6926376717","conversationType":1,"userID":"6926376717","groupID":"","showName":"19","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.847 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.847 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6926553569","conversationType":1,"userID":"6926553569","groupID":"","showName":"15300011990","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.853 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.853 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6928564866","conversationType":1,"userID":"6928564866","groupID":"","showName":"zzz","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:27.857 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.857 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6932367570","conversationType":1,"userID":"6932367570","groupID":"","showName":"yuu","faceURL":"ic_avatar_02","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:27.861 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.865 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6933150383","conversationType":1,"userID":"6933150383","groupID":"","showName":"jeson","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.870 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.870 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6935877903","conversationType":1,"userID":"6935877903","groupID":"","showName":"7åĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.875 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.875 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6937796198","conversationType":1,"userID":"6937796198","groupID":"","showName":"åŋĢåŋĢåŋĢ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.881 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.881 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6937921006","conversationType":1,"userID":"6937921006","groupID":"","showName":"xingbang","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.887 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.887 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6938235669","conversationType":1,"userID":"6938235669","groupID":"","showName":"faker","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.895 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.895 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6945956112","conversationType":1,"userID":"6945956112","groupID":"","showName":"æąæĩˇ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.901 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.901 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6947004749","conversationType":1,"userID":"6947004749","groupID":"","showName":"OpenIM","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.905 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.905 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6947312143","conversationType":1,"userID":"6947312143","groupID":"","showName":"soft","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.911 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.911 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6949156540","conversationType":1,"userID":"6949156540","groupID":"","showName":"snac21","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.915 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.916 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6953173171","conversationType":1,"userID":"6953173171","groupID":"","showName":"hello world","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.920 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.920 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6955315855","conversationType":1,"userID":"6955315855","groupID":"","showName":"Sakura","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.924 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.925 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6955901539","conversationType":1,"userID":"6955901539","groupID":"","showName":"Jason","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.929 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.930 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6957081032","conversationType":1,"userID":"6957081032","groupID":"","showName":"大įš","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.933 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.933 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6960387254","conversationType":1,"userID":"6960387254","groupID":"","showName":"KKKKK","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.938 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.938 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6965419526","conversationType":1,"userID":"6965419526","groupID":"","showName":"E\\van","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.957 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.957 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6966123174","conversationType":1,"userID":"6966123174","groupID":"","showName":"110","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.964 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.964 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6966528341","conversationType":1,"userID":"6966528341","groupID":"","showName":"äšäš","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.969 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.969 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6968350970","conversationType":1,"userID":"6968350970","groupID":"","showName":"Harris","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.974 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.974 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6975622953","conversationType":1,"userID":"6975622953","groupID":"","showName":"789å","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.978 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.978 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6976438725","conversationType":1,"userID":"6976438725","groupID":"","showName":"furt","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.983 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.983 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6977731474","conversationType":1,"userID":"6977731474","groupID":"","showName":"jim001","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:27.988 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.988 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6981901637","conversationType":1,"userID":"6981901637","groupID":"","showName":"xy","faceURL":"https://web.rentsoft.cn/api_enterprise/object/6981901637/ratio.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:27.992 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.992 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6982573684","conversationType":1,"userID":"6982573684","groupID":"","showName":"Duci","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:27.997 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:27.997 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6982682917","conversationType":1,"userID":"6982682917","groupID":"","showName":"åŧæē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.001 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.001 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6985501517","conversationType":1,"userID":"6985501517","groupID":"","showName":"æčŊĻåļ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:28.005 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.005 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6986682620","conversationType":1,"userID":"6986682620","groupID":"","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.010 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.010 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6986974936","conversationType":1,"userID":"6986974936","groupID":"","showName":"yue","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.020 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.020 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6987095163","conversationType":1,"userID":"6987095163","groupID":"","showName":"ZHOU","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.033 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.033 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6995831660","conversationType":1,"userID":"6995831660","groupID":"","showName":"krmnxd","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.043 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.043 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_6996870296","conversationType":1,"userID":"6996870296","groupID":"","showName":"abc","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.051 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.051 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7001714127","conversationType":1,"userID":"7001714127","groupID":"","showName":"runner","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.057 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.057 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7004255923","conversationType":1,"userID":"7004255923","groupID":"","showName":"bb0002","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.063 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.063 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7004902560","conversationType":1,"userID":"7004902560","groupID":"","showName":"é´éŗ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.069 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.069 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7005397943","conversationType":1,"userID":"7005397943","groupID":"","showName":"éŋįå°ŧ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.074 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.075 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7007140315","conversationType":1,"userID":"7007140315","groupID":"","showName":"ãã","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.079 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.080 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7009038964","conversationType":1,"userID":"7009038964","groupID":"","showName":"pcweb","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:28.084 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.085 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7009965934","conversationType":1,"userID":"7009965934","groupID":"","showName":"đâË¡Íāŧ¡ÍË*","faceURL":"https://web.rentsoft.cn/api_enterprise/object/7009965934/image_cropper_1697097350170.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:28.089 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.089 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7015565477","conversationType":1,"userID":"7015565477","groupID":"","showName":"encore","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.096 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.096 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7017747629","conversationType":1,"userID":"7017747629","groupID":"","showName":"aini","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.104 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.104 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7020398872","conversationType":1,"userID":"7020398872","groupID":"","showName":"baymax","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.111 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.111 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7020890145","conversationType":1,"userID":"7020890145","groupID":"","showName":"luke","faceURL":"https://web.rentsoft.cn/api_enterprise/object/7020890145/image_cropper_1709902646740.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.117 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.117 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7024387472","conversationType":1,"userID":"7024387472","groupID":"","showName":"xiaoming","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.123 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.123 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7030017741","conversationType":1,"userID":"7030017741","groupID":"","showName":"čĄåž
","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.127 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.128 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7030029150","conversationType":1,"userID":"7030029150","groupID":"","showName":"dongliming","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.132 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.132 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7030053653","conversationType":1,"userID":"7030053653","groupID":"","showName":"a","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.137 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.137 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7032035559","conversationType":1,"userID":"7032035559","groupID":"","showName":"忍","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:28.142 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.142 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7033422792","conversationType":1,"userID":"7033422792","groupID":"","showName":"24","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.147 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.147 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7033712582","conversationType":1,"userID":"7033712582","groupID":"","showName":"ååå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:28.152 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.153 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7034540317","conversationType":1,"userID":"7034540317","groupID":"","showName":"zhangsan","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.163 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.164 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7036122900","conversationType":1,"userID":"7036122900","groupID":"","showName":"čąåčéēģčļ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.177 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.178 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7043986051","conversationType":1,"userID":"7043986051","groupID":"","showName":"å°åĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:28.189 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.189 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7044261595","conversationType":1,"userID":"7044261595","groupID":"","showName":"mkluo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.195 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.196 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7047604147","conversationType":1,"userID":"7047604147","groupID":"","showName":"xox","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.203 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.203 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7050217790","conversationType":1,"userID":"7050217790","groupID":"","showName":"YCF","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.208 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.208 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7050707914","conversationType":1,"userID":"7050707914","groupID":"","showName":"Sky","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.213 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.213 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7051996866","conversationType":1,"userID":"7051996866","groupID":"","showName":"æĩŠæĨ ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.218 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.218 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7052078762","conversationType":1,"userID":"7052078762","groupID":"","showName":"yefeng","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.223 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.223 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7059211536","conversationType":1,"userID":"7059211536","groupID":"","showName":"åŧ čŋ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.228 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.229 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7059286958","conversationType":1,"userID":"7059286958","groupID":"","showName":"čŋæšäŧ æĨéŖįŦ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.234 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.234 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7059354914","conversationType":1,"userID":"7059354914","groupID":"","showName":"MRQ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:28.238 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.238 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7060900658","conversationType":1,"userID":"7060900658","groupID":"","showName":"vvlzxl","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:28.246 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.246 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7061967847","conversationType":1,"userID":"7061967847","groupID":"","showName":"taodailin","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.251 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.251 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7062785586","conversationType":1,"userID":"7062785586","groupID":"","showName":"Luguo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:28.256 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.256 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7063162002","conversationType":1,"userID":"7063162002","groupID":"","showName":"Alan","faceURL":"ic_avatar_06","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:28.261 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.262 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7065253893","conversationType":1,"userID":"7065253893","groupID":"","showName":"åčąåĩ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.268 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.268 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7066654553","conversationType":1,"userID":"7066654553","groupID":"","showName":"cucucu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.272 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.273 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7075754042","conversationType":1,"userID":"7075754042","groupID":"","showName":"å¯äš123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.278 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.278 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7081432967","conversationType":1,"userID":"7081432967","groupID":"","showName":"weric","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.282 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.282 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7087139357","conversationType":1,"userID":"7087139357","groupID":"","showName":"åį§åŊĻ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:28.287 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.287 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7092131990","conversationType":1,"userID":"7092131990","groupID":"","showName":"Darcy","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.291 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.292 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7095536673","conversationType":1,"userID":"7095536673","groupID":"","showName":"qq","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:28.296 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.296 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7100149191","conversationType":1,"userID":"7100149191","groupID":"","showName":"æįæäŧéš
","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.301 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.301 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7102401732","conversationType":1,"userID":"7102401732","groupID":"","showName":"éŖéąŧ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:28.308 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.308 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7102928206","conversationType":1,"userID":"7102928206","groupID":"","showName":"äēēåå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.314 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.314 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7103047524","conversationType":1,"userID":"7103047524","groupID":"","showName":"aaaa","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.319 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.319 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7104903347","conversationType":1,"userID":"7104903347","groupID":"","showName":"aoaoku","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.324 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.324 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7109035547","conversationType":1,"userID":"7109035547","groupID":"","showName":"čį¨","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.329 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.330 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7113374792","conversationType":1,"userID":"7113374792","groupID":"","showName":"Brave","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.334 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.334 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7113648606","conversationType":1,"userID":"7113648606","groupID":"","showName":"įåå¤å¤Š","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:28.338 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.338 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7115019432","conversationType":1,"userID":"7115019432","groupID":"","showName":"åĻåĻåĻåĻ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.342 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.342 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7121367305","conversationType":1,"userID":"7121367305","groupID":"","showName":"éĸåēĻéš
éš
éš
","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.347 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.347 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [conversation_msg/conversation_msg.go:152] not same {"conversationID": "si_1695766238_7122229636", "server": 0, "local": 0}
+2024-06-24 10:57:28.347 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:293] sync update {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7122229636","conversationType":1,"userID":"7122229636","groupID":"","showName":"11111","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}, "local": {"conversationID":"si_1695766238_7122229636","conversationType":1,"userID":"7122229636","groupID":"","showName":"11111","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"{\"clientMsgID\":\"72d26994e64cd4cd2b5c31e19ac8d610\",\"serverMsgID\":\"2ea8653d8a929527d4f8c27cc76f9a47\",\"createTime\":1718953432951,\"sendTime\":1718953432952,\"sessionType\":1,\"sendID\":\"1695766238\",\"recvID\":\"7122229636\",\"msgFrom\":200,\"contentType\":1201,\"senderPlatformID\":0,\"seq\":1,\"isRead\":true,\"status\":2,\"notificationElem\":{\"detail\":\"{\\\"fromToUserID\\\":{\\\"fromUserID\\\":\\\"7122229636\\\",\\\"toUserID\\\":\\\"1695766238\\\"},\\\"handleMsg\\\":\\\"\\\",\\\"friendVersion\\\":0,\\\"friendVersionID\\\":\\\"\\\"}\"},\"attachedInfoElem\":{\"groupHasReadInfo\":{\"hasReadCount\":0,\"groupMemberCount\":0},\"isPrivateChat\":false,\"burnDuration\":0,\"hasReadTime\":0,\"isEncryption\":false,\"inEncryptStatus\":false}}","latestMsgSendTime":1718953432952,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":1,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:28.351 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[{\"conversationID\":\"si_1695766238_7122229636\",\"conversationType\":1,\"userID\":\"7122229636\",\"groupID\":\"\",\"showName\":\"11111\",\"faceURL\":\"\",\"recvMsgOpt\":0,\"unreadCount\":0,\"groupAtType\":0,\"latestMsg\":\"{\\\"clientMsgID\\\":\\\"72d26994e64cd4cd2b5c31e19ac8d610\\\",\\\"serverMsgID\\\":\\\"2ea8653d8a929527d4f8c27cc76f9a47\\\",\\\"createTime\\\":1718953432951,\\\"sendTime\\\":1718953432952,\\\"sessionType\\\":1,\\\"sendID\\\":\\\"1695766238\\\",\\\"recvID\\\":\\\"7122229636\\\",\\\"msgFrom\\\":200,\\\"contentType\\\":1201,\\\"senderPlatformID\\\":0,\\\"seq\\\":1,\\\"isRead\\\":true,\\\"status\\\":2,\\\"notificationElem\\\":{\\\"detail\\\":\\\"{\\\\\\\"fromToUserID\\\\\\\":{\\\\\\\"fromUserID\\\\\\\":\\\\\\\"7122229636\\\\\\\",\\\\\\\"toUserID\\\\\\\":\\\\\\\"1695766238\\\\\\\"},\\\\\\\"handleMsg\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"friendVersion\\\\\\\":0,\\\\\\\"friendVersionID\\\\\\\":\\\\\\\"\\\\\\\"}\\\"},\\\"attachedInfoElem\\\":{\\\"groupHasReadInfo\\\":{\\\"hasReadCount\\\":0,\\\"groupMemberCount\\\":0},\\\"isPrivateChat\\\":false,\\\"burnDuration\\\":0,\\\"hasReadTime\\\":0,\\\"isEncryption\\\":false,\\\"inEncryptStatus\\\":false}}\",\"latestMsgSendTime\":1718953432952,\"draftText\":\"\",\"draftTextTime\":0,\"isPinned\":false,\"isPrivateChat\":false,\"burnDuration\":0,\"isNotInGroup\":false,\"updateUnreadCountTime\":0,\"attachedInfo\":\"\",\"ex\":\"\",\"maxSeq\":0,\"minSeq\":0,\"hasReadSeq\":0,\"msgDestructTime\":0,\"isMsgDestruct\":false}]"}
+2024-06-24 10:57:28.352 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7135884608","conversationType":1,"userID":"7135884608","groupID":"","showName":"Sergio Lau","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:28.356 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.357 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7138502039","conversationType":1,"userID":"7138502039","groupID":"","showName":"muwue","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.363 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.363 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7140502744","conversationType":1,"userID":"7140502744","groupID":"","showName":"raintrip","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.370 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.370 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7146687293","conversationType":1,"userID":"7146687293","groupID":"","showName":"įŧ¤įēˇ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:28.376 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.376 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7147058580","conversationType":1,"userID":"7147058580","groupID":"","showName":"Brian","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.383 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.384 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7147685522","conversationType":1,"userID":"7147685522","groupID":"","showName":"åå10","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:28.388 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.388 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7147734002","conversationType":1,"userID":"7147734002","groupID":"","showName":"luban","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.393 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.393 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7149811761","conversationType":1,"userID":"7149811761","groupID":"","showName":"nattygui","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.398 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.399 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7151327021","conversationType":1,"userID":"7151327021","groupID":"","showName":"Emotion","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.403 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.403 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7151680921","conversationType":1,"userID":"7151680921","groupID":"","showName":"äŊ įæäšį","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.408 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.408 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7152114427","conversationType":1,"userID":"7152114427","groupID":"","showName":"Tyler","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.412 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.412 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7156262588","conversationType":1,"userID":"7156262588","groupID":"","showName":"夊æ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.416 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.416 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7158015552","conversationType":1,"userID":"7158015552","groupID":"","showName":"į˛é
","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.420 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.420 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7158302033","conversationType":1,"userID":"7158302033","groupID":"","showName":"åļé¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.424 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.424 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7159773067","conversationType":1,"userID":"7159773067","groupID":"","showName":"leon","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.438 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.438 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7160106831","conversationType":1,"userID":"7160106831","groupID":"","showName":"čŖčļ
1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.443 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.443 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7162252799","conversationType":1,"userID":"7162252799","groupID":"","showName":"moozhd","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.449 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.450 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7169497233","conversationType":1,"userID":"7169497233","groupID":"","showName":"shusc234","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.457 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.459 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7169812899","conversationType":1,"userID":"7169812899","groupID":"","showName":"zsg","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.469 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.470 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7175306389","conversationType":1,"userID":"7175306389","groupID":"","showName":"Pink04","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.479 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.480 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7175450468","conversationType":1,"userID":"7175450468","groupID":"","showName":"123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.487 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.487 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7179657685","conversationType":1,"userID":"7179657685","groupID":"","showName":"åš´čŊģįčį´å","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.492 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.493 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7182741443","conversationType":1,"userID":"7182741443","groupID":"","showName":"æåŦæļ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.498 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.498 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7184761084","conversationType":1,"userID":"7184761084","groupID":"","showName":"wufeng","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:28.503 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.503 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7204234695","conversationType":1,"userID":"7204234695","groupID":"","showName":"iii","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:28.509 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.509 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7205422956","conversationType":1,"userID":"7205422956","groupID":"","showName":"zuzu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.514 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.514 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7207090799","conversationType":1,"userID":"7207090799","groupID":"","showName":"Mcdull","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.518 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.518 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7207940426","conversationType":1,"userID":"7207940426","groupID":"","showName":"åĨŊæą","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.521 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.522 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7213865012","conversationType":1,"userID":"7213865012","groupID":"","showName":"hayden","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.526 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.526 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7218786842","conversationType":1,"userID":"7218786842","groupID":"","showName":"leo1124","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.533 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.533 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7218943329","conversationType":1,"userID":"7218943329","groupID":"","showName":"leslie","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.538 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.538 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7219300529","conversationType":1,"userID":"7219300529","groupID":"","showName":"kumi","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.544 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.545 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7221656928","conversationType":1,"userID":"7221656928","groupID":"","showName":"ty","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.549 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.550 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7222221088","conversationType":1,"userID":"7222221088","groupID":"","showName":"123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.554 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.554 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7225662708","conversationType":1,"userID":"7225662708","groupID":"","showName":"aider","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.559 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.559 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7226539074","conversationType":1,"userID":"7226539074","groupID":"","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:28.563 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.563 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7233905359","conversationType":1,"userID":"7233905359","groupID":"","showName":"cccc","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:28.568 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.568 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7235831415","conversationType":1,"userID":"7235831415","groupID":"","showName":"T.M","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.572 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.572 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7236965387","conversationType":1,"userID":"7236965387","groupID":"","showName":"å","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.576 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.576 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7238628207","conversationType":1,"userID":"7238628207","groupID":"","showName":"į§įĸą","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:28.580 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.581 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7240565210","conversationType":1,"userID":"7240565210","groupID":"","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.584 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.585 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7244572239","conversationType":1,"userID":"7244572239","groupID":"","showName":"åŋäŊŋæšå°å","faceURL":"https://web.rentsoft.cn/api_enterprise/object/7244572239/1710414154073_mmexport1686620696790.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.588 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.588 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7256209079","conversationType":1,"userID":"7256209079","groupID":"","showName":"illusionriver","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.593 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.593 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7259365264","conversationType":1,"userID":"7259365264","groupID":"","showName":"hechoujie","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.598 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.598 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7260321633","conversationType":1,"userID":"7260321633","groupID":"","showName":"mayhong","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:28.604 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.604 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7261912754","conversationType":1,"userID":"7261912754","groupID":"","showName":"mzutj","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.609 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.610 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7262156914","conversationType":1,"userID":"7262156914","groupID":"","showName":"kkk","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:28.615 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.615 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7263485679","conversationType":1,"userID":"7263485679","groupID":"","showName":"yangchunping","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.620 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.620 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7264586802","conversationType":1,"userID":"7264586802","groupID":"","showName":"åį","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:28.625 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.625 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7265842354","conversationType":1,"userID":"7265842354","groupID":"","showName":"caicai","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.629 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.629 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7268355749","conversationType":1,"userID":"7268355749","groupID":"","showName":"éŊ叿ĩĒå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.633 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.634 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7269047472","conversationType":1,"userID":"7269047472","groupID":"","showName":"qwee","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.638 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.638 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7271132643","conversationType":1,"userID":"7271132643","groupID":"","showName":"Hello","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.643 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.643 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7272954153","conversationType":1,"userID":"7272954153","groupID":"","showName":"莞įŊŽåå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.647 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.647 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7275425646","conversationType":1,"userID":"7275425646","groupID":"","showName":"viv","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.652 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.652 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7275557315","conversationType":1,"userID":"7275557315","groupID":"","showName":"Shawn","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.657 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.658 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7276122859","conversationType":1,"userID":"7276122859","groupID":"","showName":"YEPIN","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.666 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.666 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7276333667","conversationType":1,"userID":"7276333667","groupID":"","showName":"éæ.æ˛Ŋé
","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.672 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.672 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7276945407","conversationType":1,"userID":"7276945407","groupID":"","showName":"Conan","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.677 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.678 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7277603401","conversationType":1,"userID":"7277603401","groupID":"","showName":"æĒæĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:28.683 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.684 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7283174825","conversationType":1,"userID":"7283174825","groupID":"","showName":"Summer","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.688 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.688 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7283356015","conversationType":1,"userID":"7283356015","groupID":"","showName":"Bill.H","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.694 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.694 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7285011959","conversationType":1,"userID":"7285011959","groupID":"","showName":"čąæ č¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.700 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.701 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7288601605","conversationType":1,"userID":"7288601605","groupID":"","showName":"æĩč¯123","faceURL":"https://web.rentsoft.cn/api_enterprise/object/7288601605/1708227568242png","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.706 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.706 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7291159326","conversationType":1,"userID":"7291159326","groupID":"","showName":"xiguzai123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.711 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.711 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7291327778","conversationType":1,"userID":"7291327778","groupID":"","showName":"6699","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.716 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.716 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7291693120","conversationType":1,"userID":"7291693120","groupID":"","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.721 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.722 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7295332773","conversationType":1,"userID":"7295332773","groupID":"","showName":"s","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:28.728 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.729 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7296742515","conversationType":1,"userID":"7296742515","groupID":"","showName":"čĩĩæč","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:28.736 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.737 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7297734806","conversationType":1,"userID":"7297734806","groupID":"","showName":"xiao ye","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:28.742 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.743 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7298268529","conversationType":1,"userID":"7298268529","groupID":"","showName":"openim733","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.747 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.748 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7302196202","conversationType":1,"userID":"7302196202","groupID":"","showName":"hello","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.752 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.752 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7306283423","conversationType":1,"userID":"7306283423","groupID":"","showName":"፿ˇ101","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.757 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.757 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7307615373","conversationType":1,"userID":"7307615373","groupID":"","showName":"čļæŗå¨čĄŖ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.762 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.762 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7310569328","conversationType":1,"userID":"7310569328","groupID":"","showName":"Ggg","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.768 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.768 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7315198048","conversationType":1,"userID":"7315198048","groupID":"","showName":"Simon","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.772 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.772 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7319360351","conversationType":1,"userID":"7319360351","groupID":"","showName":"pawn","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.777 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.777 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7319611102","conversationType":1,"userID":"7319611102","groupID":"","showName":"wmouren","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.782 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.782 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7319695659","conversationType":1,"userID":"7319695659","groupID":"","showName":"å°ä¸į大åĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.789 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.789 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7320145013","conversationType":1,"userID":"7320145013","groupID":"","showName":"kiwi","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.802 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.803 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7325441690","conversationType":1,"userID":"7325441690","groupID":"","showName":"å°ååĻ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.815 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.817 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7327635605","conversationType":1,"userID":"7327635605","groupID":"","showName":"æĩč¯å°å§å§","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.824 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.825 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7332567178","conversationType":1,"userID":"7332567178","groupID":"","showName":"äŋĄåˇ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:28.832 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.832 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7335137190","conversationType":1,"userID":"7335137190","groupID":"","showName":"asdasd","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.838 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.838 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7337859180","conversationType":1,"userID":"7337859180","groupID":"","showName":"tang","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.845 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.846 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7342127502","conversationType":1,"userID":"7342127502","groupID":"","showName":"yinzhe","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.851 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.851 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7343731800","conversationType":1,"userID":"7343731800","groupID":"","showName":"åŗé","faceURL":"https://web.rentsoft.cn/api_enterprise/object/7343731800/垎äŋĄæĒåž_20240308173203.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.855 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.855 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7345483146","conversationType":1,"userID":"7345483146","groupID":"","showName":"im","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:28.859 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.860 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7347440370","conversationType":1,"userID":"7347440370","groupID":"","showName":"åļįļ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.865 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.865 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7348642114","conversationType":1,"userID":"7348642114","groupID":"","showName":"Freeman","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:28.871 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.871 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7351077360","conversationType":1,"userID":"7351077360","groupID":"","showName":"ååå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.878 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.879 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7351810180","conversationType":1,"userID":"7351810180","groupID":"","showName":"eva1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.885 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.885 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7353212978","conversationType":1,"userID":"7353212978","groupID":"","showName":"åēˇåĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.892 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.894 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7357465056","conversationType":1,"userID":"7357465056","groupID":"","showName":"åŧå°ä¸æčą","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.906 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.907 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7360686805","conversationType":1,"userID":"7360686805","groupID":"","showName":"jole","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.915 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.915 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7363109030","conversationType":1,"userID":"7363109030","groupID":"","showName":"fgv","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.921 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.922 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7363253608","conversationType":1,"userID":"7363253608","groupID":"","showName":"yapero","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.928 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.929 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7363948441","conversationType":1,"userID":"7363948441","groupID":"","showName":"å°sir","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.933 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.934 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7364897573","conversationType":1,"userID":"7364897573","groupID":"","showName":"dorisoy","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.938 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.938 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7366211705","conversationType":1,"userID":"7366211705","groupID":"","showName":"vvv","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.944 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.945 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7368376836","conversationType":1,"userID":"7368376836","groupID":"","showName":"xy","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.950 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.950 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7372422050","conversationType":1,"userID":"7372422050","groupID":"","showName":"openIMUser","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:28.956 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.956 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7376958320","conversationType":1,"userID":"7376958320","groupID":"","showName":"å˛å˛å˛","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:28.963 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.963 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7377769800","conversationType":1,"userID":"7377769800","groupID":"","showName":"LogoRun","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.969 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.969 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7378315752","conversationType":1,"userID":"7378315752","groupID":"","showName":"yb","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:28.975 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.975 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7380309120","conversationType":1,"userID":"7380309120","groupID":"","showName":"fei","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.980 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.980 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7383684265","conversationType":1,"userID":"7383684265","groupID":"","showName":"Nora","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.984 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.984 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7386489423","conversationType":1,"userID":"7386489423","groupID":"","showName":"å¨éŧé","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.989 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.989 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7387576608","conversationType":1,"userID":"7387576608","groupID":"","showName":"大æĸĻä¸é","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.994 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.994 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7387723009","conversationType":1,"userID":"7387723009","groupID":"","showName":"zmg","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:28.998 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:28.998 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7388505150","conversationType":1,"userID":"7388505150","groupID":"","showName":"ijijni","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.003 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.003 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7390780798","conversationType":1,"userID":"7390780798","groupID":"","showName":"æ¸
éŖ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.007 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.007 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7390960328","conversationType":1,"userID":"7390960328","groupID":"","showName":"tom","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.011 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.011 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7401184711","conversationType":1,"userID":"7401184711","groupID":"","showName":"å°é
忝éæį","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:29.017 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.017 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7401733669","conversationType":1,"userID":"7401733669","groupID":"","showName":"dooby","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.023 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.023 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7405212428","conversationType":1,"userID":"7405212428","groupID":"","showName":"UndGott","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.029 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.029 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7410291177","conversationType":1,"userID":"7410291177","groupID":"","showName":"åĨŊ大åŋ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.036 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.036 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7410632813","conversationType":1,"userID":"7410632813","groupID":"","showName":"13670914701","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:29.041 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.041 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7412034038","conversationType":1,"userID":"7412034038","groupID":"","showName":"yyyzzzz","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.046 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.046 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7412111847","conversationType":1,"userID":"7412111847","groupID":"","showName":"Hollis","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.051 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.052 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7413274712","conversationType":1,"userID":"7413274712","groupID":"","showName":"aaaa","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.056 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.056 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7417541042","conversationType":1,"userID":"7417541042","groupID":"","showName":"æĻå°","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.061 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.061 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7420437735","conversationType":1,"userID":"7420437735","groupID":"","showName":"jesen","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.065 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.065 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7421821939","conversationType":1,"userID":"7421821939","groupID":"","showName":"æįŋ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.070 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.070 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7421889399","conversationType":1,"userID":"7421889399","groupID":"","showName":"Jincheng","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:29.076 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.079 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7428005405","conversationType":1,"userID":"7428005405","groupID":"","showName":"xyz","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.090 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.091 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7434856012","conversationType":1,"userID":"7434856012","groupID":"","showName":"åįŦåˇ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.100 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.101 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7435508463","conversationType":1,"userID":"7435508463","groupID":"","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.108 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.109 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7436833627","conversationType":1,"userID":"7436833627","groupID":"","showName":"åĻå¨åĻ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.116 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.116 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7437040692","conversationType":1,"userID":"7437040692","groupID":"","showName":"Yyy","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.123 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.123 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7439021681","conversationType":1,"userID":"7439021681","groupID":"","showName":"įį","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.127 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.127 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7439714986","conversationType":1,"userID":"7439714986","groupID":"","showName":"äēæįĢį°","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.132 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.132 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7440672921","conversationType":1,"userID":"7440672921","groupID":"","showName":"themass","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.137 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.138 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7451137864","conversationType":1,"userID":"7451137864","groupID":"","showName":"lln","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.142 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.142 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7453584800","conversationType":1,"userID":"7453584800","groupID":"","showName":"æĨįå§æ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.147 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.147 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7455859973","conversationType":1,"userID":"7455859973","groupID":"","showName":"vijay","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.152 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.152 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7457097377","conversationType":1,"userID":"7457097377","groupID":"","showName":"z","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.157 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.157 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7457544036","conversationType":1,"userID":"7457544036","groupID":"","showName":"spanull","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.161 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.162 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7460559805","conversationType":1,"userID":"7460559805","groupID":"","showName":"éįŗ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.166 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.166 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7464954417","conversationType":1,"userID":"7464954417","groupID":"","showName":"test0018473","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.172 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.172 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7466050106","conversationType":1,"userID":"7466050106","groupID":"","showName":"1215","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:29.177 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.177 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7471550680","conversationType":1,"userID":"7471550680","groupID":"","showName":"å°åå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.186 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.186 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7472541978","conversationType":1,"userID":"7472541978","groupID":"","showName":"echo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.191 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.191 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7475442514","conversationType":1,"userID":"7475442514","groupID":"","showName":"蝿ĸ
","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.196 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.196 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7482603409","conversationType":1,"userID":"7482603409","groupID":"","showName":"whilewon","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.200 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.201 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7493990096","conversationType":1,"userID":"7493990096","groupID":"","showName":"niko","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:29.205 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.205 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7497299557","conversationType":1,"userID":"7497299557","groupID":"","showName":"åąąįĒ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.209 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.210 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7497605401","conversationType":1,"userID":"7497605401","groupID":"","showName":"Jane1","faceURL":"https://web.rentsoft.cn/api_enterprise/object/7497605401/åąåšæĒåž 2024-05-15 110821.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.214 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.214 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7497646189","conversationType":1,"userID":"7497646189","groupID":"","showName":"186","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.219 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.219 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7498515000","conversationType":1,"userID":"7498515000","groupID":"","showName":"Young","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.225 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.225 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7498542248","conversationType":1,"userID":"7498542248","groupID":"","showName":"i","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:29.230 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.230 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7498920587","conversationType":1,"userID":"7498920587","groupID":"","showName":"andthink123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:29.238 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.238 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7503981720","conversationType":1,"userID":"7503981720","groupID":"","showName":"6","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.244 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.244 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7505224623","conversationType":1,"userID":"7505224623","groupID":"","showName":"kf","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.250 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.251 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7507197097","conversationType":1,"userID":"7507197097","groupID":"","showName":"what","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.256 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.257 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7516710182","conversationType":1,"userID":"7516710182","groupID":"","showName":"Youth","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.261 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.261 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7520656744","conversationType":1,"userID":"7520656744","groupID":"","showName":"0","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.267 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.268 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7522269845","conversationType":1,"userID":"7522269845","groupID":"","showName":"dot","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.272 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.272 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7523266932","conversationType":1,"userID":"7523266932","groupID":"","showName":"cmw","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.277 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.277 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7526687004","conversationType":1,"userID":"7526687004","groupID":"","showName":"åŽĸæ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.282 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.283 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7528402713","conversationType":1,"userID":"7528402713","groupID":"","showName":"WWNNL","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.287 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.287 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7529372532","conversationType":1,"userID":"7529372532","groupID":"","showName":"åæåé","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.292 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.292 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7530200728","conversationType":1,"userID":"7530200728","groupID":"","showName":"deem","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.296 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.296 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7531814579","conversationType":1,"userID":"7531814579","groupID":"","showName":"ææ¯åĨŊäēē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.303 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.303 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7534564044","conversationType":1,"userID":"7534564044","groupID":"","showName":"test001","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.310 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.310 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7537628670","conversationType":1,"userID":"7537628670","groupID":"","showName":"čĨæ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.317 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.317 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7537715718","conversationType":1,"userID":"7537715718","groupID":"","showName":"å¯įą","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.322 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.322 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7537716241","conversationType":1,"userID":"7537716241","groupID":"","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.327 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.327 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7540355701","conversationType":1,"userID":"7540355701","groupID":"","showName":"gggg","faceURL":"https://web.rentsoft.cn/api_enterprise/object/7540355701/private/var/mobile/Containers/Data/Application/66111B4C-155C-4033-872D-7C0486D72283/tmp/image_cropper_A6D2BF20-9FEC-44B0-8B12-780E3213294C-8280-000002D8A34E59CA.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:29.333 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.333 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7542365341","conversationType":1,"userID":"7542365341","groupID":"","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.338 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.338 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7546299014","conversationType":1,"userID":"7546299014","groupID":"","showName":"sshshshshs","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.342 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.342 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7546355222","conversationType":1,"userID":"7546355222","groupID":"","showName":"į","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.348 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.348 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7547312758","conversationType":1,"userID":"7547312758","groupID":"","showName":"danying","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:29.352 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.353 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7548971598","conversationType":1,"userID":"7548971598","groupID":"","showName":"peng","faceURL":"https://web.rentsoft.cn/api_enterprise/object/7548971598/image_cropper_1712467789049.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.358 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.358 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7548985362","conversationType":1,"userID":"7548985362","groupID":"","showName":"ppppphbh","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.364 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.365 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7551761509","conversationType":1,"userID":"7551761509","groupID":"","showName":"9497","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.372 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.372 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7552860065","conversationType":1,"userID":"7552860065","groupID":"","showName":"æ¨æ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.379 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.380 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7552997387","conversationType":1,"userID":"7552997387","groupID":"","showName":"lcj","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:29.384 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.385 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7563312911","conversationType":1,"userID":"7563312911","groupID":"","showName":"klen","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.389 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.390 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7564012880","conversationType":1,"userID":"7564012880","groupID":"","showName":"5249","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:29.395 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.395 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7567294877","conversationType":1,"userID":"7567294877","groupID":"","showName":"sheng","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.400 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.400 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7568242587","conversationType":1,"userID":"7568242587","groupID":"","showName":"yi7u","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.405 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.405 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7569247517","conversationType":1,"userID":"7569247517","groupID":"","showName":"Hhh","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.409 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.409 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7580742612","conversationType":1,"userID":"7580742612","groupID":"","showName":"yuiye","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.413 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.414 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7583295966","conversationType":1,"userID":"7583295966","groupID":"","showName":"zkt","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.419 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.419 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7586062692","conversationType":1,"userID":"7586062692","groupID":"","showName":"ååå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.424 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.425 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7587745030","conversationType":1,"userID":"7587745030","groupID":"","showName":"éčĄŋ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.433 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.433 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7588612675","conversationType":1,"userID":"7588612675","groupID":"","showName":"į§į§","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.442 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.443 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7589005247","conversationType":1,"userID":"7589005247","groupID":"","showName":"alpacino","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.455 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.457 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7591217919","conversationType":1,"userID":"7591217919","groupID":"","showName":"Zahin","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.466 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.466 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7592899422","conversationType":1,"userID":"7592899422","groupID":"","showName":"å°éŦŧ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.474 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.474 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7594017872","conversationType":1,"userID":"7594017872","groupID":"","showName":"2211","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.480 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.481 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7595717000","conversationType":1,"userID":"7595717000","groupID":"","showName":"zuifufengxue","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:29.487 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.488 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7595722240","conversationType":1,"userID":"7595722240","groupID":"","showName":"ben","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.492 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.493 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7597673862","conversationType":1,"userID":"7597673862","groupID":"","showName":"éŋå
¨","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.498 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.498 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7597689214","conversationType":1,"userID":"7597689214","groupID":"","showName":"æč§","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.504 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.505 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7598489536","conversationType":1,"userID":"7598489536","groupID":"","showName":"æį","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.512 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.512 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7598799824","conversationType":1,"userID":"7598799824","groupID":"","showName":"jiajia","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.521 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.521 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7601958347","conversationType":1,"userID":"7601958347","groupID":"","showName":"1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.531 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.532 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7605980080","conversationType":1,"userID":"7605980080","groupID":"","showName":"å¤","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.542 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.543 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7608360478","conversationType":1,"userID":"7608360478","groupID":"","showName":"w","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.550 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.550 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7609581785","conversationType":1,"userID":"7609581785","groupID":"","showName":"į¯įĢéį","faceURL":"https://web.rentsoft.cn/api_enterprise/object/7609581785/qq.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.556 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.556 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7614636349","conversationType":1,"userID":"7614636349","groupID":"","showName":"haha","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.562 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.563 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7614708020","conversationType":1,"userID":"7614708020","groupID":"","showName":"Darcy4537","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.568 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.568 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7616246303","conversationType":1,"userID":"7616246303","groupID":"","showName":"éæŗäēē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.573 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.573 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7617553749","conversationType":1,"userID":"7617553749","groupID":"","showName":"wusm","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.577 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.578 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7618202429","conversationType":1,"userID":"7618202429","groupID":"","showName":"123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.582 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.582 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7619603154","conversationType":1,"userID":"7619603154","groupID":"","showName":"Will","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.597 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.597 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7620665389","conversationType":1,"userID":"7620665389","groupID":"","showName":"Robert","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.605 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.606 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7622429074","conversationType":1,"userID":"7622429074","groupID":"","showName":"carlos","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.620 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.620 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7623650329","conversationType":1,"userID":"7623650329","groupID":"","showName":"guoshaobao","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.628 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.629 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7625288814","conversationType":1,"userID":"7625288814","groupID":"","showName":"gaga","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:29.635 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.635 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7626760720","conversationType":1,"userID":"7626760720","groupID":"","showName":"123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.641 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.641 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7626981398","conversationType":1,"userID":"7626981398","groupID":"","showName":"z","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:29.647 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.647 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7638046648","conversationType":1,"userID":"7638046648","groupID":"","showName":"stelle","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.652 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.652 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7638679939","conversationType":1,"userID":"7638679939","groupID":"","showName":"huey","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.657 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.657 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7640096597","conversationType":1,"userID":"7640096597","groupID":"","showName":"įŊéŠŦ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.662 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.662 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7643653997","conversationType":1,"userID":"7643653997","groupID":"","showName":"åĨæžįå°éžčž","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.667 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.667 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7644290746","conversationType":1,"userID":"7644290746","groupID":"","showName":"į§Ļå¸
","faceURL":"https://web.rentsoft.cn/api_enterprise/object/7644290746/image_cropper_1700186280345.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:29.672 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.672 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7645589134","conversationType":1,"userID":"7645589134","groupID":"","showName":"Holiday","faceURL":"https://web.rentsoft.cn/api_enterprise/object/7645589134/1714270067250jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.677 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.677 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7646760743","conversationType":1,"userID":"7646760743","groupID":"","showName":"Ray","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.683 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.684 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7650768661","conversationType":1,"userID":"7650768661","groupID":"","showName":"hsb","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.690 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.690 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7651888817","conversationType":1,"userID":"7651888817","groupID":"","showName":"11111","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.696 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.697 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7652778337","conversationType":1,"userID":"7652778337","groupID":"","showName":"bulita","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.702 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.702 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7656755258","conversationType":1,"userID":"7656755258","groupID":"","showName":"Jason","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.706 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.707 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7657717068","conversationType":1,"userID":"7657717068","groupID":"","showName":"įå¨","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.711 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.711 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7663168591","conversationType":1,"userID":"7663168591","groupID":"","showName":"大æĩˇ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.715 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.716 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7664966167","conversationType":1,"userID":"7664966167","groupID":"","showName":"įŊå¤Šä¸æå¤įéģ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:29.720 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.720 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7666852933","conversationType":1,"userID":"7666852933","groupID":"","showName":"123122","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.724 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.725 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7668827828","conversationType":1,"userID":"7668827828","groupID":"","showName":"I'm a fan","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:29.730 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.730 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7671876973","conversationType":1,"userID":"7671876973","groupID":"","showName":"æēäēæēäē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.735 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.735 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7672451658","conversationType":1,"userID":"7672451658","groupID":"","showName":"čĄčĩ°įįĩéŖæ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.740 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.740 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7672563564","conversationType":1,"userID":"7672563564","groupID":"","showName":"xixi","faceURL":"https://web.rentsoft.cn/api_enterprise/object/7672563564/86ad8ec8088443769b181f46cbee52de.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.746 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.747 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7673707661","conversationType":1,"userID":"7673707661","groupID":"","showName":"čĨčĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.752 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.753 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7674566777","conversationType":1,"userID":"7674566777","groupID":"","showName":"wgxweb","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.758 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.759 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7681112296","conversationType":1,"userID":"7681112296","groupID":"","showName":"ricardo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.764 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.765 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7681600518","conversationType":1,"userID":"7681600518","groupID":"","showName":"ddd","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.768 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.769 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7683585131","conversationType":1,"userID":"7683585131","groupID":"","showName":"vam","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.773 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.773 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7686286348","conversationType":1,"userID":"7686286348","groupID":"","showName":"qwe","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.777 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.777 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7687164838","conversationType":1,"userID":"7687164838","groupID":"","showName":"brooks","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.782 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.783 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7687371321","conversationType":1,"userID":"7687371321","groupID":"","showName":"sunnysteam","faceURL":"https://web.rentsoft.cn/api_enterprise/object/7687371321/image.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.788 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.788 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7687657759","conversationType":1,"userID":"7687657759","groupID":"","showName":"liu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:29.794 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.794 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7688471458","conversationType":1,"userID":"7688471458","groupID":"","showName":"AMOG","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:29.798 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.798 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7690669440","conversationType":1,"userID":"7690669440","groupID":"","showName":"wukd","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.803 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.803 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7690891476","conversationType":1,"userID":"7690891476","groupID":"","showName":"gzy666","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.807 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.807 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7690907701","conversationType":1,"userID":"7690907701","groupID":"","showName":"ååĻåĻååĻåĻ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.812 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.812 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7692607035","conversationType":1,"userID":"7692607035","groupID":"","showName":"įĨčĄč
","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.819 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.819 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7693122919","conversationType":1,"userID":"7693122919","groupID":"","showName":"æå¤´éŖåš","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.829 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.831 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7695096009","conversationType":1,"userID":"7695096009","groupID":"","showName":"åŽæ","faceURL":"https://web.rentsoft.cn/api_enterprise/object/7695096009/1711431501677png","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.842 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.843 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7700927556","conversationType":1,"userID":"7700927556","groupID":"","showName":"åĻ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.852 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.852 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7705431741","conversationType":1,"userID":"7705431741","groupID":"","showName":"yun","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:29.858 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.859 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7706735929","conversationType":1,"userID":"7706735929","groupID":"","showName":"å°äģ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.864 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.864 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7706881098","conversationType":1,"userID":"7706881098","groupID":"","showName":"yafeng","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.869 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.870 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7713778154","conversationType":1,"userID":"7713778154","groupID":"","showName":"zy","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.876 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.876 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7718471566","conversationType":1,"userID":"7718471566","groupID":"","showName":"å°įąŗ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:29.880 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.881 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7720758526","conversationType":1,"userID":"7720758526","groupID":"","showName":"simon1121","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.885 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.886 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7723567114","conversationType":1,"userID":"7723567114","groupID":"","showName":"apeng","faceURL":"ic_avatar_05","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:29.890 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.890 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7724890013","conversationType":1,"userID":"7724890013","groupID":"","showName":"msbolang","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.898 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.898 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7725196248","conversationType":1,"userID":"7725196248","groupID":"","showName":"Sam","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.904 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.904 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7735663030","conversationType":1,"userID":"7735663030","groupID":"","showName":"åå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.910 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.911 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7735805334","conversationType":1,"userID":"7735805334","groupID":"","showName":"jst4me","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.916 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.916 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7738761244","conversationType":1,"userID":"7738761244","groupID":"","showName":"é¸ŋčžž","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.921 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.923 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7739798150","conversationType":1,"userID":"7739798150","groupID":"","showName":"æå¤į","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.929 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.930 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7740091536","conversationType":1,"userID":"7740091536","groupID":"","showName":"panguclick","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.936 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.937 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7742247612","conversationType":1,"userID":"7742247612","groupID":"","showName":"xiaok","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:29.941 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.941 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7743491557","conversationType":1,"userID":"7743491557","groupID":"","showName":"éļ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.946 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.947 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7743820010","conversationType":1,"userID":"7743820010","groupID":"","showName":"å´į123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.952 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.952 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7744500881","conversationType":1,"userID":"7744500881","groupID":"","showName":"wx","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.957 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.957 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7746006896","conversationType":1,"userID":"7746006896","groupID":"","showName":"ldt","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.962 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.963 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7748421044","conversationType":1,"userID":"7748421044","groupID":"","showName":"䏿ĩˇįįŽĄåą","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:29.971 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.971 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7752672529","conversationType":1,"userID":"7752672529","groupID":"","showName":"Goodie","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.976 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.976 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7758124650","conversationType":1,"userID":"7758124650","groupID":"","showName":"C","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.981 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.981 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7760208560","conversationType":1,"userID":"7760208560","groupID":"","showName":"éåŊĻ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.986 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.986 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7763239948","conversationType":1,"userID":"7763239948","groupID":"","showName":"Ven","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.991 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.991 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7772289742","conversationType":1,"userID":"7772289742","groupID":"","showName":"åįļ","faceURL":"https://web.rentsoft.cn/api_enterprise/object/7772289742/u=256816879,771155532&fm=253&fmt=auto&app=120&f=JPEG.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:29.996 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:29.996 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7773809772","conversationType":1,"userID":"7773809772","groupID":"","showName":"å
å
","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.002 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.002 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7775655960","conversationType":1,"userID":"7775655960","groupID":"","showName":"፿ˇ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.006 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.007 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7782213970","conversationType":1,"userID":"7782213970","groupID":"","showName":"xzc","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.012 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.012 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7788742199","conversationType":1,"userID":"7788742199","groupID":"","showName":"Caixinfeng","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:30.017 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.017 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7794187489","conversationType":1,"userID":"7794187489","groupID":"","showName":"åŧ ä¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.023 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.023 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7795360622","conversationType":1,"userID":"7795360622","groupID":"","showName":"qeerdd","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.030 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.031 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7802400332","conversationType":1,"userID":"7802400332","groupID":"","showName":"įŦ¨įĢ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.037 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.037 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7804901425","conversationType":1,"userID":"7804901425","groupID":"","showName":"a7373773","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.044 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.044 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7805584149","conversationType":1,"userID":"7805584149","groupID":"","showName":"Jhonor","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.049 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.050 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7819384782","conversationType":1,"userID":"7819384782","groupID":"","showName":"yun666","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:30.054 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.055 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7820542710","conversationType":1,"userID":"7820542710","groupID":"","showName":"äŧ大įįĨåŊ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:30.060 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.060 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7821370665","conversationType":1,"userID":"7821370665","groupID":"","showName":"éč¸éĒ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.064 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.064 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7821811338","conversationType":1,"userID":"7821811338","groupID":"","showName":"æåŋč§æ§","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.069 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.070 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7821875317","conversationType":1,"userID":"7821875317","groupID":"","showName":"wongwen","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.074 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.075 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7827297461","conversationType":1,"userID":"7827297461","groupID":"","showName":"Unimsc","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.080 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.080 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7828193903","conversationType":1,"userID":"7828193903","groupID":"","showName":"ååå","faceURL":"https://web.rentsoft.cn/api_enterprise/object/7828193903/21.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.085 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.085 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7829456745","conversationType":1,"userID":"7829456745","groupID":"","showName":"åŋĩä¸ļ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.092 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.092 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7831969873","conversationType":1,"userID":"7831969873","groupID":"","showName":"aaapei","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:30.099 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.099 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7832427972","conversationType":1,"userID":"7832427972","groupID":"","showName":"įŽč","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.104 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.105 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7835799312","conversationType":1,"userID":"7835799312","groupID":"","showName":"kiss","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.109 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.109 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7838322353","conversationType":1,"userID":"7838322353","groupID":"","showName":"å°čž","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.114 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.114 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7839142209","conversationType":1,"userID":"7839142209","groupID":"","showName":"xx","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.119 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.120 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7841293205","conversationType":1,"userID":"7841293205","groupID":"","showName":"tutuba","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.127 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.129 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7845216380","conversationType":1,"userID":"7845216380","groupID":"","showName":"äŊįŗč¯åĸ¨åĸ¨","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.141 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.142 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7847107135","conversationType":1,"userID":"7847107135","groupID":"","showName":"mao","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.153 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.154 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7848167680","conversationType":1,"userID":"7848167680","groupID":"","showName":"web-open","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.161 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.161 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7848975164","conversationType":1,"userID":"7848975164","groupID":"","showName":"duyuxuan","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.167 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.168 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7849831301","conversationType":1,"userID":"7849831301","groupID":"","showName":"003","faceURL":"http://14.29.213.197:50002/object/7849831301/flutter_android_qrcode.png","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:30.176 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.176 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7849988024","conversationType":1,"userID":"7849988024","groupID":"","showName":"11111","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.183 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.184 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7852754787","conversationType":1,"userID":"7852754787","groupID":"","showName":"Set","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.190 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.190 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7853258354","conversationType":1,"userID":"7853258354","groupID":"","showName":"æĩˇįēŗįžåˇ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.196 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.197 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7853514710","conversationType":1,"userID":"7853514710","groupID":"","showName":"lcn","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.202 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.202 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7854235526","conversationType":1,"userID":"7854235526","groupID":"","showName":"č","faceURL":"ic_avatar_06","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.208 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.208 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7854288559","conversationType":1,"userID":"7854288559","groupID":"","showName":"test1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.214 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.215 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7856252983","conversationType":1,"userID":"7856252983","groupID":"","showName":"Ayao","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.219 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.219 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7856301343","conversationType":1,"userID":"7856301343","groupID":"","showName":"é¨į°","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.225 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.226 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7859279941","conversationType":1,"userID":"7859279941","groupID":"","showName":"nika","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.230 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.231 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7863511599","conversationType":1,"userID":"7863511599","groupID":"","showName":"we123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.235 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.236 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7863641493","conversationType":1,"userID":"7863641493","groupID":"","showName":"cary","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.241 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.242 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7864246599","conversationType":1,"userID":"7864246599","groupID":"","showName":"abelwei123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.251 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.252 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7864780164","conversationType":1,"userID":"7864780164","groupID":"","showName":"大įåĢææĨåˇĄåąą","faceURL":"https://web.rentsoft.cn/api_enterprise/object/7864780164/image_cropper_1711359857083.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.263 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.264 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7864796432","conversationType":1,"userID":"7864796432","groupID":"","showName":"æĨåŖéžæĨ","faceURL":"ic_avatar_01","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:30.270 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.271 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7865020191","conversationType":1,"userID":"7865020191","groupID":"","showName":"CVIP","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.277 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.277 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7867796641","conversationType":1,"userID":"7867796641","groupID":"","showName":"Yakult","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.282 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.283 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7872751431","conversationType":1,"userID":"7872751431","groupID":"","showName":"åŧ æ˛ģčļ
","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:30.288 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.288 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7873990031","conversationType":1,"userID":"7873990031","groupID":"","showName":"zzk","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:30.294 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.294 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7881930526","conversationType":1,"userID":"7881930526","groupID":"","showName":"flyshines","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.300 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.300 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7882581966","conversationType":1,"userID":"7882581966","groupID":"","showName":"333","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.305 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.305 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7882873434","conversationType":1,"userID":"7882873434","groupID":"","showName":"åč§","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.309 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.309 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7883407249","conversationType":1,"userID":"7883407249","groupID":"","showName":"夿","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.313 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.313 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7883425769","conversationType":1,"userID":"7883425769","groupID":"","showName":"åŽæš","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.321 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.321 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7884892250","conversationType":1,"userID":"7884892250","groupID":"","showName":"12su","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:30.326 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.326 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7885995213","conversationType":1,"userID":"7885995213","groupID":"","showName":"åŽ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.332 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.332 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7886158239","conversationType":1,"userID":"7886158239","groupID":"","showName":"Dian","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.338 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.338 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7894596798","conversationType":1,"userID":"7894596798","groupID":"","showName":"SKAIXX","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.342 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.342 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7899640700","conversationType":1,"userID":"7899640700","groupID":"","showName":"åå˛å¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.347 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.347 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7908367677","conversationType":1,"userID":"7908367677","groupID":"","showName":"oyl","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:30.351 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.351 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7910017356","conversationType":1,"userID":"7910017356","groupID":"","showName":"NoDoes","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.355 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.356 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7910323746","conversationType":1,"userID":"7910323746","groupID":"","showName":"amber001","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.360 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.360 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7916509152","conversationType":1,"userID":"7916509152","groupID":"","showName":"zergmk2","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.365 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.365 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7920004051","conversationType":1,"userID":"7920004051","groupID":"","showName":"a","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.369 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.369 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7924475094","conversationType":1,"userID":"7924475094","groupID":"","showName":"eR.Lang","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.374 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.374 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7931463251","conversationType":1,"userID":"7931463251","groupID":"","showName":"č¯į¨æŗ¨å","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.379 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.380 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7933792440","conversationType":1,"userID":"7933792440","groupID":"","showName":"æåŽ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.385 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.385 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7935004142","conversationType":1,"userID":"7935004142","groupID":"","showName":"muzishan","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.391 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.392 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7937047670","conversationType":1,"userID":"7937047670","groupID":"","showName":"atom","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.397 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.398 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7939778002","conversationType":1,"userID":"7939778002","groupID":"","showName":"eee","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.403 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.403 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7940483102","conversationType":1,"userID":"7940483102","groupID":"","showName":"Funny","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.408 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.408 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7940823833","conversationType":1,"userID":"7940823833","groupID":"","showName":"qs","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.413 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.413 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7943196334","conversationType":1,"userID":"7943196334","groupID":"","showName":"Take","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.417 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.418 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7948102945","conversationType":1,"userID":"7948102945","groupID":"","showName":"nn","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.422 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.422 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7953410222","conversationType":1,"userID":"7953410222","groupID":"","showName":"erlking","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.426 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.426 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7955826088","conversationType":1,"userID":"7955826088","groupID":"","showName":"æŦåąąäŧ åĒ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.431 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.431 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7963718443","conversationType":1,"userID":"7963718443","groupID":"","showName":"mach","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.436 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.436 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7965689513","conversationType":1,"userID":"7965689513","groupID":"","showName":"rabbit","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:30.440 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.440 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7966350266","conversationType":1,"userID":"7966350266","groupID":"","showName":"huangyh","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.445 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.445 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7968032251","conversationType":1,"userID":"7968032251","groupID":"","showName":"chenyiming@ticatch.com","faceURL":"https://web.rentsoft.cn/api_enterprise/object/7968032251/image_cropper_1702970453357.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.452 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.452 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7971745226","conversationType":1,"userID":"7971745226","groupID":"","showName":"11","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.460 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.460 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7977523116","conversationType":1,"userID":"7977523116","groupID":"","showName":"ljs","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.465 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.465 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7978095612","conversationType":1,"userID":"7978095612","groupID":"","showName":"ä¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.470 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.470 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7983666862","conversationType":1,"userID":"7983666862","groupID":"","showName":"joe","faceURL":"https://web.rentsoft.cn/api_enterprise/object/7983666862/horse.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.474 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.474 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7986340950","conversationType":1,"userID":"7986340950","groupID":"","showName":"ååĨå°éąŧ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.478 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.479 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7989321704","conversationType":1,"userID":"7989321704","groupID":"","showName":"įĻįįš","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:30.483 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.483 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7992150449","conversationType":1,"userID":"7992150449","groupID":"","showName":"bangeel","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.488 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.488 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7999383414","conversationType":1,"userID":"7999383414","groupID":"","showName":"shon","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.493 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.494 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_7999733965","conversationType":1,"userID":"7999733965","groupID":"","showName":"čĒ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.500 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.501 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8001403844","conversationType":1,"userID":"8001403844","groupID":"","showName":"å
ļ厞","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.506 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.506 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8001502447","conversationType":1,"userID":"8001502447","groupID":"","showName":"åž","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:30.510 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.511 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8002441294","conversationType":1,"userID":"8002441294","groupID":"","showName":"Pearson","faceURL":"https://web.rentsoft.cn/api_enterprise/object/8002441294/éŖæ¯1.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.516 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.517 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8002908818","conversationType":1,"userID":"8002908818","groupID":"","showName":"GateCross","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.524 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.524 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8003800642","conversationType":1,"userID":"8003800642","groupID":"","showName":"大å","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.529 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.529 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8004543435","conversationType":1,"userID":"8004543435","groupID":"","showName":"č¯č¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.534 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.534 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8005444087","conversationType":1,"userID":"8005444087","groupID":"","showName":"alvin","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.539 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.539 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8007107275","conversationType":1,"userID":"8007107275","groupID":"","showName":"David","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.543 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.543 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8010325165","conversationType":1,"userID":"8010325165","groupID":"","showName":"hclabxing","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.548 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.549 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8014326203","conversationType":1,"userID":"8014326203","groupID":"","showName":"123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.553 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.553 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8014370177","conversationType":1,"userID":"8014370177","groupID":"","showName":"duyun","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.557 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.557 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8014785059","conversationType":1,"userID":"8014785059","groupID":"","showName":"TOM","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.562 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.562 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8016586723","conversationType":1,"userID":"8016586723","groupID":"","showName":"laster","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.566 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.567 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8016920139","conversationType":1,"userID":"8016920139","groupID":"","showName":"åæĒå°č´¤","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:30.571 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.571 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8019506801","conversationType":1,"userID":"8019506801","groupID":"","showName":"123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.579 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.580 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8019770129","conversationType":1,"userID":"8019770129","groupID":"","showName":"33","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.588 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.589 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8024594170","conversationType":1,"userID":"8024594170","groupID":"","showName":"ä¸äēē","faceURL":"ic_avatar_06","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:30.607 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.607 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8027945462","conversationType":1,"userID":"8027945462","groupID":"","showName":"defortest","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.614 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.614 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8027972177","conversationType":1,"userID":"8027972177","groupID":"","showName":"æ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.620 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.620 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8030188604","conversationType":1,"userID":"8030188604","groupID":"","showName":"kk","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.625 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.625 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8032860565","conversationType":1,"userID":"8032860565","groupID":"","showName":"zhiwen","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.631 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.631 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8035205991","conversationType":1,"userID":"8035205991","groupID":"","showName":"åŧ ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.637 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.637 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8035577893","conversationType":1,"userID":"8035577893","groupID":"","showName":"æ¸
éŖ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.641 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.641 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8035733598","conversationType":1,"userID":"8035733598","groupID":"","showName":"andy","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.645 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.645 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8039982396","conversationType":1,"userID":"8039982396","groupID":"","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.650 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.650 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8042010769","conversationType":1,"userID":"8042010769","groupID":"","showName":"hhh","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:30.656 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.656 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8045511039","conversationType":1,"userID":"8045511039","groupID":"","showName":"ččŋ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.664 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.664 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8046031043","conversationType":1,"userID":"8046031043","groupID":"","showName":"vicent","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:30.671 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.671 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8046251549","conversationType":1,"userID":"8046251549","groupID":"","showName":"åŽæĩŠæĩŠ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.675 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.675 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8046375945","conversationType":1,"userID":"8046375945","groupID":"","showName":"å°ąäŊ éŖ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.680 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.680 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8046583538","conversationType":1,"userID":"8046583538","groupID":"","showName":"čļå°čĒč´Ąäē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.684 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.684 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8050675645","conversationType":1,"userID":"8050675645","groupID":"","showName":"lenny","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:30.692 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.692 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8052618451","conversationType":1,"userID":"8052618451","groupID":"","showName":"æžæ æĸ
æ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.696 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.697 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8053445313","conversationType":1,"userID":"8053445313","groupID":"","showName":"hy","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.701 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.701 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8054377408","conversationType":1,"userID":"8054377408","groupID":"","showName":"aa","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.715 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.715 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8054772199","conversationType":1,"userID":"8054772199","groupID":"","showName":"w003","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.724 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.725 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8055581136","conversationType":1,"userID":"8055581136","groupID":"","showName":"åŦ夊å°äē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.740 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.741 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8058212949","conversationType":1,"userID":"8058212949","groupID":"","showName":"æĩč¯éŗéĸ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.750 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.751 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8059620844","conversationType":1,"userID":"8059620844","groupID":"","showName":"DEMO","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.757 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.758 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8062088375","conversationType":1,"userID":"8062088375","groupID":"","showName":"www","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.765 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.766 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8063035464","conversationType":1,"userID":"8063035464","groupID":"","showName":"å°įŗå¤´","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.771 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.771 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8067185378","conversationType":1,"userID":"8067185378","groupID":"","showName":"111","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.776 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.777 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8073435095","conversationType":1,"userID":"8073435095","groupID":"","showName":"7597","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.782 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.782 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8075032607","conversationType":1,"userID":"8075032607","groupID":"","showName":"Mr.Wang","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.787 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.787 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8084106990","conversationType":1,"userID":"8084106990","groupID":"","showName":"skytop","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:30.792 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.792 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8085178076","conversationType":1,"userID":"8085178076","groupID":"","showName":"æĩč¯į","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.797 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.797 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8086558094","conversationType":1,"userID":"8086558094","groupID":"","showName":"å°äē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.804 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.804 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8086917283","conversationType":1,"userID":"8086917283","groupID":"","showName":"HZL-ä¸įĨåæŠįå¸å
","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.813 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.814 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8087242742","conversationType":1,"userID":"8087242742","groupID":"","showName":"įĢĨåĨåĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:30.820 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.821 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8097498221","conversationType":1,"userID":"8097498221","groupID":"","showName":"Qq","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.825 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.825 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8097902004","conversationType":1,"userID":"8097902004","groupID":"","showName":"koala","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.830 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.830 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8100796382","conversationType":1,"userID":"8100796382","groupID":"","showName":"hholqiwh","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.836 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.837 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8103868360","conversationType":1,"userID":"8103868360","groupID":"","showName":"夿","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:30.842 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.842 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8108968441","conversationType":1,"userID":"8108968441","groupID":"","showName":"benson","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.848 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.848 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8111508018","conversationType":1,"userID":"8111508018","groupID":"","showName":"Sera","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.853 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.853 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8112346923","conversationType":1,"userID":"8112346923","groupID":"","showName":"éąŧéąŧ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.858 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.858 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8113999096","conversationType":1,"userID":"8113999096","groupID":"","showName":"abcd","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:30.864 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.864 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8120706844","conversationType":1,"userID":"8120706844","groupID":"","showName":"äŊ åĨŊ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:30.872 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.873 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8122384069","conversationType":1,"userID":"8122384069","groupID":"","showName":"zouzhouzhou","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.880 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.880 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8122645018","conversationType":1,"userID":"8122645018","groupID":"","showName":"god","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.887 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.887 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8126770108","conversationType":1,"userID":"8126770108","groupID":"","showName":"æå¤§å¤§","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.894 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.894 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8130195053","conversationType":1,"userID":"8130195053","groupID":"","showName":"a","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.900 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.900 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8130294134","conversationType":1,"userID":"8130294134","groupID":"","showName":"æŽį§","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.909 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.910 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8131886443","conversationType":1,"userID":"8131886443","groupID":"","showName":"æĻæ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.922 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.923 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8132082620","conversationType":1,"userID":"8132082620","groupID":"","showName":"liu12345","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:30.933 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.934 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8132192086","conversationType":1,"userID":"8132192086","groupID":"","showName":"wei","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.942 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.942 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8133515450","conversationType":1,"userID":"8133515450","groupID":"","showName":"éģéŋį´čĩéĢ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.948 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.949 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8135354869","conversationType":1,"userID":"8135354869","groupID":"","showName":"é
ˇåŋ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.954 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.955 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8141443295","conversationType":1,"userID":"8141443295","groupID":"","showName":"IMtest","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.962 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.962 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8141818865","conversationType":1,"userID":"8141818865","groupID":"","showName":"åįŋ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.970 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.970 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8151192752","conversationType":1,"userID":"8151192752","groupID":"","showName":"lhy","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.976 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.976 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8152315569","conversationType":1,"userID":"8152315569","groupID":"","showName":"damian","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.984 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.984 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8154138523","conversationType":1,"userID":"8154138523","groupID":"","showName":"åĨŊäš
","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.989 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.989 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8156807776","conversationType":1,"userID":"8156807776","groupID":"","showName":"hello","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.994 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.994 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8157216998","conversationType":1,"userID":"8157216998","groupID":"","showName":"123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:30.999 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:30.999 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8160058880","conversationType":1,"userID":"8160058880","groupID":"","showName":"æįĸ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.004 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.005 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8160095492","conversationType":1,"userID":"8160095492","groupID":"","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.010 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.010 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8166932809","conversationType":1,"userID":"8166932809","groupID":"","showName":"įå¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.015 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.015 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8167633898","conversationType":1,"userID":"8167633898","groupID":"","showName":"awen","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:31.020 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.020 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8169511346","conversationType":1,"userID":"8169511346","groupID":"","showName":"æŗæ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:31.024 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.025 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8170675637","conversationType":1,"userID":"8170675637","groupID":"","showName":"åģēįŗģååæ ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.030 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.031 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8172345347","conversationType":1,"userID":"8172345347","groupID":"","showName":"åŧ åŧ åŧ ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.039 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.039 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8180241502","conversationType":1,"userID":"8180241502","groupID":"","showName":"QWE","faceURL":"https://web.rentsoft.cn/api_enterprise/object/8180241502/1.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.045 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.045 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8182249376","conversationType":1,"userID":"8182249376","groupID":"","showName":"leo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.052 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.052 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8186105078","conversationType":1,"userID":"8186105078","groupID":"","showName":"cc","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.056 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.057 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8187575584","conversationType":1,"userID":"8187575584","groupID":"","showName":"åĨåŋ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.061 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.061 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8189440989","conversationType":1,"userID":"8189440989","groupID":"","showName":"tbc","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.065 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.066 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8190298841","conversationType":1,"userID":"8190298841","groupID":"","showName":"häŊ åĨŊ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.071 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.072 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8193549184","conversationType":1,"userID":"8193549184","groupID":"","showName":"æĨæĨæĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.076 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.076 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8197784678","conversationType":1,"userID":"8197784678","groupID":"","showName":"Eric","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.082 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.082 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8203292432","conversationType":1,"userID":"8203292432","groupID":"","showName":"alex","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.086 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.086 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8207174748","conversationType":1,"userID":"8207174748","groupID":"","showName":"www","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.092 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.092 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8210397277","conversationType":1,"userID":"8210397277","groupID":"","showName":"RoinbowZing","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.098 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.099 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8211291202","conversationType":1,"userID":"8211291202","groupID":"","showName":"éŋįĻž","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.105 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.106 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8211720551","conversationType":1,"userID":"8211720551","groupID":"","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.114 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.114 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8213594817","conversationType":1,"userID":"8213594817","groupID":"","showName":"boys","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.118 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.118 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8215486465","conversationType":1,"userID":"8215486465","groupID":"","showName":"tao","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.123 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.123 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8216642294","conversationType":1,"userID":"8216642294","groupID":"","showName":"å¤Ēéŗ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.127 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.127 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8217169171","conversationType":1,"userID":"8217169171","groupID":"","showName":"gsh","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.132 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.133 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8217784296","conversationType":1,"userID":"8217784296","groupID":"","showName":"123zxcsss","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.137 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.137 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8219584363","conversationType":1,"userID":"8219584363","groupID":"","showName":"å§å§æĨå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.141 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.141 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8220710471","conversationType":1,"userID":"8220710471","groupID":"","showName":"daluhuo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.145 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.145 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8222037249","conversationType":1,"userID":"8222037249","groupID":"","showName":"yunfeng","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.149 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.149 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8222979522","conversationType":1,"userID":"8222979522","groupID":"","showName":"æ´éĄ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.153 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.153 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8223657315","conversationType":1,"userID":"8223657315","groupID":"","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:31.158 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.158 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8223705362","conversationType":1,"userID":"8223705362","groupID":"","showName":"čļ
įē§čžįąŗ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.163 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.163 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8224334313","conversationType":1,"userID":"8224334313","groupID":"","showName":"Van","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.169 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.169 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8228094145","conversationType":1,"userID":"8228094145","groupID":"","showName":"xiaoming","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.177 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.178 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8228097998","conversationType":1,"userID":"8228097998","groupID":"","showName":"å°åģē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.191 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.193 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8229812969","conversationType":1,"userID":"8229812969","groupID":"","showName":"æ˛å°įåĄæčĸ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.203 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.203 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8231032558","conversationType":1,"userID":"8231032558","groupID":"","showName":"111111","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:31.210 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.211 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8233508874","conversationType":1,"userID":"8233508874","groupID":"","showName":"etsail","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.217 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.218 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8235499624","conversationType":1,"userID":"8235499624","groupID":"","showName":"kkkk","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.223 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.223 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8235631682","conversationType":1,"userID":"8235631682","groupID":"","showName":"åŧ æŦJobs","faceURL":"http://14.29.213.197:50002/object/8235631682/1716369214002_d61c841855aff397f43ea48568fc29d4.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.226 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.227 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8242204929","conversationType":1,"userID":"8242204929","groupID":"","showName":"liu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.232 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.232 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8246905074","conversationType":1,"userID":"8246905074","groupID":"","showName":"æ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.236 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.237 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8248153723","conversationType":1,"userID":"8248153723","groupID":"","showName":"æĩč¯2","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.241 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.241 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8251671425","conversationType":1,"userID":"8251671425","groupID":"","showName":"romero","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:31.246 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.246 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8253692052","conversationType":1,"userID":"8253692052","groupID":"","showName":"å¤å¤Š","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:31.250 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.250 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8257796971","conversationType":1,"userID":"8257796971","groupID":"","showName":"maocai","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:31.255 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.255 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8273990937","conversationType":1,"userID":"8273990937","groupID":"","showName":"test8","faceURL":"ic_avatar_05","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:31.261 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.262 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8277724734","conversationType":1,"userID":"8277724734","groupID":"","showName":"å
æ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:31.267 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.268 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8281432408","conversationType":1,"userID":"8281432408","groupID":"","showName":"Alex","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.273 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.273 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8288812105","conversationType":1,"userID":"8288812105","groupID":"","showName":"vida","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.277 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.277 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8290926771","conversationType":1,"userID":"8290926771","groupID":"","showName":"ččĩĩ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.282 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.282 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8303454241","conversationType":1,"userID":"8303454241","groupID":"","showName":"tmz","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.286 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.286 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8309118101","conversationType":1,"userID":"8309118101","groupID":"","showName":"äēčž","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.292 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.292 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8309865529","conversationType":1,"userID":"8309865529","groupID":"","showName":"Hbhh","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.298 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.298 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8310010694","conversationType":1,"userID":"8310010694","groupID":"","showName":"charles","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:31.302 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.302 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8310070431","conversationType":1,"userID":"8310070431","groupID":"","showName":"éäŧé","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.307 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.307 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8311991667","conversationType":1,"userID":"8311991667","groupID":"","showName":"įéĄŋ7999999999999999999999999999999999999999999999999999999","faceURL":"https://web.rentsoft.cn/api_enterprise/object/8311991667/data/user/0/cn.rentsoft.openim.flutter.rtc/cache/image_cropper_1693303487351.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:31.311 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.311 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8313094015","conversationType":1,"userID":"8313094015","groupID":"","showName":"Daodao","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.316 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.316 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8316865470","conversationType":1,"userID":"8316865470","groupID":"","showName":"įŦ¨é¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.321 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.321 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8317468172","conversationType":1,"userID":"8317468172","groupID":"","showName":"test","faceURL":"https://web.rentsoft.cn/api_enterprise/object/8317468172/digital_art_CG_wallpaper_cyril_van_der_haegen_01.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.326 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.326 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8319353787","conversationType":1,"userID":"8319353787","groupID":"","showName":"ä¸äēäēäš","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.332 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.332 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8322698564","conversationType":1,"userID":"8322698564","groupID":"","showName":"wolis","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.337 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.337 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8327482141","conversationType":1,"userID":"8327482141","groupID":"","showName":"é大č","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.342 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.343 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8327820770","conversationType":1,"userID":"8327820770","groupID":"","showName":"lin","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.347 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.348 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8328543245","conversationType":1,"userID":"8328543245","groupID":"","showName":"chw","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.354 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.354 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8328850356","conversationType":1,"userID":"8328850356","groupID":"","showName":"1213William","faceURL":"https://web.rentsoft.cn/api_enterprise/object/8328850356/į°å¤Ēįŧ1.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.358 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.358 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8329982339","conversationType":1,"userID":"8329982339","groupID":"","showName":"ww","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.363 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.363 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8331569195","conversationType":1,"userID":"8331569195","groupID":"","showName":"čžå§","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.367 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.367 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8335825785","conversationType":1,"userID":"8335825785","groupID":"","showName":"helloworld1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.371 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.372 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8337539661","conversationType":1,"userID":"8337539661","groupID":"","showName":"goln","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.376 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.376 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8341999149","conversationType":1,"userID":"8341999149","groupID":"","showName":"â
Š","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.380 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.380 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8342189311","conversationType":1,"userID":"8342189311","groupID":"","showName":"yz","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.385 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.386 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8344051901","conversationType":1,"userID":"8344051901","groupID":"","showName":"åŽå鸥","faceURL":"https://web.rentsoft.cn/api_enterprise/object/8344051901/ikun.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.390 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.390 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8346004149","conversationType":1,"userID":"8346004149","groupID":"","showName":"curry","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.396 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.396 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8347503157","conversationType":1,"userID":"8347503157","groupID":"","showName":"zbl","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.404 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.404 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8350518493","conversationType":1,"userID":"8350518493","groupID":"","showName":"ä¸ä¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.411 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.411 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8351972815","conversationType":1,"userID":"8351972815","groupID":"","showName":"ct2asdf","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.416 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.416 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8352206292","conversationType":1,"userID":"8352206292","groupID":"","showName":"hhh","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.421 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.421 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8353064427","conversationType":1,"userID":"8353064427","groupID":"","showName":"54thC","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.426 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.426 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8353160172","conversationType":1,"userID":"8353160172","groupID":"","showName":"æžåŧæįˇįĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:31.431 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.431 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8353955233","conversationType":1,"userID":"8353955233","groupID":"","showName":"æąĒ业","faceURL":"ic_avatar_01","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:31.436 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.436 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8355159098","conversationType":1,"userID":"8355159098","groupID":"","showName":"ä¸ä¸įĢ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.441 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.441 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8358518421","conversationType":1,"userID":"8358518421","groupID":"","showName":"æĩč¯ä¸ä¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.445 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.445 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8359082623","conversationType":1,"userID":"8359082623","groupID":"","showName":"455579367@qq.com","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:31.450 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.451 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8366012391","conversationType":1,"userID":"8366012391","groupID":"","showName":"yzs","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:31.455 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.456 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8367461388","conversationType":1,"userID":"8367461388","groupID":"","showName":"jinshi","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.460 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.461 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8372997122","conversationType":1,"userID":"8372997122","groupID":"","showName":"sky","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.468 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.468 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8377093987","conversationType":1,"userID":"8377093987","groupID":"","showName":"zhouht","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:31.477 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.478 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8381623910","conversationType":1,"userID":"8381623910","groupID":"","showName":"openIMUser","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:31.491 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.493 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8382061243","conversationType":1,"userID":"8382061243","groupID":"","showName":"wkb","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.502 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.503 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8384057593","conversationType":1,"userID":"8384057593","groupID":"","showName":"xNie","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.511 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.511 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8384689749","conversationType":1,"userID":"8384689749","groupID":"","showName":"laozudamo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.518 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.518 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8386666767","conversationType":1,"userID":"8386666767","groupID":"","showName":"äŊčž","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.524 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.524 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8386793499","conversationType":1,"userID":"8386793499","groupID":"","showName":"LBR","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.529 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.529 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8388063569","conversationType":1,"userID":"8388063569","groupID":"","showName":"ganbb","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.534 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.535 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8389624275","conversationType":1,"userID":"8389624275","groupID":"","showName":"įåĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.539 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.539 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8392406358","conversationType":1,"userID":"8392406358","groupID":"","showName":"å°å˛ŗ","faceURL":"https://web.rentsoft.cn/api_enterprise/object/8392406358/storage/emulated/0/Android/data/io.openim.android.demo/cache/1705403678772/1705403675257.png","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.544 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.544 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8393853819","conversationType":1,"userID":"8393853819","groupID":"","showName":"fengxici","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.550 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.550 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8395917828","conversationType":1,"userID":"8395917828","groupID":"","showName":"444","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.557 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.557 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8396980904","conversationType":1,"userID":"8396980904","groupID":"","showName":"Zeus","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:31.565 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.565 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8398865107","conversationType":1,"userID":"8398865107","groupID":"","showName":"Dove","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.571 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.571 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8399956257","conversationType":1,"userID":"8399956257","groupID":"","showName":"jq","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.578 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.578 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8400344163","conversationType":1,"userID":"8400344163","groupID":"","showName":"Dreaming","faceURL":"https://web.rentsoft.cn/api_enterprise/object/8400344163/ef3cb816863aebc2cea4558ee4e09ab (1).webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.585 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.585 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8404373294","conversationType":1,"userID":"8404373294","groupID":"","showName":"1Q86","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.590 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.590 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8407403125","conversationType":1,"userID":"8407403125","groupID":"","showName":"chat","faceURL":"https://web.rentsoft.cn/api_enterprise/object/8407403125/image_cropper_1697447277122.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:31.595 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.595 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8409494864","conversationType":1,"userID":"8409494864","groupID":"","showName":"saber","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.599 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.599 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8411599332","conversationType":1,"userID":"8411599332","groupID":"","showName":"æ¨æ°","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.604 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.604 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8421561159","conversationType":1,"userID":"8421561159","groupID":"","showName":"æ¨åįåŋ§äŧ¤","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:31.608 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.608 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8423008156","conversationType":1,"userID":"8423008156","groupID":"","showName":"Brian","faceURL":"https://web.rentsoft.cn/api_enterprise/object/8423008156/image_cropper_1712464415807.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.612 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.612 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8426622833","conversationType":1,"userID":"8426622833","groupID":"","showName":"xvane","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:31.619 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.619 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8427634569","conversationType":1,"userID":"8427634569","groupID":"","showName":"jiii","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.625 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.626 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8428572486","conversationType":1,"userID":"8428572486","groupID":"","showName":"qian","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.631 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.631 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8436024021","conversationType":1,"userID":"8436024021","groupID":"","showName":"bt","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.640 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.641 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8436643404","conversationType":1,"userID":"8436643404","groupID":"","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.653 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.655 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8439362049","conversationType":1,"userID":"8439362049","groupID":"","showName":"yooranchen","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.664 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.665 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8440760987","conversationType":1,"userID":"8440760987","groupID":"","showName":"æŗå¤įåžåŧ ä¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:31.671 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.672 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8442809460","conversationType":1,"userID":"8442809460","groupID":"","showName":"joe","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.677 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.678 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8443036798","conversationType":1,"userID":"8443036798","groupID":"","showName":"å°åŖ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.683 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.683 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8443805897","conversationType":1,"userID":"8443805897","groupID":"","showName":"huangpj","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":true,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.702 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.703 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8445041485","conversationType":1,"userID":"8445041485","groupID":"","showName":"tang","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.710 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.710 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8445330073","conversationType":1,"userID":"8445330073","groupID":"","showName":"常å¨åŋ","faceURL":"https://web.rentsoft.cn/api_enterprise/object/8445330073/image_cropper_1697321213194.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:31.715 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.715 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8446005763","conversationType":1,"userID":"8446005763","groupID":"","showName":"äŊ åĨŊ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.721 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.721 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8446372231","conversationType":1,"userID":"8446372231","groupID":"","showName":"åįąæ°","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.728 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.728 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8447534661","conversationType":1,"userID":"8447534661","groupID":"","showName":"å°å¤Š","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.735 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.735 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8447585718","conversationType":1,"userID":"8447585718","groupID":"","showName":"åąąå¤","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.742 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.742 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8447830068","conversationType":1,"userID":"8447830068","groupID":"","showName":"soldier","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.747 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.748 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8448409603","conversationType":1,"userID":"8448409603","groupID":"","showName":"Li yuan","faceURL":"https://web.rentsoft.cn/api_enterprise/object/8448409603/image_cropper_E9B09BD4-4AF6-45F4-9617-D1F9F5D47C14-1619-0000008CB406D173.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:31.752 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.752 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8450512511","conversationType":1,"userID":"8450512511","groupID":"","showName":"howie","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.757 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.757 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8451470030","conversationType":1,"userID":"8451470030","groupID":"","showName":"äŊŋį¨äēē1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:31.762 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.762 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8454189295","conversationType":1,"userID":"8454189295","groupID":"","showName":"697919","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.767 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.767 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8455239611","conversationType":1,"userID":"8455239611","groupID":"","showName":"ååšŗ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.772 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.773 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8455935596","conversationType":1,"userID":"8455935596","groupID":"","showName":"sonriku","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.778 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.778 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8460084433","conversationType":1,"userID":"8460084433","groupID":"","showName":"123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.784 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.784 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8460784953","conversationType":1,"userID":"8460784953","groupID":"","showName":"lean","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.792 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.792 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8463876330","conversationType":1,"userID":"8463876330","groupID":"","showName":"éåå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:31.799 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.799 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8472084588","conversationType":1,"userID":"8472084588","groupID":"","showName":"čļčļ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:31.808 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.809 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8474885327","conversationType":1,"userID":"8474885327","groupID":"","showName":"äēåįŽ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.821 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.822 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8476059904","conversationType":1,"userID":"8476059904","groupID":"","showName":"cheery","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.833 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.834 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8477220212","conversationType":1,"userID":"8477220212","groupID":"","showName":"vbochao","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.841 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.841 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8477469958","conversationType":1,"userID":"8477469958","groupID":"","showName":"kk","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.847 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.848 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8480505964","conversationType":1,"userID":"8480505964","groupID":"","showName":"solar","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.854 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.854 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8485512774","conversationType":1,"userID":"8485512774","groupID":"","showName":"xjdjjdjd","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:31.859 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.859 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8486013399","conversationType":1,"userID":"8486013399","groupID":"","showName":"å čŊįēŋæĄFallingline","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.865 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.865 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8486574742","conversationType":1,"userID":"8486574742","groupID":"","showName":"éŖé°","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.872 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.872 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8491654430","conversationType":1,"userID":"8491654430","groupID":"","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.880 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.880 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8491971056","conversationType":1,"userID":"8491971056","groupID":"","showName":"lh","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.889 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.889 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8491976474","conversationType":1,"userID":"8491976474","groupID":"","showName":"įįąŗæéĒ¨æą¤","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.897 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.897 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8492016735","conversationType":1,"userID":"8492016735","groupID":"","showName":"åŧ ä¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.904 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.904 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8494962468","conversationType":1,"userID":"8494962468","groupID":"","showName":"aå
蝴","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.914 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.915 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8500228563","conversationType":1,"userID":"8500228563","groupID":"","showName":"kpskare","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.925 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.925 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8506767167","conversationType":1,"userID":"8506767167","groupID":"","showName":"fujiaxing","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.932 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.932 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8506981030","conversationType":1,"userID":"8506981030","groupID":"","showName":"hugang","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.938 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.939 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8513362072","conversationType":1,"userID":"8513362072","groupID":"","showName":"armo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.944 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.944 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8513600314","conversationType":1,"userID":"8513600314","groupID":"","showName":"lulu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:31.950 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.951 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8514393726","conversationType":1,"userID":"8514393726","groupID":"","showName":"jack","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.958 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.958 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8518800133","conversationType":1,"userID":"8518800133","groupID":"","showName":"å¨å
į","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.968 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.969 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8519918280","conversationType":1,"userID":"8519918280","groupID":"","showName":"Bx","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:31.976 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.976 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8521256224","conversationType":1,"userID":"8521256224","groupID":"","showName":"System ","faceURL":"ic_avatar_01","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:31.983 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.983 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8525520412","conversationType":1,"userID":"8525520412","groupID":"","showName":"įæ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.990 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.990 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8527411023","conversationType":1,"userID":"8527411023","groupID":"","showName":"sinsay","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:31.996 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:31.997 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8528240286","conversationType":1,"userID":"8528240286","groupID":"","showName":"įéĻ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.005 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.005 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8528989010","conversationType":1,"userID":"8528989010","groupID":"","showName":"mrG\n","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:32.012 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.012 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8529766319","conversationType":1,"userID":"8529766319","groupID":"","showName":"Mr.H","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.018 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.018 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8532602548","conversationType":1,"userID":"8532602548","groupID":"","showName":"åĻäš åĻäš ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:32.023 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.023 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8533102456","conversationType":1,"userID":"8533102456","groupID":"","showName":"aries","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.030 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.031 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8535351180","conversationType":1,"userID":"8535351180","groupID":"","showName":"tufei","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.035 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.035 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8536119014","conversationType":1,"userID":"8536119014","groupID":"","showName":"é","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.042 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.042 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8542303515","conversationType":1,"userID":"8542303515","groupID":"","showName":"1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.049 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.049 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8542573282","conversationType":1,"userID":"8542573282","groupID":"","showName":"tiew","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:32.057 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.057 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8544654562","conversationType":1,"userID":"8544654562","groupID":"","showName":"cj","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.063 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.063 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8550907162","conversationType":1,"userID":"8550907162","groupID":"","showName":"kiki","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.069 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.069 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8551912178","conversationType":1,"userID":"8551912178","groupID":"","showName":"éąŧéąŧ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.075 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.075 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8552815569","conversationType":1,"userID":"8552815569","groupID":"","showName":"leg","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:32.083 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.085 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8558447046","conversationType":1,"userID":"8558447046","groupID":"","showName":"ééĢåŗ°","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.096 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.097 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8558757778","conversationType":1,"userID":"8558757778","groupID":"","showName":"åå°æŗĸ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.104 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.104 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8560487083","conversationType":1,"userID":"8560487083","groupID":"","showName":"xxss","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.111 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.112 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8560709818","conversationType":1,"userID":"8560709818","groupID":"","showName":"JoieLu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.118 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.118 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8560928083","conversationType":1,"userID":"8560928083","groupID":"","showName":"HappyJohn","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.141 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.141 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8569604066","conversationType":1,"userID":"8569604066","groupID":"","showName":"åĻåĻ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.148 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.149 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8571433263","conversationType":1,"userID":"8571433263","groupID":"","showName":"ouhou","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.158 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.158 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8571544480","conversationType":1,"userID":"8571544480","groupID":"","showName":"queue","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.166 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.167 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8573571335","conversationType":1,"userID":"8573571335","groupID":"","showName":"test1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.172 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.173 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8578360952","conversationType":1,"userID":"8578360952","groupID":"","showName":"x","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.179 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.179 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8580630933","conversationType":1,"userID":"8580630933","groupID":"","showName":"įąŗéĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.185 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.185 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8583690065","conversationType":1,"userID":"8583690065","groupID":"","showName":"why so diao","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.191 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.191 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8586878608","conversationType":1,"userID":"8586878608","groupID":"","showName":"qing","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:32.195 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.195 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8592196566","conversationType":1,"userID":"8592196566","groupID":"","showName":"äŊæåĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.201 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.201 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8595026997","conversationType":1,"userID":"8595026997","groupID":"","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:32.205 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.205 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8596140148","conversationType":1,"userID":"8596140148","groupID":"","showName":"King","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:32.210 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.211 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8596270879","conversationType":1,"userID":"8596270879","groupID":"","showName":"Eric-k","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.216 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.217 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8602919066","conversationType":1,"userID":"8602919066","groupID":"","showName":"jeff123123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:32.223 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.224 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8604696550","conversationType":1,"userID":"8604696550","groupID":"","showName":"hhr","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.231 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.231 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8605733793","conversationType":1,"userID":"8605733793","groupID":"","showName":"NoYo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.237 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.237 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8606367434","conversationType":1,"userID":"8606367434","groupID":"","showName":"Halo117","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.242 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.242 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8607110044","conversationType":1,"userID":"8607110044","groupID":"","showName":"Region","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.246 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.247 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8607773408","conversationType":1,"userID":"8607773408","groupID":"","showName":"adam","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.252 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.252 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8612888823","conversationType":1,"userID":"8612888823","groupID":"","showName":"imtiyan","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.257 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.258 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8613544365","conversationType":1,"userID":"8613544365","groupID":"","showName":"äģģ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.262 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.263 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8614413702","conversationType":1,"userID":"8614413702","groupID":"","showName":"isvictorli","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.268 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.268 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8627323715","conversationType":1,"userID":"8627323715","groupID":"","showName":"åä¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.273 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.273 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8630184960","conversationType":1,"userID":"8630184960","groupID":"","showName":"54wty","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.280 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.280 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8632216197","conversationType":1,"userID":"8632216197","groupID":"","showName":"äŧ įģåæŗ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.287 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.287 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8633297465","conversationType":1,"userID":"8633297465","groupID":"","showName":"7580","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.294 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.294 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8634312196","conversationType":1,"userID":"8634312196","groupID":"","showName":"nuko","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.300 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.300 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8638304663","conversationType":1,"userID":"8638304663","groupID":"","showName":"Joel","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:32.305 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.305 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8640390697","conversationType":1,"userID":"8640390697","groupID":"","showName":"įąįæ´ģ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.310 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.310 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8640727499","conversationType":1,"userID":"8640727499","groupID":"","showName":"gg","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.315 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.316 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8643787495","conversationType":1,"userID":"8643787495","groupID":"","showName":"Cali Wang","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.320 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.320 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8645597251","conversationType":1,"userID":"8645597251","groupID":"","showName":"Sagel1ke","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.325 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.325 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8646025601","conversationType":1,"userID":"8646025601","groupID":"","showName":"éŖä¸æčŊŦ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.332 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.332 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8651668431","conversationType":1,"userID":"8651668431","groupID":"","showName":"Marj","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:32.337 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.337 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8655191799","conversationType":1,"userID":"8655191799","groupID":"","showName":"éč§äŊ æ¯åŊ䏿ŗ¨åŽ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.343 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.343 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8658174960","conversationType":1,"userID":"8658174960","groupID":"","showName":"kele","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.350 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.351 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8661722129","conversationType":1,"userID":"8661722129","groupID":"","showName":"éé¨","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.358 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.358 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8662971476","conversationType":1,"userID":"8662971476","groupID":"","showName":"åå","faceURL":"https://web.rentsoft.cn/api_enterprise/object/8662971476/storage/emulated/0/Android/data/io.openim.android.demo/cache/1712738191969.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.365 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.365 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8670587296","conversationType":1,"userID":"8670587296","groupID":"","showName":"å°įįĢ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.370 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.371 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8673764134","conversationType":1,"userID":"8673764134","groupID":"","showName":"123456","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:32.375 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.375 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8674470583","conversationType":1,"userID":"8674470583","groupID":"","showName":"demo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:32.380 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.380 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8684237507","conversationType":1,"userID":"8684237507","groupID":"","showName":"čĄå°","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.384 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.384 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8685038399","conversationType":1,"userID":"8685038399","groupID":"","showName":"åŽä¸å°ŧ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.388 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.388 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8688389470","conversationType":1,"userID":"8688389470","groupID":"","showName":"čé¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.393 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.393 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8690034954","conversationType":1,"userID":"8690034954","groupID":"","showName":"įŊæ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.398 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.399 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8702643096","conversationType":1,"userID":"8702643096","groupID":"","showName":"hahah","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.403 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.404 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8703200712","conversationType":1,"userID":"8703200712","groupID":"","showName":"apple","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:32.410 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.410 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8703273727","conversationType":1,"userID":"8703273727","groupID":"","showName":"bunianxia","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.416 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.416 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8704081460","conversationType":1,"userID":"8704081460","groupID":"","showName":"aaaa","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:32.423 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.423 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8706087313","conversationType":1,"userID":"8706087313","groupID":"","showName":"ou","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.428 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.428 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8707396681","conversationType":1,"userID":"8707396681","groupID":"","showName":"yeebing","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.432 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.432 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8707676360","conversationType":1,"userID":"8707676360","groupID":"","showName":"įčž","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:32.438 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.438 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8710375221","conversationType":1,"userID":"8710375221","groupID":"","showName":"åĨŊåĨŊåĨŊ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.443 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.443 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8710553462","conversationType":1,"userID":"8710553462","groupID":"","showName":"įäēå°","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.448 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.448 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8713397018","conversationType":1,"userID":"8713397018","groupID":"","showName":"éĻéĻ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.454 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.454 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8715898882","conversationType":1,"userID":"8715898882","groupID":"","showName":"7234","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:32.459 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.459 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8716098319","conversationType":1,"userID":"8716098319","groupID":"","showName":"axlis","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.463 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.464 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8716428571","conversationType":1,"userID":"8716428571","groupID":"","showName":"éŋä¸å°åˇ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:32.468 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.468 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8720844433","conversationType":1,"userID":"8720844433","groupID":"","showName":"夊夊åä¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.472 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.472 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8726009685","conversationType":1,"userID":"8726009685","groupID":"","showName":"æ´ģéˇé","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.478 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.479 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8728868295","conversationType":1,"userID":"8728868295","groupID":"","showName":"éŗå
åĨŊ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:32.486 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.486 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8729072173","conversationType":1,"userID":"8729072173","groupID":"","showName":"éčąĒ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.492 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.492 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8730568673","conversationType":1,"userID":"8730568673","groupID":"","showName":"æĸ
ä¸","faceURL":"https://web.rentsoft.cn/api_enterprise/object/8730568673/storage/emulated/0/Android/data/io.openim.android.demo/cache/1702634052321/1702634048232.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.496 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.496 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8733936530","conversationType":1,"userID":"8733936530","groupID":"","showName":"J1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.502 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.502 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8734166382","conversationType":1,"userID":"8734166382","groupID":"","showName":"lululemon","faceURL":"https://web.rentsoft.cn/api_enterprise/object/8734166382/u=3570018058,3795593131&fm=253&fmt=auto&app=138&f=JPEG.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:32.507 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.507 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8737115397","conversationType":1,"userID":"8737115397","groupID":"","showName":"äģģå","faceURL":"https://web.rentsoft.cn/api_enterprise/object/8737115397/image_cropper_1706078028206.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.511 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.512 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8742211895","conversationType":1,"userID":"8742211895","groupID":"","showName":"åŧåŋå°ąåĨŊ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.516 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.517 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8742676847","conversationType":1,"userID":"8742676847","groupID":"","showName":"test01","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.521 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.521 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8744886846","conversationType":1,"userID":"8744886846","groupID":"","showName":"Wan","faceURL":"https://web.rentsoft.cn/api_enterprise/object/8744886846/1705646572659_32fad69f716d07de3940bd509832d6643be07028_raw.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.526 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.526 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8745122471","conversationType":1,"userID":"8745122471","groupID":"","showName":"jkn","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.531 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.531 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8747127597","conversationType":1,"userID":"8747127597","groupID":"","showName":"fire888888","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.535 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.535 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8749558646","conversationType":1,"userID":"8749558646","groupID":"","showName":"9935","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.542 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.542 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8753413980","conversationType":1,"userID":"8753413980","groupID":"","showName":"taoshide1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.549 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.549 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8754850165","conversationType":1,"userID":"8754850165","groupID":"","showName":"giming","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.555 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.555 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8755718549","conversationType":1,"userID":"8755718549","groupID":"","showName":"zyx","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.560 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.560 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8756835768","conversationType":1,"userID":"8756835768","groupID":"","showName":"å¨į","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.566 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.566 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8759251402","conversationType":1,"userID":"8759251402","groupID":"","showName":"webinc","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.571 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.571 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8760812670","conversationType":1,"userID":"8760812670","groupID":"","showName":"ckl","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.575 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.576 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8762493296","conversationType":1,"userID":"8762493296","groupID":"","showName":"å°æ°","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.579 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.579 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8763788974","conversationType":1,"userID":"8763788974","groupID":"","showName":"allen wong","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.584 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.584 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8770027856","conversationType":1,"userID":"8770027856","groupID":"","showName":"yks","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.589 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.589 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8772228740","conversationType":1,"userID":"8772228740","groupID":"","showName":"įŋå","faceURL":"https://web.rentsoft.cn/api_enterprise/object/8772228740/icon.png","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:32.594 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.594 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8773081922","conversationType":1,"userID":"8773081922","groupID":"","showName":"bingo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:32.599 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.599 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8776392357","conversationType":1,"userID":"8776392357","groupID":"","showName":"éŋæ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.604 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.604 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8777730167","conversationType":1,"userID":"8777730167","groupID":"","showName":"åæ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.610 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.610 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8778175043","conversationType":1,"userID":"8778175043","groupID":"","showName":"Stone","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.616 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.616 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8780182642","conversationType":1,"userID":"8780182642","groupID":"","showName":"momo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.622 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.622 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8783516485","conversationType":1,"userID":"8783516485","groupID":"","showName":"xialugui","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.627 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.628 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8785536899","conversationType":1,"userID":"8785536899","groupID":"","showName":"åæ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.633 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.633 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8790335385","conversationType":1,"userID":"8790335385","groupID":"","showName":"Smart","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.637 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.637 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8795307407","conversationType":1,"userID":"8795307407","groupID":"","showName":"åįžįž","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:32.641 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.642 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8804352974","conversationType":1,"userID":"8804352974","groupID":"","showName":"čŊĻåå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.647 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.647 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8804394305","conversationType":1,"userID":"8804394305","groupID":"","showName":"大æäēŽ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.652 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.652 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8808621985","conversationType":1,"userID":"8808621985","groupID":"","showName":"lg0812","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.657 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.657 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8810821200","conversationType":1,"userID":"8810821200","groupID":"","showName":"夿æ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.661 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.662 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8811129708","conversationType":1,"userID":"8811129708","groupID":"","showName":"åčč","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:32.667 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.667 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8816137600","conversationType":1,"userID":"8816137600","groupID":"","showName":"嚸čŋįˇ","faceURL":"https://web.rentsoft.cn/api_enterprise/object/8816137600/storage/emulated/0/Android/data/io.openim.android.demo/cache/1701050023662/1701050020675.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:32.674 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.675 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8818424284","conversationType":1,"userID":"8818424284","groupID":"","showName":"æ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":true,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.681 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.682 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8822537455","conversationType":1,"userID":"8822537455","groupID":"","showName":"zzz","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:32.689 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.689 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8823387090","conversationType":1,"userID":"8823387090","groupID":"","showName":"test0220","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.695 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.695 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8825966823","conversationType":1,"userID":"8825966823","groupID":"","showName":"厍æ¯įš","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.701 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.702 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8834765444","conversationType":1,"userID":"8834765444","groupID":"","showName":"shadow","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.707 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.707 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8835887772","conversationType":1,"userID":"8835887772","groupID":"","showName":"zw","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:32.712 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.713 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8837652030","conversationType":1,"userID":"8837652030","groupID":"","showName":"įĢįĒéįį","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.717 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.717 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8838551480","conversationType":1,"userID":"8838551480","groupID":"","showName":"jeff","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.722 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.722 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8842425902","conversationType":1,"userID":"8842425902","groupID":"","showName":"zell","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.728 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.728 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8843246052","conversationType":1,"userID":"8843246052","groupID":"","showName":"wfwf","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.733 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.733 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8844820087","conversationType":1,"userID":"8844820087","groupID":"","showName":"taibai","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.740 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.740 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8845469662","conversationType":1,"userID":"8845469662","groupID":"","showName":"å¸
","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.747 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.747 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8849899924","conversationType":1,"userID":"8849899924","groupID":"","showName":"testand","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.755 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.755 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8854356304","conversationType":1,"userID":"8854356304","groupID":"","showName":"kayorl","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.761 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.761 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8856017589","conversationType":1,"userID":"8856017589","groupID":"","showName":"wjq","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.766 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.767 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8861830064","conversationType":1,"userID":"8861830064","groupID":"","showName":"akin","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.772 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.772 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8862348169","conversationType":1,"userID":"8862348169","groupID":"","showName":"budou","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.777 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.777 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8864056106","conversationType":1,"userID":"8864056106","groupID":"","showName":"æļĩéĩ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.781 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.782 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8864850031","conversationType":1,"userID":"8864850031","groupID":"","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.788 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.788 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8866143916","conversationType":1,"userID":"8866143916","groupID":"","showName":"SakuraFubuki","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.793 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.793 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8867254112","conversationType":1,"userID":"8867254112","groupID":"","showName":"æ°æ°","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.799 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.799 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8867850391","conversationType":1,"userID":"8867850391","groupID":"","showName":"andrew","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:32.805 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.806 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8871211861","conversationType":1,"userID":"8871211861","groupID":"","showName":"123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.814 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.814 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8871946613","conversationType":1,"userID":"8871946613","groupID":"","showName":"zzz","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.821 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.822 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8875139244","conversationType":1,"userID":"8875139244","groupID":"","showName":"moran","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:32.829 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.829 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8879166186","conversationType":1,"userID":"8879166186","groupID":"","showName":"PwJane","faceURL":"http://14.29.213.197:50002/object/8879166186/storage/emulated/0/Android/data/io.openim.android.demo/cache/1715072796388/1715072794908.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.834 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.834 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8887175905","conversationType":1,"userID":"8887175905","groupID":"","showName":"æļå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.839 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.839 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8888752880","conversationType":1,"userID":"8888752880","groupID":"","showName":"2993150260","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:32.844 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.844 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8890058811","conversationType":1,"userID":"8890058811","groupID":"","showName":"111","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.848 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.849 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8893611164","conversationType":1,"userID":"8893611164","groupID":"","showName":"heihei","faceURL":"https://web.rentsoft.cn/api_enterprise/object/8893611164/storage/emulated/0/Android/data/io.openim.android.demo/cache/1713950734360/1713950733878.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.854 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.854 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8893615815","conversationType":1,"userID":"8893615815","groupID":"","showName":"lin","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.861 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.861 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8895487701","conversationType":1,"userID":"8895487701","groupID":"","showName":"ppzw","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.867 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.867 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8897379573","conversationType":1,"userID":"8897379573","groupID":"","showName":"Jeson","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:32.872 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.872 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8900826469","conversationType":1,"userID":"8900826469","groupID":"","showName":".ãã","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.878 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.879 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8902885136","conversationType":1,"userID":"8902885136","groupID":"","showName":"HOPE","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.886 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.886 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8903011297","conversationType":1,"userID":"8903011297","groupID":"","showName":"youth","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.894 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.895 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8904622411","conversationType":1,"userID":"8904622411","groupID":"","showName":"user","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.908 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.909 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8906837393","conversationType":1,"userID":"8906837393","groupID":"","showName":"chents","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.917 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.918 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8909124208","conversationType":1,"userID":"8909124208","groupID":"","showName":"čå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:32.924 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.925 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8913400006","conversationType":1,"userID":"8913400006","groupID":"","showName":"zzy","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.931 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.931 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8914287800","conversationType":1,"userID":"8914287800","groupID":"","showName":"大åč","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.937 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.937 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8915465584","conversationType":1,"userID":"8915465584","groupID":"","showName":"dsj","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.943 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.943 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8916321939","conversationType":1,"userID":"8916321939","groupID":"","showName":"æ˛Ąææĩį§°","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:32.948 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.949 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8920262959","conversationType":1,"userID":"8920262959","groupID":"","showName":"simon","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.956 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.956 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8923283070","conversationType":1,"userID":"8923283070","groupID":"","showName":"äēéĄé","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:32.966 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.967 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8929623425","conversationType":1,"userID":"8929623425","groupID":"","showName":"rainey","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.977 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.977 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8929662634","conversationType":1,"userID":"8929662634","groupID":"","showName":"SteveChen","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.985 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.987 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8930133512","conversationType":1,"userID":"8930133512","groupID":"","showName":"ahmad","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:32.992 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:32.992 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8930791679","conversationType":1,"userID":"8930791679","groupID":"","showName":"varphp","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:32.999 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.000 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8933317719","conversationType":1,"userID":"8933317719","groupID":"","showName":"į¯å","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.005 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.006 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8935113461","conversationType":1,"userID":"8935113461","groupID":"","showName":"halo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.010 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.010 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8938639079","conversationType":1,"userID":"8938639079","groupID":"","showName":"äēåĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.017 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.017 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8941452423","conversationType":1,"userID":"8941452423","groupID":"","showName":"å čŊįå°å
å","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.023 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.023 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8942102453","conversationType":1,"userID":"8942102453","groupID":"","showName":"å°įž","faceURL":"http://14.29.213.197:50002/object/8942102453/storage/emulated/0/Android/data/io.openim.android.demo/cache/1717181484376/1717181471051.png","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.028 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.028 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8947488684","conversationType":1,"userID":"8947488684","groupID":"","showName":"æ
æ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.033 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.033 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8952393298","conversationType":1,"userID":"8952393298","groupID":"","showName":"maplerpx","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.039 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.039 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8954088752","conversationType":1,"userID":"8954088752","groupID":"","showName":"mm","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.044 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.044 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8960131587","conversationType":1,"userID":"8960131587","groupID":"","showName":" éŖ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.052 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.053 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8962513708","conversationType":1,"userID":"8962513708","groupID":"","showName":"Eugene ","faceURL":"/storage/emulated/0/Pictures/1695466636852.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:33.059 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.059 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8965027422","conversationType":1,"userID":"8965027422","groupID":"","showName":"éŠåšŋæ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.065 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.065 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8968372134","conversationType":1,"userID":"8968372134","groupID":"","showName":"ååĨŗåŠįå°įĢæ´","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:33.069 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.069 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8968471931","conversationType":1,"userID":"8968471931","groupID":"","showName":"åå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:33.074 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.074 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8970340990","conversationType":1,"userID":"8970340990","groupID":"","showName":"éģåĨŊåĨŊ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.079 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.079 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8970561974","conversationType":1,"userID":"8970561974","groupID":"","showName":"mikasa","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.084 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.084 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8973956467","conversationType":1,"userID":"8973956467","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:33.089 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.089 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8977536940","conversationType":1,"userID":"8977536940","groupID":"","showName":"zhaorongrong","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.093 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.093 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8983932611","conversationType":1,"userID":"8983932611","groupID":"","showName":"gawfi","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.098 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.099 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8985349171","conversationType":1,"userID":"8985349171","groupID":"","showName":"įžįˇå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.111 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.111 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8989584694","conversationType":1,"userID":"8989584694","groupID":"","showName":"186","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.117 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.117 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8995127909","conversationType":1,"userID":"8995127909","groupID":"","showName":"įŊåå¤","faceURL":"https://web.rentsoft.cn/api_enterprise/object/8995127909/jhk-1700186287275.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:33.127 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.128 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_8996361146","conversationType":1,"userID":"8996361146","groupID":"","showName":"ygl","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.141 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.143 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9000953253","conversationType":1,"userID":"9000953253","groupID":"","showName":"panghu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.153 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.153 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9003478301","conversationType":1,"userID":"9003478301","groupID":"","showName":"hiworld","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.160 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.161 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9003815934","conversationType":1,"userID":"9003815934","groupID":"","showName":"lin","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.167 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.167 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9007292080","conversationType":1,"userID":"9007292080","groupID":"","showName":"admin1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.172 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.173 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9010532005","conversationType":1,"userID":"9010532005","groupID":"","showName":"Boots","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:33.178 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.178 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9020451503","conversationType":1,"userID":"9020451503","groupID":"","showName":"Leo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.183 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.183 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9020580531","conversationType":1,"userID":"9020580531","groupID":"","showName":"wanna","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.188 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.188 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9025203324","conversationType":1,"userID":"9025203324","groupID":"","showName":"æ´å¤Šäž","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.193 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.193 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9027590510","conversationType":1,"userID":"9027590510","groupID":"","showName":"éĒįŗ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.197 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.197 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9029297866","conversationType":1,"userID":"9029297866","groupID":"","showName":"Brabem","faceURL":"https://web.rentsoft.cn/api_enterprise/object/9029297866/image_cropper_B9E61D5D-92C1-4141-BAF0-6CE4A81749C9-65204-00002A7765C42B49.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:33.204 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.204 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9032177660","conversationType":1,"userID":"9032177660","groupID":"","showName":"hys","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.212 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.212 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9034112568","conversationType":1,"userID":"9034112568","groupID":"","showName":"å°éš","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:33.219 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.219 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9037074021","conversationType":1,"userID":"9037074021","groupID":"","showName":"fctest","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.224 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.224 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9037264818","conversationType":1,"userID":"9037264818","groupID":"","showName":"openIMUser","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:33.230 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.230 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9040385718","conversationType":1,"userID":"9040385718","groupID":"","showName":"ååį","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.235 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.235 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9040944073","conversationType":1,"userID":"9040944073","groupID":"","showName":"å´é¯åŠ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:33.240 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.240 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9044201385","conversationType":1,"userID":"9044201385","groupID":"","showName":"æå¤§","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.245 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.245 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9045616204","conversationType":1,"userID":"9045616204","groupID":"","showName":"åįĨĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:33.250 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.250 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9049515564","conversationType":1,"userID":"9049515564","groupID":"","showName":"QQ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.254 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.255 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9051266058","conversationType":1,"userID":"9051266058","groupID":"","showName":"1321čŗæĩ2","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.259 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.259 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9056140426","conversationType":1,"userID":"9056140426","groupID":"","showName":"raymond-lee","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.264 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.265 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9067017669","conversationType":1,"userID":"9067017669","groupID":"","showName":"Wyn11","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.270 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.271 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9068307497","conversationType":1,"userID":"9068307497","groupID":"","showName":"1258","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.277 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.277 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9068605463","conversationType":1,"userID":"9068605463","groupID":"","showName":"dongjie","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.283 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.283 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9070071192","conversationType":1,"userID":"9070071192","groupID":"","showName":"lllo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.290 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.290 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9071076459","conversationType":1,"userID":"9071076459","groupID":"","showName":"å°åŽå¸Ŋ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.294 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.295 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9080019804","conversationType":1,"userID":"9080019804","groupID":"","showName":"Mr.Hanyee","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.299 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.300 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9080128965","conversationType":1,"userID":"9080128965","groupID":"","showName":"pokid","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.304 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.304 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9082391908","conversationType":1,"userID":"9082391908","groupID":"","showName":"įĨæŽåŊĄ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.309 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.314 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9083542109","conversationType":1,"userID":"9083542109","groupID":"","showName":"äŊ åĨŊ2åˇ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:33.321 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.321 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9085091731","conversationType":1,"userID":"9085091731","groupID":"","showName":"åå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.327 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.328 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9089447149","conversationType":1,"userID":"9089447149","groupID":"","showName":"åæĨčĩ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.333 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.334 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9090358505","conversationType":1,"userID":"9090358505","groupID":"","showName":"qwer","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.339 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.339 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9096135733","conversationType":1,"userID":"9096135733","groupID":"","showName":"éύ鍿æ´","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.344 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.344 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9100792481","conversationType":1,"userID":"9100792481","groupID":"","showName":"ä¸įĨé","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:33.349 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.349 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9103065505","conversationType":1,"userID":"9103065505","groupID":"","showName":"Luck66668","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.354 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.354 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9105258430","conversationType":1,"userID":"9105258430","groupID":"","showName":"Himan","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.358 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.358 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9107290642","conversationType":1,"userID":"9107290642","groupID":"","showName":"sky","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.364 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.364 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9112045680","conversationType":1,"userID":"9112045680","groupID":"","showName":"æäšä¸æ ˇ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.368 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.368 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9114286848","conversationType":1,"userID":"9114286848","groupID":"","showName":"ä¸äēééŖ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.372 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.373 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9116950939","conversationType":1,"userID":"9116950939","groupID":"","showName":"001","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:33.377 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.377 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9118393507","conversationType":1,"userID":"9118393507","groupID":"","showName":"admin","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.383 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.383 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9118795910","conversationType":1,"userID":"9118795910","groupID":"","showName":"so2liu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.390 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.390 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9119188102","conversationType":1,"userID":"9119188102","groupID":"","showName":"www","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.398 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.398 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9131370628","conversationType":1,"userID":"9131370628","groupID":"","showName":"GodShit","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:33.403 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.404 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9135721405","conversationType":1,"userID":"9135721405","groupID":"","showName":"ting","faceURL":"https://web.rentsoft.cn/api_enterprise/object/9135721405/image_cropper_1697442723972.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:33.409 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.409 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9135822963","conversationType":1,"userID":"9135822963","groupID":"","showName":"å°åčą","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:33.413 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.413 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9141546417","conversationType":1,"userID":"9141546417","groupID":"","showName":"linkan","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.419 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.419 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9145170670","conversationType":1,"userID":"9145170670","groupID":"","showName":"chenzhip_1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.423 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.423 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9147986978","conversationType":1,"userID":"9147986978","groupID":"","showName":"æŦį å°åĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.429 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.429 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9149427188","conversationType":1,"userID":"9149427188","groupID":"","showName":"ip11","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:33.434 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.434 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9150657351","conversationType":1,"userID":"9150657351","groupID":"","showName":"ChenJian","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:33.439 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.439 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9151446701","conversationType":1,"userID":"9151446701","groupID":"","showName":"91WangSiLing","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.444 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.444 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9154529184","conversationType":1,"userID":"9154529184","groupID":"","showName":"ä¸äŧéįįžåŠåŠ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.449 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.449 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9160100453","conversationType":1,"userID":"9160100453","groupID":"","showName":"RobertWang","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.457 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.457 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9162279391","conversationType":1,"userID":"9162279391","groupID":"","showName":"h","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.464 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.464 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9162422557","conversationType":1,"userID":"9162422557","groupID":"","showName":"king","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":true,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.470 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.470 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9163061763","conversationType":1,"userID":"9163061763","groupID":"","showName":"Sunny","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.475 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.475 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9163773981","conversationType":1,"userID":"9163773981","groupID":"","showName":"æåĨļåĨļ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.481 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.481 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9169530932","conversationType":1,"userID":"9169530932","groupID":"","showName":"AiRobot","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.486 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.486 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9172155059","conversationType":1,"userID":"9172155059","groupID":"","showName":"äŊ åĨŊ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.491 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.491 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9174875302","conversationType":1,"userID":"9174875302","groupID":"","showName":"xlyyqx214","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.496 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.496 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9174916284","conversationType":1,"userID":"9174916284","groupID":"","showName":"flynn","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.501 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.501 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9186029513","conversationType":1,"userID":"9186029513","groupID":"","showName":"lux","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.505 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.505 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9186764264","conversationType":1,"userID":"9186764264","groupID":"","showName":"mt","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:33.510 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.510 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9187643068","conversationType":1,"userID":"9187643068","groupID":"","showName":"czhczh","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.515 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.516 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9192054233","conversationType":1,"userID":"9192054233","groupID":"","showName":"gmail","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.523 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.524 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9194384134","conversationType":1,"userID":"9194384134","groupID":"","showName":"Maingo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:33.542 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.542 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9199088622","conversationType":1,"userID":"9199088622","groupID":"","showName":"keyring","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.550 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.550 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9200307656","conversationType":1,"userID":"9200307656","groupID":"","showName":"liebeayaka","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.555 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.555 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9201875027","conversationType":1,"userID":"9201875027","groupID":"","showName":"awar","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.560 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.561 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9203035243","conversationType":1,"userID":"9203035243","groupID":"","showName":"zjjszmx","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.567 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.567 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9204866505","conversationType":1,"userID":"9204866505","groupID":"","showName":"æčžžæŗĸ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.573 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.573 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9207250971","conversationType":1,"userID":"9207250971","groupID":"","showName":"įåykYR","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.578 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.579 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9207372851","conversationType":1,"userID":"9207372851","groupID":"","showName":"æĩį§°","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.584 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.584 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9210231392","conversationType":1,"userID":"9210231392","groupID":"","showName":"louie","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.589 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.589 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9212086649","conversationType":1,"userID":"9212086649","groupID":"","showName":"hello","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.593 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.593 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9213219531","conversationType":1,"userID":"9213219531","groupID":"","showName":"Gaubee","faceURL":"https://web.rentsoft.cn/api_enterprise/object/9213219531/1706269991405png","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.604 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.604 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9213270709","conversationType":1,"userID":"9213270709","groupID":"","showName":"åå
į","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.610 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.610 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9215480998","conversationType":1,"userID":"9215480998","groupID":"","showName":"äŊčĒå
","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.620 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.621 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9222153994","conversationType":1,"userID":"9222153994","groupID":"","showName":"īŧīŧ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:33.633 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.634 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9226474938","conversationType":1,"userID":"9226474938","groupID":"","showName":"andy","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:33.643 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.643 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9226621324","conversationType":1,"userID":"9226621324","groupID":"","showName":"å¸å°","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:33.651 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.651 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9230292610","conversationType":1,"userID":"9230292610","groupID":"","showName":"cp","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.656 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.657 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9232651207","conversationType":1,"userID":"9232651207","groupID":"","showName":"åˇ
庰䏍å°éģ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.664 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.664 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9232803518","conversationType":1,"userID":"9232803518","groupID":"","showName":"alex_wyh","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.669 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.669 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9235143815","conversationType":1,"userID":"9235143815","groupID":"","showName":"éąŧéąŧéąŧ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.675 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.675 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9236237184","conversationType":1,"userID":"9236237184","groupID":"","showName":"demo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.680 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.681 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9239211252","conversationType":1,"userID":"9239211252","groupID":"","showName":"tutu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.689 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.689 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9241165972","conversationType":1,"userID":"9241165972","groupID":"","showName":"æå
åŊŦ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:33.695 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.696 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9245513894","conversationType":1,"userID":"9245513894","groupID":"","showName":"å°ä¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.703 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.703 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9256183013","conversationType":1,"userID":"9256183013","groupID":"","showName":"夿Ģ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:33.709 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.709 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9258059350","conversationType":1,"userID":"9258059350","groupID":"","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.714 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.714 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9259033011","conversationType":1,"userID":"9259033011","groupID":"","showName":"åŊäģ¤","faceURL":"ic_avatar_05","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:33.720 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.721 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9260806687","conversationType":1,"userID":"9260806687","groupID":"","showName":"Flybird","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.726 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.726 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9270676203","conversationType":1,"userID":"9270676203","groupID":"","showName":"éĸč","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:33.731 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.732 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9278741003","conversationType":1,"userID":"9278741003","groupID":"","showName":"hgfyjbcg","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.737 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.737 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9279909751","conversationType":1,"userID":"9279909751","groupID":"","showName":"tets","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.741 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.742 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9284068632","conversationType":1,"userID":"9284068632","groupID":"","showName":"å","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:33.747 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.747 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9286519455","conversationType":1,"userID":"9286519455","groupID":"","showName":"breeze","faceURL":"https://web.rentsoft.cn/api_enterprise/object/9286519455/1703593744043.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.756 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.757 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9287504890","conversationType":1,"userID":"9287504890","groupID":"","showName":"echo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.771 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.772 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9287571322","conversationType":1,"userID":"9287571322","groupID":"","showName":"hexiaoshi","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.784 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.784 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9292952971","conversationType":1,"userID":"9292952971","groupID":"","showName":"æŖ åĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:33.790 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.790 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9294815765","conversationType":1,"userID":"9294815765","groupID":"","showName":"tony","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.795 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.796 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9297701491","conversationType":1,"userID":"9297701491","groupID":"","showName":"xiaobai426","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:33.801 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.802 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9300628809","conversationType":1,"userID":"9300628809","groupID":"","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.807 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.807 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9304736762","conversationType":1,"userID":"9304736762","groupID":"","showName":"159","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.813 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.813 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9307746287","conversationType":1,"userID":"9307746287","groupID":"","showName":"čįĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.817 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.818 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9308608945","conversationType":1,"userID":"9308608945","groupID":"","showName":"2164119593","faceURL":"https://web.rentsoft.cn/api_enterprise/object/9308608945/storage/emulated/0/Android/data/io.openim.android.demo/cache/1711445808389/1711445800805.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.822 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.823 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9314613531","conversationType":1,"userID":"9314613531","groupID":"","showName":"wodom","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:33.827 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.827 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9314649429","conversationType":1,"userID":"9314649429","groupID":"","showName":"1312312","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.833 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.834 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9319190585","conversationType":1,"userID":"9319190585","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:33.840 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.840 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9321533406","conversationType":1,"userID":"9321533406","groupID":"","showName":"åĄåĄ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:33.846 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.847 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9322486252","conversationType":1,"userID":"9322486252","groupID":"","showName":"įĸįĸ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:33.855 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.855 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9323583122","conversationType":1,"userID":"9323583122","groupID":"","showName":"xc","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.861 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.861 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9325103737","conversationType":1,"userID":"9325103737","groupID":"","showName":"WAndroid","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.865 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.866 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9325129123","conversationType":1,"userID":"9325129123","groupID":"","showName":"ä¸äēēčĄ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.871 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.871 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9325990223","conversationType":1,"userID":"9325990223","groupID":"","showName":"įēĸéģč","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.876 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.876 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9327284155","conversationType":1,"userID":"9327284155","groupID":"","showName":".","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.881 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.881 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9333402846","conversationType":1,"userID":"9333402846","groupID":"","showName":"ddddaqi","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.886 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.887 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9339787004","conversationType":1,"userID":"9339787004","groupID":"","showName":"įä¸ģäģģ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:33.891 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.891 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9340752329","conversationType":1,"userID":"9340752329","groupID":"","showName":"33","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.897 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.897 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9341886465","conversationType":1,"userID":"9341886465","groupID":"","showName":"haris","faceURL":"https://web.rentsoft.cn/api_enterprise/object/9341886465/image_cropper_1714382625943.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.905 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.905 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9344140649","conversationType":1,"userID":"9344140649","groupID":"","showName":"leizi8799","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.911 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.912 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9346971193","conversationType":1,"userID":"9346971193","groupID":"","showName":"li3000","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.923 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.924 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9352579651","conversationType":1,"userID":"9352579651","groupID":"","showName":"lf01","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:33.935 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.936 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9352645028","conversationType":1,"userID":"9352645028","groupID":"","showName":"tony","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:33.943 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.943 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9356390327","conversationType":1,"userID":"9356390327","groupID":"","showName":"11","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.949 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.949 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9361332642","conversationType":1,"userID":"9361332642","groupID":"","showName":"bona","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.954 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.954 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9362736373","conversationType":1,"userID":"9362736373","groupID":"","showName":"éŠŦåĸå¸
","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:33.959 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.959 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9364103352","conversationType":1,"userID":"9364103352","groupID":"","showName":"į大é¤","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.964 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.964 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9366122795","conversationType":1,"userID":"9366122795","groupID":"","showName":"xu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.968 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.969 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9368797440","conversationType":1,"userID":"9368797440","groupID":"","showName":"i77yomi","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:33.973 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.973 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9372262219","conversationType":1,"userID":"9372262219","groupID":"","showName":"大åŽļäŧ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:33.978 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.979 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9373564014","conversationType":1,"userID":"9373564014","groupID":"","showName":"å¨å°","faceURL":"https://web.rentsoft.cn/api_enterprise/object/9373564014/垎äŋĄæĒåž_20240613104140.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.983 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.983 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9377917340","conversationType":1,"userID":"9377917340","groupID":"","showName":"leyton","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.988 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.988 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9379217721","conversationType":1,"userID":"9379217721","groupID":"","showName":"ä¸ä¸į","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:33.994 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:33.994 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9387380418","conversationType":1,"userID":"9387380418","groupID":"","showName":"į","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.000 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.000 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9387672850","conversationType":1,"userID":"9387672850","groupID":"","showName":"Jiannan","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:34.008 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.010 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9387674715","conversationType":1,"userID":"9387674715","groupID":"","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:34.022 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.023 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9389457938","conversationType":1,"userID":"9389457938","groupID":"","showName":"hmbb","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.030 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.030 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9389885910","conversationType":1,"userID":"9389885910","groupID":"","showName":"LL","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.037 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.037 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9391314599","conversationType":1,"userID":"9391314599","groupID":"","showName":"PeterGao","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.042 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.043 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9393341134","conversationType":1,"userID":"9393341134","groupID":"","showName":"é˛äēē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.048 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.048 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9395180616","conversationType":1,"userID":"9395180616","groupID":"","showName":"mq","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:34.054 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.054 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9397128201","conversationType":1,"userID":"9397128201","groupID":"","showName":"æĢæ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.059 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.059 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9397440115","conversationType":1,"userID":"9397440115","groupID":"","showName":"libaxuan","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.063 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.063 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9397654697","conversationType":1,"userID":"9397654697","groupID":"","showName":"laoliu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.068 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.068 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9398362109","conversationType":1,"userID":"9398362109","groupID":"","showName":"1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:34.073 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.073 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9404981493","conversationType":1,"userID":"9404981493","groupID":"","showName":"å°é˛¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.076 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.076 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9408449152","conversationType":1,"userID":"9408449152","groupID":"","showName":"zzazz","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.084 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.084 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9410605811","conversationType":1,"userID":"9410605811","groupID":"","showName":"luyoi","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.090 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.090 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9410947536","conversationType":1,"userID":"9410947536","groupID":"","showName":"įģ§įģįģ§įģå°ą","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.098 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.098 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9413853471","conversationType":1,"userID":"9413853471","groupID":"","showName":"wjw","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.106 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.107 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9418340681","conversationType":1,"userID":"9418340681","groupID":"","showName":"qhutaozz","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.111 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.112 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9418897256","conversationType":1,"userID":"9418897256","groupID":"","showName":"æįæŖæĨ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.117 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.118 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9419791140","conversationType":1,"userID":"9419791140","groupID":"","showName":"momo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.122 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.122 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9422344882","conversationType":1,"userID":"9422344882","groupID":"","showName":"åąå¤äēē1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.126 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.127 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9422520919","conversationType":1,"userID":"9422520919","groupID":"","showName":"å
´åŽ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.130 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.131 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9423702981","conversationType":1,"userID":"9423702981","groupID":"","showName":"æĸĩčå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.135 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.135 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9431649345","conversationType":1,"userID":"9431649345","groupID":"","showName":"åå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.140 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.140 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9432000750","conversationType":1,"userID":"9432000750","groupID":"","showName":"įæŦč˛","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.144 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.145 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9438519163","conversationType":1,"userID":"9438519163","groupID":"","showName":"fox","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.148 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.148 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9438619402","conversationType":1,"userID":"9438619402","groupID":"","showName":"äē夊","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.153 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.153 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9438981908","conversationType":1,"userID":"9438981908","groupID":"","showName":"坿","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.159 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.159 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9443124661","conversationType":1,"userID":"9443124661","groupID":"","showName":"marks","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.166 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.166 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9444808535","conversationType":1,"userID":"9444808535","groupID":"","showName":"Glsong7","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.172 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.172 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9447003536","conversationType":1,"userID":"9447003536","groupID":"","showName":"bb123","faceURL":"https://web.rentsoft.cn/api_enterprise/object/9447003536/avatar.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:34.177 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.177 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9449123364","conversationType":1,"userID":"9449123364","groupID":"","showName":"æåŗ°","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.181 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.181 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9450945642","conversationType":1,"userID":"9450945642","groupID":"","showName":"äģ°ææįŠē","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:34.185 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.185 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9453001659","conversationType":1,"userID":"9453001659","groupID":"","showName":"kingyzf","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:34.190 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.190 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9454312989","conversationType":1,"userID":"9454312989","groupID":"","showName":"Uu","faceURL":"ic_avatar_06","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:34.195 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.196 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9454452545","conversationType":1,"userID":"9454452545","groupID":"","showName":"weiv","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:34.201 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.201 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9458613234","conversationType":1,"userID":"9458613234","groupID":"","showName":"åĻåĻåĻåĻåĻåĻåĻåĻåĻ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.206 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.207 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9460029109","conversationType":1,"userID":"9460029109","groupID":"","showName":"dong","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.211 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.211 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9460753612","conversationType":1,"userID":"9460753612","groupID":"","showName":"įģäŊ ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.216 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.216 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9471807266","conversationType":1,"userID":"9471807266","groupID":"","showName":"OpenIM-vida","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.221 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.221 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9472932551","conversationType":1,"userID":"9472932551","groupID":"","showName":"godd","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.228 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.229 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9475126952","conversationType":1,"userID":"9475126952","groupID":"","showName":"æĨæĨæĨ","faceURL":"https://web.rentsoft.cn/api_enterprise/object/9475126952/image_cropper_1701017882979.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:34.236 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.236 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9477456745","conversationType":1,"userID":"9477456745","groupID":"","showName":"hjm","faceURL":"https://web.rentsoft.cn/api_enterprise/object/9477456745/image_cropper_1717253977200.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.242 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.242 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9479262868","conversationType":1,"userID":"9479262868","groupID":"","showName":"Guanjian104","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:34.248 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.248 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9480889921","conversationType":1,"userID":"9480889921","groupID":"","showName":"hellok","faceURL":"https://web.rentsoft.cn/api_enterprise/object/9480889921/image_cropper_1708675073998.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.253 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.253 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9482224389","conversationType":1,"userID":"9482224389","groupID":"","showName":"QingYu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.258 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.258 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9486728724","conversationType":1,"userID":"9486728724","groupID":"","showName":"äē˛äē˛äē˛","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.263 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.263 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9486760817","conversationType":1,"userID":"9486760817","groupID":"","showName":"hyh","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.267 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.268 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9489899104","conversationType":1,"userID":"9489899104","groupID":"","showName":"stephen","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.274 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.274 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9490698152","conversationType":1,"userID":"9490698152","groupID":"","showName":"夊åŽ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.278 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.278 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9494685925","conversationType":1,"userID":"9494685925","groupID":"","showName":"æĩč¯","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.284 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.284 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9499885295","conversationType":1,"userID":"9499885295","groupID":"","showName":"fwj","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.289 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.289 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9503928702","conversationType":1,"userID":"9503928702","groupID":"","showName":"Changan","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.310 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.311 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9504590132","conversationType":1,"userID":"9504590132","groupID":"","showName":"hui666","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.324 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.324 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9510908752","conversationType":1,"userID":"9510908752","groupID":"","showName":"demi","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.333 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.333 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9511107616","conversationType":1,"userID":"9511107616","groupID":"","showName":"xx123","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.340 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.341 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9511397734","conversationType":1,"userID":"9511397734","groupID":"","showName":"painso","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.347 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.348 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9515603026","conversationType":1,"userID":"9515603026","groupID":"","showName":"laker","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:34.353 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.354 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9520465181","conversationType":1,"userID":"9520465181","groupID":"","showName":"yyyy","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.359 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.359 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9525788516","conversationType":1,"userID":"9525788516","groupID":"","showName":"junko2","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.364 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.364 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9526715559","conversationType":1,"userID":"9526715559","groupID":"","showName":"čĄå¤§","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:34.370 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.370 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9527221323","conversationType":1,"userID":"9527221323","groupID":"","showName":"jack","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:34.374 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.374 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9527412250","conversationType":1,"userID":"9527412250","groupID":"","showName":"jop","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.379 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.380 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9528720745","conversationType":1,"userID":"9528720745","groupID":"","showName":"ssss","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.385 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.385 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9531540758","conversationType":1,"userID":"9531540758","groupID":"","showName":"int jo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.391 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.391 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9533255877","conversationType":1,"userID":"9533255877","groupID":"","showName":"zz","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.397 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.398 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9540077489","conversationType":1,"userID":"9540077489","groupID":"","showName":"kevin","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:34.405 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.406 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9543282502","conversationType":1,"userID":"9543282502","groupID":"","showName":"KevIn","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:34.410 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.410 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9547736560","conversationType":1,"userID":"9547736560","groupID":"","showName":"openim","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.414 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.414 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9550545034","conversationType":1,"userID":"9550545034","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.422 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.422 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9550992804","conversationType":1,"userID":"9550992804","groupID":"","showName":"åäēįŗ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.427 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.427 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9554479163","conversationType":1,"userID":"9554479163","groupID":"","showName":"å°éŠŦ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:34.432 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.432 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9556144042","conversationType":1,"userID":"9556144042","groupID":"","showName":"xu2","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.437 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.437 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9560430025","conversationType":1,"userID":"9560430025","groupID":"","showName":"8888A","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.441 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.441 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9560540812","conversationType":1,"userID":"9560540812","groupID":"","showName":"į§åŋ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.445 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.445 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9564525723","conversationType":1,"userID":"9564525723","groupID":"","showName":"æĢåļ","faceURL":"https://web.rentsoft.cn/api_enterprise/object/9564525723/data/user/0/cn.rentsoft.openim.flutter.rtc/cache/8b633afc-1944-4a6f-8d25-b1e3f9c3bfb2/a5b9d7f7bbcfd7a33a2f4f99ced4a622.gif","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:34.450 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.450 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9564624893","conversationType":1,"userID":"9564624893","groupID":"","showName":"åå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.456 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.456 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9566846106","conversationType":1,"userID":"9566846106","groupID":"","showName":"admin","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.461 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.462 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9567110804","conversationType":1,"userID":"9567110804","groupID":"","showName":"yangzhou","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.467 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.468 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9568064166","conversationType":1,"userID":"9568064166","groupID":"","showName":"Mr.Zhu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.473 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.473 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9569742620","conversationType":1,"userID":"9569742620","groupID":"","showName":"manman","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.479 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.479 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9575344330","conversationType":1,"userID":"9575344330","groupID":"","showName":"æ´äŋĄ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.483 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.484 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9582809602","conversationType":1,"userID":"9582809602","groupID":"","showName":"åŗå¨č
","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.489 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.489 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9584879278","conversationType":1,"userID":"9584879278","groupID":"","showName":"åįŗå¤´","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.493 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.493 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9588309595","conversationType":1,"userID":"9588309595","groupID":"","showName":"čéŠŦ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.497 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.498 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9593910181","conversationType":1,"userID":"9593910181","groupID":"","showName":"夊éé
Ŧå¤","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.504 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.504 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9594595817","conversationType":1,"userID":"9594595817","groupID":"","showName":"17520320253","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.508 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.509 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9596530901","conversationType":1,"userID":"9596530901","groupID":"","showName":"äŧéš
","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.513 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.513 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9598993999","conversationType":1,"userID":"9598993999","groupID":"","showName":"Trepang","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:34.518 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.518 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9600160441","conversationType":1,"userID":"9600160441","groupID":"","showName":"hans","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:34.523 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.524 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9600612423","conversationType":1,"userID":"9600612423","groupID":"","showName":"DFtest","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.531 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.531 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9603303533","conversationType":1,"userID":"9603303533","groupID":"","showName":"åŧ æ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:34.538 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.538 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9605342546","conversationType":1,"userID":"9605342546","groupID":"","showName":"čĄ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.543 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.544 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9609727061","conversationType":1,"userID":"9609727061","groupID":"","showName":"1111","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.548 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.548 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9612741669","conversationType":1,"userID":"9612741669","groupID":"","showName":"įåŽĸ","faceURL":"https://web.rentsoft.cn/api_enterprise/object/9612741669/1.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.552 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.553 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9615126029","conversationType":1,"userID":"9615126029","groupID":"","showName":"jeff","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.557 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.557 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9617075837","conversationType":1,"userID":"9617075837","groupID":"","showName":"d","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.561 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.561 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9621471724","conversationType":1,"userID":"9621471724","groupID":"","showName":"ddd","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.566 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.566 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9624703660","conversationType":1,"userID":"9624703660","groupID":"","showName":"éĨŧéĨŧå
Ŋ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.572 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.572 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9626290005","conversationType":1,"userID":"9626290005","groupID":"","showName":"蝎æį
§23","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:34.576 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.577 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9630683705","conversationType":1,"userID":"9630683705","groupID":"","showName":"æĄļ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.581 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.582 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9632964455","conversationType":1,"userID":"9632964455","groupID":"","showName":"wds","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:34.586 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.587 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9633093534","conversationType":1,"userID":"9633093534","groupID":"","showName":"gni","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.593 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.593 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9636841804","conversationType":1,"userID":"9636841804","groupID":"","showName":"大čå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.598 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.599 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9640092689","conversationType":1,"userID":"9640092689","groupID":"","showName":"å´įåˇŊ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.605 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.606 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9640271868","conversationType":1,"userID":"9640271868","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:34.611 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.611 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9643981165","conversationType":1,"userID":"9643981165","groupID":"","showName":"moyu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.615 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.615 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9644984361","conversationType":1,"userID":"9644984361","groupID":"","showName":"hello","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.621 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.621 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9646811476","conversationType":1,"userID":"9646811476","groupID":"","showName":"Archer","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.626 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.626 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9652403347","conversationType":1,"userID":"9652403347","groupID":"","showName":"James","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:34.631 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.631 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9653906508","conversationType":1,"userID":"9653906508","groupID":"","showName":"lau","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.635 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.635 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9653932291","conversationType":1,"userID":"9653932291","groupID":"","showName":"weiliang","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.640 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.641 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9654809682","conversationType":1,"userID":"9654809682","groupID":"","showName":"jac","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.646 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.647 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9655460349","conversationType":1,"userID":"9655460349","groupID":"","showName":"ryan","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.652 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.652 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9658470863","conversationType":1,"userID":"9658470863","groupID":"","showName":"qqqqqq","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.659 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.659 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9661736644","conversationType":1,"userID":"9661736644","groupID":"","showName":"åŧ ä¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:34.667 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.667 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9662422985","conversationType":1,"userID":"9662422985","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:34.674 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.674 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9665249754","conversationType":1,"userID":"9665249754","groupID":"","showName":"Run","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:34.680 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.680 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9666798322","conversationType":1,"userID":"9666798322","groupID":"","showName":"æŠ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.687 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.688 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9668702178","conversationType":1,"userID":"9668702178","groupID":"","showName":"huang","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.693 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.693 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9675738355","conversationType":1,"userID":"9675738355","groupID":"","showName":"č čč","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:34.698 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.698 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9676545595","conversationType":1,"userID":"9676545595","groupID":"","showName":"åĨļįļ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.704 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.704 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9680261978","conversationType":1,"userID":"9680261978","groupID":"","showName":"9527","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.709 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.709 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9681562907","conversationType":1,"userID":"9681562907","groupID":"","showName":"Forever","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:34.713 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.713 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9682481051","conversationType":1,"userID":"9682481051","groupID":"","showName":"LBW","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.719 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.719 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9688178922","conversationType":1,"userID":"9688178922","groupID":"","showName":"rain","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.723 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.723 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9692122176","conversationType":1,"userID":"9692122176","groupID":"","showName":"į¨ååžˇ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:34.728 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.729 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9694696718","conversationType":1,"userID":"9694696718","groupID":"","showName":"lian1234","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.735 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.736 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9701519461","conversationType":1,"userID":"9701519461","groupID":"","showName":"zb","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.742 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.742 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9701705776","conversationType":1,"userID":"9701705776","groupID":"","showName":"fear","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.750 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.752 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9702179908","conversationType":1,"userID":"9702179908","groupID":"","showName":"minicuper","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.763 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.764 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9702639521","conversationType":1,"userID":"9702639521","groupID":"","showName":"tom","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.772 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.773 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9704234829","conversationType":1,"userID":"9704234829","groupID":"","showName":"colin","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.778 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.779 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9705413308","conversationType":1,"userID":"9705413308","groupID":"","showName":"evan","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.784 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.785 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9715723472","conversationType":1,"userID":"9715723472","groupID":"","showName":"Yui","faceURL":"https://web.rentsoft.cn/api_enterprise/object/9715723472/image_cropper_1710309656880.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.791 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.791 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9716918074","conversationType":1,"userID":"9716918074","groupID":"","showName":"test1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.796 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.796 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9719817461","conversationType":1,"userID":"9719817461","groupID":"","showName":"äŊ 大įˇ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.803 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.804 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9720699376","conversationType":1,"userID":"9720699376","groupID":"","showName":"gary","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.808 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.808 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9721005199","conversationType":1,"userID":"9721005199","groupID":"","showName":"头","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.815 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.815 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9726843811","conversationType":1,"userID":"9726843811","groupID":"","showName":"æĩč¯2","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:34.823 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.823 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9729290732","conversationType":1,"userID":"9729290732","groupID":"","showName":"yy","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.829 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.830 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9729475227","conversationType":1,"userID":"9729475227","groupID":"","showName":"1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:34.835 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.835 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9730546629","conversationType":1,"userID":"9730546629","groupID":"","showName":"IMser ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.840 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.840 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9732821029","conversationType":1,"userID":"9732821029","groupID":"","showName":"gg","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.845 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.845 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9735131442","conversationType":1,"userID":"9735131442","groupID":"","showName":"mark","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.849 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.849 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9735240223","conversationType":1,"userID":"9735240223","groupID":"","showName":"carl","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.855 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.855 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9735279232","conversationType":1,"userID":"9735279232","groupID":"","showName":"æ¨åēˇ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.860 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.860 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9736240141","conversationType":1,"userID":"9736240141","groupID":"","showName":"éž","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.865 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.865 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9738388188","conversationType":1,"userID":"9738388188","groupID":"","showName":"vkrian","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.870 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.870 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9740262193","conversationType":1,"userID":"9740262193","groupID":"","showName":"SmartGateway01","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:34.876 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.877 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9740640735","conversationType":1,"userID":"9740640735","groupID":"","showName":"å°įēĸ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.884 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.884 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9743886962","conversationType":1,"userID":"9743886962","groupID":"","showName":"leon","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.892 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.892 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9745952656","conversationType":1,"userID":"9745952656","groupID":"","showName":"å¤äŊŗæĄ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:34.899 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.899 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9751997142","conversationType":1,"userID":"9751997142","groupID":"","showName":"åžåĨŊ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:34.905 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.905 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9758913988","conversationType":1,"userID":"9758913988","groupID":"","showName":"dejohn","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.910 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.910 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9760925339","conversationType":1,"userID":"9760925339","groupID":"","showName":"ä¸čŋ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.916 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.916 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9761298760","conversationType":1,"userID":"9761298760","groupID":"","showName":"wjt123125","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.921 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.921 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9762221880","conversationType":1,"userID":"9762221880","groupID":"","showName":"h123456","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.926 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.926 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9762257538","conversationType":1,"userID":"9762257538","groupID":"","showName":"Snowyoung","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.931 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.931 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9762702751","conversationType":1,"userID":"9762702751","groupID":"","showName":"kk","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:34.935 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.935 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9762995627","conversationType":1,"userID":"9762995627","groupID":"","showName":"æåą","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.943 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.944 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9765318831","conversationType":1,"userID":"9765318831","groupID":"","showName":"åž","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.961 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.962 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9765325563","conversationType":1,"userID":"9765325563","groupID":"","showName":"éčĄ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.970 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.970 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9769121468","conversationType":1,"userID":"9769121468","groupID":"","showName":"dyn4771","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.977 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.977 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9771313310","conversationType":1,"userID":"9771313310","groupID":"","showName":"Test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:34.984 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.984 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9773300745","conversationType":1,"userID":"9773300745","groupID":"","showName":"lmm","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:34.990 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.990 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9778520303","conversationType":1,"userID":"9778520303","groupID":"","showName":"ååååå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:34.995 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:34.995 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9783316715","conversationType":1,"userID":"9783316715","groupID":"","showName":"æ¨å","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.000 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.001 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9783788754","conversationType":1,"userID":"9783788754","groupID":"","showName":"riversdark","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.006 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.006 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9784306149","conversationType":1,"userID":"9784306149","groupID":"","showName":"čąå°","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.011 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.012 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9786979096","conversationType":1,"userID":"9786979096","groupID":"","showName":"kkk","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.019 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.019 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9789697248","conversationType":1,"userID":"9789697248","groupID":"","showName":"įĒįĒäž ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:35.025 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.026 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9790545188","conversationType":1,"userID":"9790545188","groupID":"","showName":"WW","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.032 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.032 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9792414833","conversationType":1,"userID":"9792414833","groupID":"","showName":"text","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.040 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.041 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9793764585","conversationType":1,"userID":"9793764585","groupID":"","showName":"Mike","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.046 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.046 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9800821226","conversationType":1,"userID":"9800821226","groupID":"","showName":"Bitcoin","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.052 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.052 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9803514269","conversationType":1,"userID":"9803514269","groupID":"","showName":"guo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.058 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.058 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9808385174","conversationType":1,"userID":"9808385174","groupID":"","showName":"fmzh","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.063 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.064 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9810980246","conversationType":1,"userID":"9810980246","groupID":"","showName":"louis","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:35.068 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.068 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9811311058","conversationType":1,"userID":"9811311058","groupID":"","showName":"åŧ ä¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.074 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.074 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9811354776","conversationType":1,"userID":"9811354776","groupID":"","showName":"towqi","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.079 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.079 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9812341763","conversationType":1,"userID":"9812341763","groupID":"","showName":"sven","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.088 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.088 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9815283232","conversationType":1,"userID":"9815283232","groupID":"","showName":"ååŊsssa","faceURL":"https://web.rentsoft.cn/api_enterprise/object/9815283232/image_cropper_1703210813293.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.098 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.098 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9817116271","conversationType":1,"userID":"9817116271","groupID":"","showName":"mydawn","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.105 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.106 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9820063434","conversationType":1,"userID":"9820063434","groupID":"","showName":"čļå°ŧ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:35.113 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.113 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9820372523","conversationType":1,"userID":"9820372523","groupID":"","showName":"Mortal","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:35.119 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.119 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9827942549","conversationType":1,"userID":"9827942549","groupID":"","showName":"åēå°š","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.125 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.126 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9829542126","conversationType":1,"userID":"9829542126","groupID":"","showName":"ã","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.131 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.132 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9833458575","conversationType":1,"userID":"9833458575","groupID":"","showName":"michael","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.136 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.136 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9835297214","conversationType":1,"userID":"9835297214","groupID":"","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.142 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.142 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9840028485","conversationType":1,"userID":"9840028485","groupID":"","showName":"kaikai","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.147 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.147 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9840166478","conversationType":1,"userID":"9840166478","groupID":"","showName":"vi","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:35.152 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.152 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9841449469","conversationType":1,"userID":"9841449469","groupID":"","showName":"VE","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:35.158 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.159 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9844056821","conversationType":1,"userID":"9844056821","groupID":"","showName":"ææ°","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.167 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.167 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9845775616","conversationType":1,"userID":"9845775616","groupID":"","showName":"čĨŋįįå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.174 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.174 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9845972476","conversationType":1,"userID":"9845972476","groupID":"","showName":"éŠŦæ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.180 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.180 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9846367663","conversationType":1,"userID":"9846367663","groupID":"","showName":"Niven","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.185 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.185 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9846974241","conversationType":1,"userID":"9846974241","groupID":"","showName":"seven","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.190 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.191 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9848437402","conversationType":1,"userID":"9848437402","groupID":"","showName":"æ¨å¤´","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:35.196 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.196 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9852576405","conversationType":1,"userID":"9852576405","groupID":"","showName":"aa","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:35.201 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.201 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9852778536","conversationType":1,"userID":"9852778536","groupID":"","showName":"Nico","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.206 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.206 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9859217551","conversationType":1,"userID":"9859217551","groupID":"","showName":"chao","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:35.212 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.212 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9860289710","conversationType":1,"userID":"9860289710","groupID":"","showName":"eh","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.217 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.217 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9860821940","conversationType":1,"userID":"9860821940","groupID":"","showName":"tsker","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:35.223 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.223 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9862545908","conversationType":1,"userID":"9862545908","groupID":"","showName":"å°åéĨŧåš˛","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:35.229 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.229 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9863185338","conversationType":1,"userID":"9863185338","groupID":"","showName":"luckycoder","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:35.236 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.236 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9868600919","conversationType":1,"userID":"9868600919","groupID":"","showName":"kevin96","faceURL":"https://web.rentsoft.cn/api_enterprise/object/openIM123456/WeChatd1084e59e8fbe01350d6b9c773e8e910.jpg","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.243 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.244 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9870300498","conversationType":1,"userID":"9870300498","groupID":"","showName":"zb","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.251 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.252 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9871424491","conversationType":1,"userID":"9871424491","groupID":"","showName":"bruo","faceURL":"ic_avatar_06","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:35.260 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.262 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9871558792","conversationType":1,"userID":"9871558792","groupID":"","showName":"čŋˇæ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.276 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.277 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9874112427","conversationType":1,"userID":"9874112427","groupID":"","showName":"echo","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.284 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.284 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9874390196","conversationType":1,"userID":"9874390196","groupID":"","showName":"æĩŽå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.291 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.291 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9875288022","conversationType":1,"userID":"9875288022","groupID":"","showName":"Jason","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.297 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.297 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9875597823","conversationType":1,"userID":"9875597823","groupID":"","showName":"test","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.303 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.303 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9879946936","conversationType":1,"userID":"9879946936","groupID":"","showName":"夊éŖčŊŠ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.309 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.310 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9883171407","conversationType":1,"userID":"9883171407","groupID":"","showName":"aa123456","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.315 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.316 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9885315814","conversationType":1,"userID":"9885315814","groupID":"","showName":"yun","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.320 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.320 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9889105718","conversationType":1,"userID":"9889105718","groupID":"","showName":"xuqing","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.326 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.326 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9893953153","conversationType":1,"userID":"9893953153","groupID":"","showName":"luke","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:35.333 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.334 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9894477008","conversationType":1,"userID":"9894477008","groupID":"","showName":"you","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.343 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.343 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9901933233","conversationType":1,"userID":"9901933233","groupID":"","showName":"dean","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.349 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.350 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9910194984","conversationType":1,"userID":"9910194984","groupID":"","showName":"æ¸
æ°´æ˛ŗį","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:35.358 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.359 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9912087463","conversationType":1,"userID":"9912087463","groupID":"","showName":"rainyday","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.371 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.372 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9913922612","conversationType":1,"userID":"9913922612","groupID":"","showName":"a","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:35.380 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.381 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9914300355","conversationType":1,"userID":"9914300355","groupID":"","showName":"jaimy","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.388 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.389 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9915273695","conversationType":1,"userID":"9915273695","groupID":"","showName":"Alan","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.395 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.395 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9916361292","conversationType":1,"userID":"9916361292","groupID":"","showName":"qihua","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.402 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.402 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9920591606","conversationType":1,"userID":"9920591606","groupID":"","showName":"fc","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.407 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.408 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9924223480","conversationType":1,"userID":"9924223480","groupID":"","showName":"jason liao","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.413 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.413 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9926873986","conversationType":1,"userID":"9926873986","groupID":"","showName":"GA666666","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.418 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.418 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9928589670","conversationType":1,"userID":"9928589670","groupID":"","showName":"čé","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.425 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.425 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9929919200","conversationType":1,"userID":"9929919200","groupID":"","showName":"å
°å","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.433 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.433 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9930623477","conversationType":1,"userID":"9930623477","groupID":"","showName":"wolf","faceURL":"https://web.rentsoft.cn/api_enterprise/object/9930623477/baozi.webp","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:35.441 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.441 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9932444003","conversationType":1,"userID":"9932444003","groupID":"","showName":"æ
č","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.447 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.447 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9935307700","conversationType":1,"userID":"9935307700","groupID":"","showName":"Deepblue","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.453 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.454 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9939908351","conversationType":1,"userID":"9939908351","groupID":"","showName":"k","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.458 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.458 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9940283309","conversationType":1,"userID":"9940283309","groupID":"","showName":"įįĢ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.464 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.464 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9940929924","conversationType":1,"userID":"9940929924","groupID":"","showName":"įįĢå
Ŧä¸ģ","faceURL":"https://web.rentsoft.cn/api_enterprise/object/9940929924/data/user/0/cn.rentsoft.openim.flutter.rtc/cache/8704304c-da21-429c-b2e8-63fe0c599497/22ba830771efb794.gif","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:35.471 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.471 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9942703170","conversationType":1,"userID":"9942703170","groupID":"","showName":"haihai","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.476 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.476 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9942891463","conversationType":1,"userID":"9942891463","groupID":"","showName":"feilongxman","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.481 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.482 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9943302646","conversationType":1,"userID":"9943302646","groupID":"","showName":"1","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:35.487 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.488 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9945163346","conversationType":1,"userID":"9945163346","groupID":"","showName":"","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":true,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.493 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.493 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9947889277","conversationType":1,"userID":"9947889277","groupID":"","showName":"å°į ´æĩ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.524 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.524 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9951072285","conversationType":1,"userID":"9951072285","groupID":"","showName":"pk","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.533 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.535 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9956133955","conversationType":1,"userID":"9956133955","groupID":"","showName":"lxc","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.550 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.551 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9959516434","conversationType":1,"userID":"9959516434","groupID":"","showName":"zhanqia","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.559 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.560 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9960038846","conversationType":1,"userID":"9960038846","groupID":"","showName":"wgq","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.567 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.567 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9962903434","conversationType":1,"userID":"9962903434","groupID":"","showName":"åˇŽä¸å¤","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.573 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.574 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9970101670","conversationType":1,"userID":"9970101670","groupID":"","showName":"įąåčĄįŊå","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.579 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.579 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9970293910","conversationType":1,"userID":"9970293910","groupID":"","showName":"bory ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.586 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.586 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9970999905","conversationType":1,"userID":"9970999905","groupID":"","showName":"ghost","faceURL":"https://web.rentsoft.cn/api_enterprise/object/9970999905/违.png","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:35.591 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.591 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9972242149","conversationType":1,"userID":"9972242149","groupID":"","showName":"æĸæäŧ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.596 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.596 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9976280245","conversationType":1,"userID":"9976280245","groupID":"","showName":"čĄäģéš","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.601 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.601 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9976445095","conversationType":1,"userID":"9976445095","groupID":"","showName":"mumu","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.610 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.612 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9977492096","conversationType":1,"userID":"9977492096","groupID":"","showName":"Ossas777777777777777","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.625 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.625 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9980842418","conversationType":1,"userID":"9980842418","groupID":"","showName":"åĒ大ä¸","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.633 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.634 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9981239412","conversationType":1,"userID":"9981239412","groupID":"","showName":"čŊģįåŠæ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:35.640 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.640 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9984169865","conversationType":1,"userID":"9984169865","groupID":"","showName":"įįˇ","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.645 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.646 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9987229337","conversationType":1,"userID":"9987229337","groupID":"","showName":"alisend","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.651 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.652 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9989242253","conversationType":1,"userID":"9989242253","groupID":"","showName":"æįŠēä¸å¤é","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.657 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.658 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9990136696","conversationType":1,"userID":"9990136696","groupID":"","showName":"įąįžčįž","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":0,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":0,"isMsgDestruct":false}}
+2024-06-24 10:57:35.662 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.663 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_9997591117","conversationType":1,"userID":"9997591117","groupID":"","showName":"lllll","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:35.667 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.668 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_openIM123456","conversationType":1,"userID":"openIM123456","groupID":"","showName":"įŗģįģįŽĄįå","faceURL":"https://web.rentsoft.cn/api_enterprise/object/openIM123456/favicon.ico","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:35.673 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.673 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_openIM654321","conversationType":1,"userID":"openIM654321","groupID":"","showName":"chat2","faceURL":"https://web.rentsoft.cn/api_enterprise/object/openIM654321/åå Ą08.png","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:35.680 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.681 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:269] sync insert {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation", "server": {"conversationID":"si_1695766238_openIMAdmin","conversationType":1,"userID":"openIMAdmin","groupID":"","showName":"system3","faceURL":"","recvMsgOpt":0,"unreadCount":0,"groupAtType":0,"latestMsg":"","latestMsgSendTime":0,"draftText":"","draftTextTime":0,"isPinned":false,"isPrivateChat":false,"burnDuration":30,"isNotInGroup":false,"updateUnreadCountTime":0,"attachedInfo":"","ex":"","maxSeq":0,"minSeq":0,"hasReadSeq":0,"msgDestructTime":604800,"isMsgDestruct":false}}
+2024-06-24 10:57:35.695 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [test/t_conversation_msg.go:674] OnConversationChanged. {"operationID": "1719197813759468572", "returnList is": "[]"}
+2024-06-24 10:57:35.696 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [syncer/syncer.go:240] sync success {"operationID": "1719197817604066041", "type": "model_struct.LocalConversation"}
+2024-06-24 10:57:49.808 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:316] ping and getMaxSeq start {"operationID": "1719197870345954616", "goroutine ID:": 58}
+2024-06-24 10:57:50.730 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:437] recv msg {"operationID": "1719197870345954616", "errCode": 0, "errMsg": "", "reqIdentifier": 1001}
+2024-06-24 10:57:50.731 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:131] recv max seqs from long conn mgr, start sync msgs {"operationID": "1719197870345954616", "cmd": "maxSeq", "value": {"ConversationMaxSeqOnSvr":{"n_1695766238_7122229636":1,"sg_105081877":2,"sg_1177987017":2,"sg_1254300734":1,"sg_161019322":3,"sg_2300748497":2,"sg_2836218947":2,"sg_3187706596":3,"sg_3896488295":1,"sg_3926645279":18,"sg_3927081813":1,"sg_84614448":2,"si_1695766238_5967938442":1,"si_1695766238_7122229636":1}}}
+2024-06-24 10:57:50.733 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:306] noting conversation to sync {"operationID": "1719197817604066041", "syncMsgNum": 10}
+2024-06-24 10:58:16.797 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:316] ping and getMaxSeq start {"operationID": "1719197900165663404", "goroutine ID:": 58}
+2024-06-24 10:58:17.739 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:437] recv msg {"operationID": "1719197900165663404", "errCode": 0, "errMsg": "", "reqIdentifier": 1001}
+2024-06-24 10:58:17.741 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:131] recv max seqs from long conn mgr, start sync msgs {"operationID": "1719197900165663404", "cmd": "maxSeq", "value": {"ConversationMaxSeqOnSvr":{"n_1695766238_7122229636":1,"sg_105081877":2,"sg_1177987017":2,"sg_1254300734":1,"sg_161019322":3,"sg_2300748497":2,"sg_2836218947":2,"sg_3187706596":3,"sg_3896488295":1,"sg_3926645279":18,"sg_3927081813":1,"sg_84614448":2,"si_1695766238_5967938442":1,"si_1695766238_7122229636":1}}}
+2024-06-24 10:58:17.742 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:306] noting conversation to sync {"operationID": "1719197817604066041", "syncMsgNum": 10}
+2024-06-24 10:58:43.803 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:316] ping and getMaxSeq start {"operationID": "1719197925439770208", "goroutine ID:": 58}
+2024-06-24 10:58:44.694 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:437] recv msg {"operationID": "1719197925439770208", "errCode": 0, "errMsg": "", "reqIdentifier": 1001}
+2024-06-24 10:58:44.695 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:131] recv max seqs from long conn mgr, start sync msgs {"operationID": "1719197925439770208", "cmd": "maxSeq", "value": {"ConversationMaxSeqOnSvr":{"n_1695766238_7122229636":1,"sg_105081877":2,"sg_1177987017":2,"sg_1254300734":1,"sg_161019322":3,"sg_2300748497":2,"sg_2836218947":2,"sg_3187706596":3,"sg_3896488295":1,"sg_3926645279":18,"sg_3927081813":1,"sg_84614448":2,"si_1695766238_5967938442":1,"si_1695766238_7122229636":1}}}
+2024-06-24 10:58:44.697 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:306] noting conversation to sync {"operationID": "1719197817604066041", "syncMsgNum": 10}
+2024-06-24 10:59:10.803 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:316] ping and getMaxSeq start {"operationID": "1719197952823890407", "goroutine ID:": 58}
+2024-06-24 10:59:11.702 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:437] recv msg {"operationID": "1719197952823890407", "errCode": 0, "errMsg": "", "reqIdentifier": 1001}
+2024-06-24 10:59:11.703 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:131] recv max seqs from long conn mgr, start sync msgs {"operationID": "1719197952823890407", "cmd": "maxSeq", "value": {"ConversationMaxSeqOnSvr":{"n_1695766238_7122229636":1,"sg_105081877":2,"sg_1177987017":2,"sg_1254300734":1,"sg_161019322":3,"sg_2300748497":2,"sg_2836218947":2,"sg_3187706596":3,"sg_3896488295":1,"sg_3926645279":18,"sg_3927081813":1,"sg_84614448":2,"si_1695766238_5967938442":1,"si_1695766238_7122229636":1}}}
+2024-06-24 10:59:11.703 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:306] noting conversation to sync {"operationID": "1719197817604066041", "syncMsgNum": 10}
+2024-06-24 10:59:37.807 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:316] ping and getMaxSeq start {"operationID": "1719197981671739070", "goroutine ID:": 58}
+2024-06-24 10:59:38.688 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:437] recv msg {"operationID": "1719197981671739070", "errCode": 0, "errMsg": "", "reqIdentifier": 1001}
+2024-06-24 10:59:38.688 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:131] recv max seqs from long conn mgr, start sync msgs {"operationID": "1719197981671739070", "cmd": "maxSeq", "value": {"ConversationMaxSeqOnSvr":{"n_1695766238_7122229636":1,"sg_105081877":2,"sg_1177987017":2,"sg_1254300734":1,"sg_161019322":3,"sg_2300748497":2,"sg_2836218947":2,"sg_3187706596":3,"sg_3896488295":1,"sg_3926645279":18,"sg_3927081813":1,"sg_84614448":2,"si_1695766238_5967938442":1,"si_1695766238_7122229636":1}}}
+2024-06-24 10:59:38.688 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:306] noting conversation to sync {"operationID": "1719197817604066041", "syncMsgNum": 10}
+2024-06-24 11:00:04.803 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:316] ping and getMaxSeq start {"operationID": "1719198008426011640", "goroutine ID:": 58}
+2024-06-24 11:00:05.723 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:437] recv msg {"operationID": "1719198008426011640", "errCode": 0, "errMsg": "", "reqIdentifier": 1001}
+2024-06-24 11:00:05.725 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:131] recv max seqs from long conn mgr, start sync msgs {"operationID": "1719198008426011640", "cmd": "maxSeq", "value": {"ConversationMaxSeqOnSvr":{"n_1695766238_7122229636":1,"sg_105081877":2,"sg_1177987017":2,"sg_1254300734":1,"sg_161019322":3,"sg_2300748497":2,"sg_2836218947":2,"sg_3187706596":3,"sg_3896488295":1,"sg_3926645279":18,"sg_3927081813":1,"sg_84614448":2,"si_1695766238_5967938442":1,"si_1695766238_7122229636":1}}}
+2024-06-24 11:00:05.727 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:306] noting conversation to sync {"operationID": "1719197817604066041", "syncMsgNum": 10}
+2024-06-24 11:00:31.806 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:316] ping and getMaxSeq start {"operationID": "1719198033881460356", "goroutine ID:": 58}
+2024-06-24 11:00:32.712 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:437] recv msg {"operationID": "1719198033881460356", "errCode": 0, "errMsg": "", "reqIdentifier": 1001}
+2024-06-24 11:00:32.714 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:131] recv max seqs from long conn mgr, start sync msgs {"operationID": "1719198033881460356", "cmd": "maxSeq", "value": {"ConversationMaxSeqOnSvr":{"n_1695766238_7122229636":1,"sg_105081877":2,"sg_1177987017":2,"sg_1254300734":1,"sg_161019322":3,"sg_2300748497":2,"sg_2836218947":2,"sg_3187706596":3,"sg_3896488295":1,"sg_3926645279":18,"sg_3927081813":1,"sg_84614448":2,"si_1695766238_5967938442":1,"si_1695766238_7122229636":1}}}
+2024-06-24 11:00:32.715 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:306] noting conversation to sync {"operationID": "1719197817604066041", "syncMsgNum": 10}
+2024-06-24 11:00:58.797 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:316] ping and getMaxSeq start {"operationID": "1719198059654412239", "goroutine ID:": 58}
+2024-06-24 11:00:59.733 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:437] recv msg {"operationID": "1719198059654412239", "errCode": 0, "errMsg": "", "reqIdentifier": 1001}
+2024-06-24 11:00:59.735 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:131] recv max seqs from long conn mgr, start sync msgs {"operationID": "1719198059654412239", "cmd": "maxSeq", "value": {"ConversationMaxSeqOnSvr":{"n_1695766238_7122229636":1,"sg_105081877":2,"sg_1177987017":2,"sg_1254300734":1,"sg_161019322":3,"sg_2300748497":2,"sg_2836218947":2,"sg_3187706596":3,"sg_3896488295":1,"sg_3926645279":18,"sg_3927081813":1,"sg_84614448":2,"si_1695766238_5967938442":1,"si_1695766238_7122229636":1}}}
+2024-06-24 11:00:59.738 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:306] noting conversation to sync {"operationID": "1719197817604066041", "syncMsgNum": 10}
+2024-06-24 11:01:25.808 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:316] ping and getMaxSeq start {"operationID": "1719198086768300332", "goroutine ID:": 58}
+2024-06-24 11:01:27.005 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:437] recv msg {"operationID": "1719198086768300332", "errCode": 0, "errMsg": "", "reqIdentifier": 1001}
+2024-06-24 11:01:27.018 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:131] recv max seqs from long conn mgr, start sync msgs {"operationID": "1719198086768300332", "cmd": "maxSeq", "value": {"ConversationMaxSeqOnSvr":{"n_1695766238_7122229636":1,"sg_105081877":2,"sg_1177987017":2,"sg_1254300734":1,"sg_161019322":3,"sg_2300748497":2,"sg_2836218947":2,"sg_3187706596":3,"sg_3896488295":1,"sg_3926645279":18,"sg_3927081813":1,"sg_84614448":2,"si_1695766238_5967938442":1,"si_1695766238_7122229636":1}}}
+2024-06-24 11:01:27.019 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:306] noting conversation to sync {"operationID": "1719197817604066041", "syncMsgNum": 10}
+2024-06-24 11:01:52.795 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:316] ping and getMaxSeq start {"operationID": "1719198116386035676", "goroutine ID:": 58}
+2024-06-24 11:01:53.763 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:437] recv msg {"operationID": "1719198116386035676", "errCode": 0, "errMsg": "", "reqIdentifier": 1001}
+2024-06-24 11:01:53.764 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:131] recv max seqs from long conn mgr, start sync msgs {"operationID": "1719198116386035676", "cmd": "maxSeq", "value": {"ConversationMaxSeqOnSvr":{"n_1695766238_7122229636":1,"sg_105081877":2,"sg_1177987017":2,"sg_1254300734":1,"sg_161019322":3,"sg_2300748497":2,"sg_2836218947":2,"sg_3187706596":3,"sg_3896488295":1,"sg_3926645279":18,"sg_3927081813":1,"sg_84614448":2,"si_1695766238_5967938442":1,"si_1695766238_7122229636":1}}}
+2024-06-24 11:01:53.767 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:306] noting conversation to sync {"operationID": "1719197817604066041", "syncMsgNum": 10}
+2024-06-24 11:02:19.803 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:316] ping and getMaxSeq start {"operationID": "1719198142185913515", "goroutine ID:": 58}
+2024-06-24 11:02:20.755 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:437] recv msg {"operationID": "1719198142185913515", "errCode": 0, "errMsg": "", "reqIdentifier": 1001}
+2024-06-24 11:02:20.756 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:131] recv max seqs from long conn mgr, start sync msgs {"operationID": "1719198142185913515", "cmd": "maxSeq", "value": {"ConversationMaxSeqOnSvr":{"n_1695766238_7122229636":1,"sg_105081877":2,"sg_1177987017":2,"sg_1254300734":1,"sg_161019322":3,"sg_2300748497":2,"sg_2836218947":2,"sg_3187706596":3,"sg_3896488295":1,"sg_3926645279":18,"sg_3927081813":1,"sg_84614448":2,"si_1695766238_5967938442":1,"si_1695766238_7122229636":1}}}
+2024-06-24 11:02:20.757 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:306] noting conversation to sync {"operationID": "1719197817604066041", "syncMsgNum": 10}
+2024-06-24 11:02:46.801 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:316] ping and getMaxSeq start {"operationID": "1719198167241851553", "goroutine ID:": 58}
+2024-06-24 11:02:47.757 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:437] recv msg {"operationID": "1719198167241851553", "errCode": 0, "errMsg": "", "reqIdentifier": 1001}
+2024-06-24 11:02:47.758 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:131] recv max seqs from long conn mgr, start sync msgs {"operationID": "1719198167241851553", "cmd": "maxSeq", "value": {"ConversationMaxSeqOnSvr":{"n_1695766238_7122229636":1,"sg_105081877":2,"sg_1177987017":2,"sg_1254300734":1,"sg_161019322":3,"sg_2300748497":2,"sg_2836218947":2,"sg_3187706596":3,"sg_3896488295":1,"sg_3926645279":18,"sg_3927081813":1,"sg_84614448":2,"si_1695766238_5967938442":1,"si_1695766238_7122229636":1}}}
+2024-06-24 11:02:47.760 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:306] noting conversation to sync {"operationID": "1719197817604066041", "syncMsgNum": 10}
+2024-06-24 11:03:13.799 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:316] ping and getMaxSeq start {"operationID": "1719198196228297407", "goroutine ID:": 58}
+2024-06-24 11:03:14.740 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:437] recv msg {"operationID": "1719198196228297407", "errCode": 0, "errMsg": "", "reqIdentifier": 1001}
+2024-06-24 11:03:14.740 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:131] recv max seqs from long conn mgr, start sync msgs {"operationID": "1719198196228297407", "cmd": "maxSeq", "value": {"ConversationMaxSeqOnSvr":{"n_1695766238_7122229636":1,"sg_105081877":2,"sg_1177987017":2,"sg_1254300734":1,"sg_161019322":3,"sg_2300748497":2,"sg_2836218947":2,"sg_3187706596":3,"sg_3896488295":1,"sg_3926645279":18,"sg_3927081813":1,"sg_84614448":2,"si_1695766238_5967938442":1,"si_1695766238_7122229636":1}}}
+2024-06-24 11:03:14.741 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:306] noting conversation to sync {"operationID": "1719197817604066041", "syncMsgNum": 10}
+2024-06-24 11:03:40.805 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:316] ping and getMaxSeq start {"operationID": "1719198223939599658", "goroutine ID:": 58}
+2024-06-24 11:03:41.710 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:437] recv msg {"operationID": "1719198223939599658", "errCode": 0, "errMsg": "", "reqIdentifier": 1001}
+2024-06-24 11:03:41.712 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:131] recv max seqs from long conn mgr, start sync msgs {"operationID": "1719198223939599658", "cmd": "maxSeq", "value": {"ConversationMaxSeqOnSvr":{"n_1695766238_7122229636":1,"sg_105081877":2,"sg_1177987017":2,"sg_1254300734":1,"sg_161019322":3,"sg_2300748497":2,"sg_2836218947":2,"sg_3187706596":3,"sg_3896488295":1,"sg_3926645279":18,"sg_3927081813":1,"sg_84614448":2,"si_1695766238_5967938442":1,"si_1695766238_7122229636":1}}}
+2024-06-24 11:03:41.713 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:306] noting conversation to sync {"operationID": "1719197817604066041", "syncMsgNum": 10}
+2024-06-24 11:04:07.806 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:316] ping and getMaxSeq start {"operationID": "1719198251641511772", "goroutine ID:": 58}
+2024-06-24 11:04:08.754 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:437] recv msg {"operationID": "1719198251641511772", "errCode": 0, "errMsg": "", "reqIdentifier": 1001}
+2024-06-24 11:04:08.756 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:131] recv max seqs from long conn mgr, start sync msgs {"operationID": "1719198251641511772", "cmd": "maxSeq", "value": {"ConversationMaxSeqOnSvr":{"n_1695766238_7122229636":1,"sg_105081877":2,"sg_1177987017":2,"sg_1254300734":1,"sg_161019322":3,"sg_2300748497":2,"sg_2836218947":2,"sg_3187706596":3,"sg_3896488295":1,"sg_3926645279":18,"sg_3927081813":1,"sg_84614448":2,"si_1695766238_5967938442":1,"si_1695766238_7122229636":1}}}
+2024-06-24 11:04:08.757 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:306] noting conversation to sync {"operationID": "1719197817604066041", "syncMsgNum": 10}
+2024-06-24 11:04:34.798 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:316] ping and getMaxSeq start {"operationID": "1719198278048962081", "goroutine ID:": 58}
+2024-06-24 11:04:35.773 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:437] recv msg {"operationID": "1719198278048962081", "errCode": 0, "errMsg": "", "reqIdentifier": 1001}
+2024-06-24 11:04:35.774 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:131] recv max seqs from long conn mgr, start sync msgs {"operationID": "1719198278048962081", "cmd": "maxSeq", "value": {"ConversationMaxSeqOnSvr":{"n_1695766238_7122229636":1,"sg_105081877":2,"sg_1177987017":2,"sg_1254300734":1,"sg_161019322":3,"sg_2300748497":2,"sg_2836218947":2,"sg_3187706596":3,"sg_3896488295":1,"sg_3926645279":18,"sg_3927081813":1,"sg_84614448":2,"si_1695766238_5967938442":1,"si_1695766238_7122229636":1}}}
+2024-06-24 11:04:35.776 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:306] noting conversation to sync {"operationID": "1719197817604066041", "syncMsgNum": 10}
+2024-06-24 11:05:01.807 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:316] ping and getMaxSeq start {"operationID": "1719198302814140974", "goroutine ID:": 58}
+2024-06-24 11:05:02.755 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:437] recv msg {"operationID": "1719198302814140974", "errCode": 0, "errMsg": "", "reqIdentifier": 1001}
+2024-06-24 11:05:02.757 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:131] recv max seqs from long conn mgr, start sync msgs {"operationID": "1719198302814140974", "cmd": "maxSeq", "value": {"ConversationMaxSeqOnSvr":{"n_1695766238_7122229636":1,"sg_105081877":2,"sg_1177987017":2,"sg_1254300734":1,"sg_161019322":3,"sg_2300748497":2,"sg_2836218947":2,"sg_3187706596":3,"sg_3896488295":1,"sg_3926645279":18,"sg_3927081813":1,"sg_84614448":2,"si_1695766238_5967938442":1,"si_1695766238_7122229636":1}}}
+2024-06-24 11:05:02.760 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:306] noting conversation to sync {"operationID": "1719197817604066041", "syncMsgNum": 10}
+2024-06-24 11:05:28.807 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:316] ping and getMaxSeq start {"operationID": "1719198328933199398", "goroutine ID:": 58}
+2024-06-24 11:05:29.760 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:437] recv msg {"operationID": "1719198328933199398", "errCode": 0, "errMsg": "", "reqIdentifier": 1001}
+2024-06-24 11:05:29.761 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:131] recv max seqs from long conn mgr, start sync msgs {"operationID": "1719198328933199398", "cmd": "maxSeq", "value": {"ConversationMaxSeqOnSvr":{"n_1695766238_7122229636":1,"sg_105081877":2,"sg_1177987017":2,"sg_1254300734":1,"sg_161019322":3,"sg_2300748497":2,"sg_2836218947":2,"sg_3187706596":3,"sg_3896488295":1,"sg_3926645279":18,"sg_3927081813":1,"sg_84614448":2,"si_1695766238_5967938442":1,"si_1695766238_7122229636":1}}}
+2024-06-24 11:05:29.763 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:306] noting conversation to sync {"operationID": "1719197817604066041", "syncMsgNum": 10}
+2024-06-24 11:05:55.798 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:316] ping and getMaxSeq start {"operationID": "1719198359441733043", "goroutine ID:": 58}
+2024-06-24 11:05:56.725 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:437] recv msg {"operationID": "1719198359441733043", "errCode": 0, "errMsg": "", "reqIdentifier": 1001}
+2024-06-24 11:05:56.726 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:131] recv max seqs from long conn mgr, start sync msgs {"operationID": "1719198359441733043", "cmd": "maxSeq", "value": {"ConversationMaxSeqOnSvr":{"n_1695766238_7122229636":1,"sg_105081877":2,"sg_1177987017":2,"sg_1254300734":1,"sg_161019322":3,"sg_2300748497":2,"sg_2836218947":2,"sg_3187706596":3,"sg_3896488295":1,"sg_3926645279":18,"sg_3927081813":1,"sg_84614448":2,"si_1695766238_5967938442":1,"si_1695766238_7122229636":1}}}
+2024-06-24 11:05:56.728 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:306] noting conversation to sync {"operationID": "1719197817604066041", "syncMsgNum": 10}
+2024-06-24 11:06:22.805 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:316] ping and getMaxSeq start {"operationID": "1719198385939836874", "goroutine ID:": 58}
+2024-06-24 11:06:23.758 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:437] recv msg {"operationID": "1719198385939836874", "errCode": 0, "errMsg": "", "reqIdentifier": 1001}
+2024-06-24 11:06:23.759 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:131] recv max seqs from long conn mgr, start sync msgs {"operationID": "1719198385939836874", "cmd": "maxSeq", "value": {"ConversationMaxSeqOnSvr":{"n_1695766238_7122229636":1,"sg_105081877":2,"sg_1177987017":2,"sg_1254300734":1,"sg_161019322":3,"sg_2300748497":2,"sg_2836218947":2,"sg_3187706596":3,"sg_3896488295":1,"sg_3926645279":18,"sg_3927081813":1,"sg_84614448":2,"si_1695766238_5967938442":1,"si_1695766238_7122229636":1}}}
+2024-06-24 11:06:23.759 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:306] noting conversation to sync {"operationID": "1719197817604066041", "syncMsgNum": 10}
+2024-06-24 11:06:49.838 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:316] ping and getMaxSeq start {"operationID": "1719198410743727127", "goroutine ID:": 58}
+2024-06-24 11:06:50.805 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:437] recv msg {"operationID": "1719198410743727127", "errCode": 0, "errMsg": "", "reqIdentifier": 1001}
+2024-06-24 11:06:50.811 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:131] recv max seqs from long conn mgr, start sync msgs {"operationID": "1719198410743727127", "cmd": "maxSeq", "value": {"ConversationMaxSeqOnSvr":{"n_1695766238_7122229636":1,"sg_105081877":2,"sg_1177987017":2,"sg_1254300734":1,"sg_161019322":3,"sg_2300748497":2,"sg_2836218947":2,"sg_3187706596":3,"sg_3896488295":1,"sg_3926645279":18,"sg_3927081813":1,"sg_84614448":2,"si_1695766238_5967938442":1,"si_1695766238_7122229636":1}}}
+2024-06-24 11:06:50.813 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:306] noting conversation to sync {"operationID": "1719197817604066041", "syncMsgNum": 10}
+2024-06-24 11:07:16.795 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:316] ping and getMaxSeq start {"operationID": "1719198438765892063", "goroutine ID:": 58}
+2024-06-24 11:07:17.701 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:437] recv msg {"operationID": "1719198438765892063", "errCode": 0, "errMsg": "", "reqIdentifier": 1001}
+2024-06-24 11:07:17.704 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:131] recv max seqs from long conn mgr, start sync msgs {"operationID": "1719198438765892063", "cmd": "maxSeq", "value": {"ConversationMaxSeqOnSvr":{"n_1695766238_7122229636":1,"sg_105081877":2,"sg_1177987017":2,"sg_1254300734":1,"sg_161019322":3,"sg_2300748497":2,"sg_2836218947":2,"sg_3187706596":3,"sg_3896488295":1,"sg_3926645279":18,"sg_3927081813":1,"sg_84614448":2,"si_1695766238_5967938442":1,"si_1695766238_7122229636":1}}}
+2024-06-24 11:07:17.707 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:306] noting conversation to sync {"operationID": "1719197817604066041", "syncMsgNum": 10}
+2024-06-24 11:07:43.798 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:316] ping and getMaxSeq start {"operationID": "1719198463934970896", "goroutine ID:": 58}
+2024-06-24 11:07:44.755 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:437] recv msg {"operationID": "1719198463934970896", "errCode": 0, "errMsg": "", "reqIdentifier": 1001}
+2024-06-24 11:07:44.757 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:131] recv max seqs from long conn mgr, start sync msgs {"operationID": "1719198463934970896", "cmd": "maxSeq", "value": {"ConversationMaxSeqOnSvr":{"n_1695766238_7122229636":1,"sg_105081877":2,"sg_1177987017":2,"sg_1254300734":1,"sg_161019322":3,"sg_2300748497":2,"sg_2836218947":2,"sg_3187706596":3,"sg_3896488295":1,"sg_3926645279":18,"sg_3927081813":1,"sg_84614448":2,"si_1695766238_5967938442":1,"si_1695766238_7122229636":1}}}
+2024-06-24 11:07:44.760 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:306] noting conversation to sync {"operationID": "1719197817604066041", "syncMsgNum": 10}
+2024-06-24 11:08:10.798 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:316] ping and getMaxSeq start {"operationID": "1719198491123199053", "goroutine ID:": 58}
+2024-06-24 11:08:11.729 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:437] recv msg {"operationID": "1719198491123199053", "errCode": 0, "errMsg": "", "reqIdentifier": 1001}
+2024-06-24 11:08:11.731 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:131] recv max seqs from long conn mgr, start sync msgs {"operationID": "1719198491123199053", "cmd": "maxSeq", "value": {"ConversationMaxSeqOnSvr":{"n_1695766238_7122229636":1,"sg_105081877":2,"sg_1177987017":2,"sg_1254300734":1,"sg_161019322":3,"sg_2300748497":2,"sg_2836218947":2,"sg_3187706596":3,"sg_3896488295":1,"sg_3926645279":18,"sg_3927081813":1,"sg_84614448":2,"si_1695766238_5967938442":1,"si_1695766238_7122229636":1}}}
+2024-06-24 11:08:11.733 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:306] noting conversation to sync {"operationID": "1719197817604066041", "syncMsgNum": 10}
+2024-06-24 11:08:37.799 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:316] ping and getMaxSeq start {"operationID": "1719198520237493854", "goroutine ID:": 58}
+2024-06-24 11:08:38.741 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:437] recv msg {"operationID": "1719198520237493854", "errCode": 0, "errMsg": "", "reqIdentifier": 1001}
+2024-06-24 11:08:38.743 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:131] recv max seqs from long conn mgr, start sync msgs {"operationID": "1719198520237493854", "cmd": "maxSeq", "value": {"ConversationMaxSeqOnSvr":{"n_1695766238_7122229636":1,"sg_105081877":2,"sg_1177987017":2,"sg_1254300734":1,"sg_161019322":3,"sg_2300748497":2,"sg_2836218947":2,"sg_3187706596":3,"sg_3896488295":1,"sg_3926645279":18,"sg_3927081813":1,"sg_84614448":2,"si_1695766238_5967938442":1,"si_1695766238_7122229636":1}}}
+2024-06-24 11:08:38.745 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:306] noting conversation to sync {"operationID": "1719197817604066041", "syncMsgNum": 10}
+2024-06-24 11:09:04.808 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:316] ping and getMaxSeq start {"operationID": "1719198547436772008", "goroutine ID:": 58}
+2024-06-24 11:09:05.916 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:437] recv msg {"operationID": "1719198547436772008", "errCode": 0, "errMsg": "", "reqIdentifier": 1001}
+2024-06-24 11:09:05.916 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:131] recv max seqs from long conn mgr, start sync msgs {"operationID": "1719198547436772008", "cmd": "maxSeq", "value": {"ConversationMaxSeqOnSvr":{"n_1695766238_7122229636":1,"sg_105081877":2,"sg_1177987017":2,"sg_1254300734":1,"sg_161019322":3,"sg_2300748497":2,"sg_2836218947":2,"sg_3187706596":3,"sg_3896488295":1,"sg_3926645279":18,"sg_3927081813":1,"sg_84614448":2,"si_1695766238_5967938442":1,"si_1695766238_7122229636":1}}}
+2024-06-24 11:09:05.917 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:306] noting conversation to sync {"operationID": "1719197817604066041", "syncMsgNum": 10}
+2024-06-24 11:09:31.806 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:316] ping and getMaxSeq start {"operationID": "1719198576009729910", "goroutine ID:": 58}
+2024-06-24 11:09:32.720 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:437] recv msg {"operationID": "1719198576009729910", "errCode": 0, "errMsg": "", "reqIdentifier": 1001}
+2024-06-24 11:09:32.722 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:131] recv max seqs from long conn mgr, start sync msgs {"operationID": "1719198576009729910", "cmd": "maxSeq", "value": {"ConversationMaxSeqOnSvr":{"n_1695766238_7122229636":1,"sg_105081877":2,"sg_1177987017":2,"sg_1254300734":1,"sg_161019322":3,"sg_2300748497":2,"sg_2836218947":2,"sg_3187706596":3,"sg_3896488295":1,"sg_3926645279":18,"sg_3927081813":1,"sg_84614448":2,"si_1695766238_5967938442":1,"si_1695766238_7122229636":1}}}
+2024-06-24 11:09:32.723 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:306] noting conversation to sync {"operationID": "1719197817604066041", "syncMsgNum": 10}
+2024-06-24 11:09:58.797 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:316] ping and getMaxSeq start {"operationID": "1719198599143144535", "goroutine ID:": 58}
+2024-06-24 11:09:59.736 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:437] recv msg {"operationID": "1719198599143144535", "errCode": 0, "errMsg": "", "reqIdentifier": 1001}
+2024-06-24 11:09:59.737 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:131] recv max seqs from long conn mgr, start sync msgs {"operationID": "1719198599143144535", "cmd": "maxSeq", "value": {"ConversationMaxSeqOnSvr":{"n_1695766238_7122229636":1,"sg_105081877":2,"sg_1177987017":2,"sg_1254300734":1,"sg_161019322":3,"sg_2300748497":2,"sg_2836218947":2,"sg_3187706596":3,"sg_3896488295":1,"sg_3926645279":18,"sg_3927081813":1,"sg_84614448":2,"si_1695766238_5967938442":1,"si_1695766238_7122229636":1}}}
+2024-06-24 11:09:59.737 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:306] noting conversation to sync {"operationID": "1719197817604066041", "syncMsgNum": 10}
+2024-06-24 11:10:25.794 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:316] ping and getMaxSeq start {"operationID": "1719198626604547578", "goroutine ID:": 58}
+2024-06-24 11:10:26.706 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:437] recv msg {"operationID": "1719198626604547578", "errCode": 0, "errMsg": "", "reqIdentifier": 1001}
+2024-06-24 11:10:26.713 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:131] recv max seqs from long conn mgr, start sync msgs {"operationID": "1719198626604547578", "cmd": "maxSeq", "value": {"ConversationMaxSeqOnSvr":{"n_1695766238_7122229636":1,"sg_105081877":2,"sg_1177987017":2,"sg_1254300734":1,"sg_161019322":3,"sg_2300748497":2,"sg_2836218947":2,"sg_3187706596":3,"sg_3896488295":1,"sg_3926645279":18,"sg_3927081813":1,"sg_84614448":2,"si_1695766238_5967938442":1,"si_1695766238_7122229636":1}}}
+2024-06-24 11:10:26.737 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:306] noting conversation to sync {"operationID": "1719197817604066041", "syncMsgNum": 10}
+2024-06-24 11:10:52.820 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:316] ping and getMaxSeq start {"operationID": "1719198654276629261", "goroutine ID:": 58}
+2024-06-24 11:10:53.761 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:437] recv msg {"operationID": "1719198654276629261", "errCode": 0, "errMsg": "", "reqIdentifier": 1001}
+2024-06-24 11:10:53.762 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:131] recv max seqs from long conn mgr, start sync msgs {"operationID": "1719198654276629261", "cmd": "maxSeq", "value": {"ConversationMaxSeqOnSvr":{"n_1695766238_7122229636":1,"sg_105081877":2,"sg_1177987017":2,"sg_1254300734":1,"sg_161019322":3,"sg_2300748497":2,"sg_2836218947":2,"sg_3187706596":3,"sg_3896488295":1,"sg_3926645279":18,"sg_3927081813":1,"sg_84614448":2,"si_1695766238_5967938442":1,"si_1695766238_7122229636":1}}}
+2024-06-24 11:10:53.765 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:306] noting conversation to sync {"operationID": "1719197817604066041", "syncMsgNum": 10}
+2024-06-24 11:11:19.802 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:316] ping and getMaxSeq start {"operationID": "1719198680792742776", "goroutine ID:": 58}
+2024-06-24 11:11:20.738 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:437] recv msg {"operationID": "1719198680792742776", "errCode": 0, "errMsg": "", "reqIdentifier": 1001}
+2024-06-24 11:11:20.740 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:131] recv max seqs from long conn mgr, start sync msgs {"operationID": "1719198680792742776", "cmd": "maxSeq", "value": {"ConversationMaxSeqOnSvr":{"n_1695766238_7122229636":1,"sg_105081877":2,"sg_1177987017":2,"sg_1254300734":1,"sg_161019322":3,"sg_2300748497":2,"sg_2836218947":2,"sg_3187706596":3,"sg_3896488295":1,"sg_3926645279":18,"sg_3927081813":1,"sg_84614448":2,"si_1695766238_5967938442":1,"si_1695766238_7122229636":1}}}
+2024-06-24 11:11:20.741 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:306] noting conversation to sync {"operationID": "1719197817604066041", "syncMsgNum": 10}
+2024-06-24 11:11:46.807 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:316] ping and getMaxSeq start {"operationID": "1719198710309901790", "goroutine ID:": 58}
+2024-06-24 11:11:47.709 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:437] recv msg {"operationID": "1719198710309901790", "errCode": 0, "errMsg": "", "reqIdentifier": 1001}
+2024-06-24 11:11:47.711 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:131] recv max seqs from long conn mgr, start sync msgs {"operationID": "1719198710309901790", "cmd": "maxSeq", "value": {"ConversationMaxSeqOnSvr":{"n_1695766238_7122229636":1,"sg_105081877":2,"sg_1177987017":2,"sg_1254300734":1,"sg_161019322":3,"sg_2300748497":2,"sg_2836218947":2,"sg_3187706596":3,"sg_3896488295":1,"sg_3926645279":18,"sg_3927081813":1,"sg_84614448":2,"si_1695766238_5967938442":1,"si_1695766238_7122229636":1}}}
+2024-06-24 11:11:47.713 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:306] noting conversation to sync {"operationID": "1719197817604066041", "syncMsgNum": 10}
+2024-06-24 11:12:13.808 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:316] ping and getMaxSeq start {"operationID": "1719198734742498877", "goroutine ID:": 58}
+2024-06-24 11:12:14.757 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:437] recv msg {"operationID": "1719198734742498877", "errCode": 0, "errMsg": "", "reqIdentifier": 1001}
+2024-06-24 11:12:14.759 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:131] recv max seqs from long conn mgr, start sync msgs {"operationID": "1719198734742498877", "cmd": "maxSeq", "value": {"ConversationMaxSeqOnSvr":{"n_1695766238_7122229636":1,"sg_105081877":2,"sg_1177987017":2,"sg_1254300734":1,"sg_161019322":3,"sg_2300748497":2,"sg_2836218947":2,"sg_3187706596":3,"sg_3896488295":1,"sg_3926645279":18,"sg_3927081813":1,"sg_84614448":2,"si_1695766238_5967938442":1,"si_1695766238_7122229636":1}}}
+2024-06-24 11:12:14.762 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:306] noting conversation to sync {"operationID": "1719197817604066041", "syncMsgNum": 10}
+2024-06-24 11:12:40.795 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:316] ping and getMaxSeq start {"operationID": "1719198761876759075", "goroutine ID:": 58}
+2024-06-24 11:12:41.737 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:437] recv msg {"operationID": "1719198761876759075", "errCode": 0, "errMsg": "", "reqIdentifier": 1001}
+2024-06-24 11:12:41.739 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:131] recv max seqs from long conn mgr, start sync msgs {"operationID": "1719198761876759075", "cmd": "maxSeq", "value": {"ConversationMaxSeqOnSvr":{"n_1695766238_7122229636":1,"sg_105081877":2,"sg_1177987017":2,"sg_1254300734":1,"sg_161019322":3,"sg_2300748497":2,"sg_2836218947":2,"sg_3187706596":3,"sg_3896488295":1,"sg_3926645279":18,"sg_3927081813":1,"sg_84614448":2,"si_1695766238_5967938442":1,"si_1695766238_7122229636":1}}}
+2024-06-24 11:12:41.740 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:306] noting conversation to sync {"operationID": "1719197817604066041", "syncMsgNum": 10}
+2024-06-24 11:13:07.796 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:316] ping and getMaxSeq start {"operationID": "1719198791953375484", "goroutine ID:": 58}
+2024-06-24 11:13:08.725 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:437] recv msg {"operationID": "1719198791953375484", "errCode": 0, "errMsg": "", "reqIdentifier": 1001}
+2024-06-24 11:13:08.727 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:131] recv max seqs from long conn mgr, start sync msgs {"operationID": "1719198791953375484", "cmd": "maxSeq", "value": {"ConversationMaxSeqOnSvr":{"n_1695766238_7122229636":1,"sg_105081877":2,"sg_1177987017":2,"sg_1254300734":1,"sg_161019322":3,"sg_2300748497":2,"sg_2836218947":2,"sg_3187706596":3,"sg_3896488295":1,"sg_3926645279":18,"sg_3927081813":1,"sg_84614448":2,"si_1695766238_5967938442":1,"si_1695766238_7122229636":1}}}
+2024-06-24 11:13:08.728 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:306] noting conversation to sync {"operationID": "1719197817604066041", "syncMsgNum": 10}
+2024-06-24 11:13:34.800 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:316] ping and getMaxSeq start {"operationID": "1719198815666569128", "goroutine ID:": 58}
+2024-06-24 11:13:35.784 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:437] recv msg {"operationID": "1719198815666569128", "errCode": 0, "errMsg": "", "reqIdentifier": 1001}
+2024-06-24 11:13:35.784 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:131] recv max seqs from long conn mgr, start sync msgs {"operationID": "1719198815666569128", "cmd": "maxSeq", "value": {"ConversationMaxSeqOnSvr":{"n_1695766238_7122229636":1,"sg_105081877":2,"sg_1177987017":2,"sg_1254300734":1,"sg_161019322":3,"sg_2300748497":2,"sg_2836218947":2,"sg_3187706596":3,"sg_3896488295":1,"sg_3926645279":18,"sg_3927081813":1,"sg_84614448":2,"si_1695766238_5967938442":1,"si_1695766238_7122229636":1}}}
+2024-06-24 11:13:35.785 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:306] noting conversation to sync {"operationID": "1719197817604066041", "syncMsgNum": 10}
+2024-06-24 11:14:01.807 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:316] ping and getMaxSeq start {"operationID": "1719198845154997310", "goroutine ID:": 58}
+2024-06-24 11:14:02.743 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:437] recv msg {"operationID": "1719198845154997310", "errCode": 0, "errMsg": "", "reqIdentifier": 1001}
+2024-06-24 11:14:02.745 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:131] recv max seqs from long conn mgr, start sync msgs {"operationID": "1719198845154997310", "cmd": "maxSeq", "value": {"ConversationMaxSeqOnSvr":{"n_1695766238_7122229636":1,"sg_105081877":2,"sg_1177987017":2,"sg_1254300734":1,"sg_161019322":3,"sg_2300748497":2,"sg_2836218947":2,"sg_3187706596":3,"sg_3896488295":1,"sg_3926645279":18,"sg_3927081813":1,"sg_84614448":2,"si_1695766238_5967938442":1,"si_1695766238_7122229636":1}}}
+2024-06-24 11:14:02.747 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:306] noting conversation to sync {"operationID": "1719197817604066041", "syncMsgNum": 10}
+2024-06-24 11:14:28.799 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:316] ping and getMaxSeq start {"operationID": "1719198870948483578", "goroutine ID:": 58}
+2024-06-24 11:14:32.637 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:437] recv msg {"operationID": "1719198870948483578", "errCode": 0, "errMsg": "", "reqIdentifier": 1001}
+2024-06-24 11:14:32.637 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:131] recv max seqs from long conn mgr, start sync msgs {"operationID": "1719198870948483578", "cmd": "maxSeq", "value": {"ConversationMaxSeqOnSvr":{"n_1695766238_7122229636":1,"sg_105081877":2,"sg_1177987017":2,"sg_1254300734":1,"sg_161019322":3,"sg_2300748497":2,"sg_2836218947":2,"sg_3187706596":3,"sg_3896488295":1,"sg_3926645279":18,"sg_3927081813":1,"sg_84614448":2,"si_1695766238_5967938442":1,"si_1695766238_7122229636":1}}}
+2024-06-24 11:14:32.637 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:306] noting conversation to sync {"operationID": "1719197817604066041", "syncMsgNum": 10}
+2024-06-24 11:14:55.795 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:316] ping and getMaxSeq start {"operationID": "1719198899764350123", "goroutine ID:": 58}
+2024-06-24 11:14:56.750 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:437] recv msg {"operationID": "1719198899764350123", "errCode": 0, "errMsg": "", "reqIdentifier": 1001}
+2024-06-24 11:14:56.752 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:131] recv max seqs from long conn mgr, start sync msgs {"operationID": "1719198899764350123", "cmd": "maxSeq", "value": {"ConversationMaxSeqOnSvr":{"n_1695766238_7122229636":1,"sg_105081877":2,"sg_1177987017":2,"sg_1254300734":1,"sg_161019322":3,"sg_2300748497":2,"sg_2836218947":2,"sg_3187706596":3,"sg_3896488295":1,"sg_3926645279":18,"sg_3927081813":1,"sg_84614448":2,"si_1695766238_5967938442":1,"si_1695766238_7122229636":1}}}
+2024-06-24 11:14:56.753 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:306] noting conversation to sync {"operationID": "1719197817604066041", "syncMsgNum": 10}
+2024-06-24 11:15:22.796 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:316] ping and getMaxSeq start {"operationID": "1719198925738043550", "goroutine ID:": 58}
+2024-06-24 11:15:23.735 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:437] recv msg {"operationID": "1719198925738043550", "errCode": 0, "errMsg": "", "reqIdentifier": 1001}
+2024-06-24 11:15:23.735 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:131] recv max seqs from long conn mgr, start sync msgs {"operationID": "1719198925738043550", "cmd": "maxSeq", "value": {"ConversationMaxSeqOnSvr":{"n_1695766238_7122229636":1,"sg_105081877":2,"sg_1177987017":2,"sg_1254300734":1,"sg_161019322":3,"sg_2300748497":2,"sg_2836218947":2,"sg_3187706596":3,"sg_3896488295":1,"sg_3926645279":18,"sg_3927081813":1,"sg_84614448":2,"si_1695766238_5967938442":1,"si_1695766238_7122229636":1}}}
+2024-06-24 11:15:23.735 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:306] noting conversation to sync {"operationID": "1719197817604066041", "syncMsgNum": 10}
+2024-06-24 11:15:49.808 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:316] ping and getMaxSeq start {"operationID": "1719198950064712382", "goroutine ID:": 58}
+2024-06-24 11:15:50.724 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/long_conn_mgr.go:437] recv msg {"operationID": "1719198950064712382", "errCode": 0, "errMsg": "", "reqIdentifier": 1001}
+2024-06-24 11:15:50.726 [34mINFO[0m [34m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:131] recv max seqs from long conn mgr, start sync msgs {"operationID": "1719198950064712382", "cmd": "maxSeq", "value": {"ConversationMaxSeqOnSvr":{"n_1695766238_7122229636":1,"sg_105081877":2,"sg_1177987017":2,"sg_1254300734":1,"sg_161019322":3,"sg_2300748497":2,"sg_2836218947":2,"sg_3187706596":3,"sg_3896488295":1,"sg_3926645279":18,"sg_3927081813":1,"sg_84614448":2,"si_1695766238_5967938442":1,"si_1695766238_7122229636":1}}}
+2024-06-24 11:15:50.728 [37mDEBUG[0m [37m[PID:21964] [0m [version:3.5.13] [interaction/msg_sync.go:306] noting conversation to sync {"operationID": "1719197817604066041", "syncMsgNum": 10}
diff --git a/go/chao-sdk-core/open_im_sdk-sources.jar b/go/chao-sdk-core/open_im_sdk-sources.jar
new file mode 100644
index 0000000..6b33e7a
Binary files /dev/null and b/go/chao-sdk-core/open_im_sdk-sources.jar differ
diff --git a/go/chao-sdk-core/open_im_sdk.aar b/go/chao-sdk-core/open_im_sdk.aar
new file mode 100644
index 0000000..8ac68f6
Binary files /dev/null and b/go/chao-sdk-core/open_im_sdk.aar differ
diff --git a/go/chao-sdk-core/open_im_sdk/apicb.go b/go/chao-sdk-core/open_im_sdk/apicb.go
new file mode 100644
index 0000000..c36b312
--- /dev/null
+++ b/go/chao-sdk-core/open_im_sdk/apicb.go
@@ -0,0 +1,53 @@
+package open_im_sdk
+
+import (
+ "context"
+ "github.com/openimsdk/openim-sdk-core/v3/open_im_sdk_callback"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/common"
+ "github.com/openimsdk/tools/errs"
+ "github.com/openimsdk/tools/log"
+ "sync/atomic"
+)
+
+type apiErrCallback struct {
+ loginMgrCh chan common.Cmd2Value
+ listener open_im_sdk_callback.OnConnListener
+ tokenExpiredState int32
+ kickedOfflineState int32
+ tokenInvalidState int32
+}
+
+func (c *apiErrCallback) OnError(ctx context.Context, err error) {
+ if err == nil {
+ return
+ }
+ codeErr, ok := errs.Unwrap(err).(errs.CodeError)
+ if !ok {
+ log.ZError(ctx, "OnError callback not CodeError", err)
+ return
+ }
+ log.ZError(ctx, "OnError callback CodeError", err, "code", codeErr.Code(), "msg", codeErr.Msg(), "detail", codeErr.Detail())
+ switch codeErr.Code() {
+ case
+ errs.TokenExpiredError:
+ if atomic.CompareAndSwapInt32(&c.tokenExpiredState, 0, 1) {
+ log.ZError(ctx, "OnUserTokenExpired callback", err)
+ c.listener.OnUserTokenExpired()
+ _ = common.TriggerCmdLogOut(ctx, c.loginMgrCh)
+ }
+ case
+ errs.TokenMalformedError,
+ errs.TokenNotValidYetError,
+ errs.TokenUnknownError:
+ if atomic.CompareAndSwapInt32(&c.tokenInvalidState, 0, 1) {
+ log.ZError(ctx, "OnUserTokenInvalid callback", err)
+ c.listener.OnUserTokenInvalid(err.Error())
+ _ = common.TriggerCmdLogOut(ctx, c.loginMgrCh)
+ }
+ if atomic.CompareAndSwapInt32(&c.kickedOfflineState, 0, 1) {
+ log.ZError(ctx, "OnKickedOffline callback", err)
+ c.listener.OnKickedOffline()
+ _ = common.TriggerCmdLogOut(ctx, c.loginMgrCh)
+ }
+ }
+}
diff --git a/go/chao-sdk-core/open_im_sdk/caller.go b/go/chao-sdk-core/open_im_sdk/caller.go
new file mode 100644
index 0000000..484aa08
--- /dev/null
+++ b/go/chao-sdk-core/open_im_sdk/caller.go
@@ -0,0 +1,484 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package open_im_sdk
+
+import (
+ "context"
+ "encoding/json"
+ "errors"
+ "fmt"
+ "github.com/openimsdk/openim-sdk-core/v3/open_im_sdk_callback"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/ccontext"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/sdkerrs"
+ "reflect"
+ "runtime"
+ "runtime/debug"
+ "time"
+
+ "github.com/openimsdk/tools/log"
+
+ "github.com/openimsdk/tools/errs"
+)
+
+func isNumeric(kind reflect.Kind) bool {
+ switch kind {
+ case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64,
+ reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64,
+ reflect.Float32, reflect.Float64:
+ return true
+ default:
+ return false
+ }
+}
+
+func setNumeric(in interface{}, out interface{}) {
+ inValue := reflect.ValueOf(in)
+ outValue := reflect.ValueOf(out)
+ outElem := outValue.Elem()
+ outType := outElem.Type()
+ inType := inValue.Type()
+ if outType.AssignableTo(inType) {
+ outElem.Set(inValue)
+ return
+ }
+ inKind := inValue.Kind()
+ outKind := outElem.Kind()
+ switch inKind {
+ case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
+ switch outKind {
+ case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
+ outElem.SetInt(inValue.Int())
+ case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
+ outElem.SetUint(uint64(inValue.Int()))
+ case reflect.Float32, reflect.Float64:
+ outElem.SetFloat(float64(inValue.Int()))
+ }
+ case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
+ switch outKind {
+ case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
+ outElem.SetInt(int64(inValue.Uint()))
+ case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
+ outElem.SetUint(inValue.Uint())
+ case reflect.Float32, reflect.Float64:
+ outElem.SetFloat(float64(inValue.Uint()))
+ }
+ case reflect.Float32, reflect.Float64:
+ switch outKind {
+ case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
+ outElem.SetInt(int64(inValue.Float()))
+ case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
+ outElem.SetUint(uint64(inValue.Float()))
+ case reflect.Float32, reflect.Float64:
+ outElem.SetFloat(inValue.Float())
+ }
+ }
+}
+
+func call_(operationID string, fn any, args ...any) (res any, err error) {
+ t := time.Now()
+ funcPtr := reflect.ValueOf(fn).Pointer()
+ funcName := runtime.FuncForPC(funcPtr).Name()
+ if operationID == "" {
+ return nil, sdkerrs.ErrArgs.WrapMsg("call function operationID is empty")
+ }
+ if err := CheckResourceLoad(UserForSDK, funcName); err != nil {
+ return nil, sdkerrs.ErrResourceLoad.WrapMsg("not load resource")
+ }
+ ctx := ccontext.WithOperationID(UserForSDK.BaseCtx(), operationID)
+ defer func(start time.Time) {
+ if r := recover(); r != nil {
+ fmt.Printf("panic: %+v\n%s", r, debug.Stack())
+ err = fmt.Errorf("call panic: %+v", r)
+ } else {
+ elapsed := time.Since(start).Milliseconds()
+ if err == nil {
+ log.ZInfo(ctx, "fn call success", "function name", funcName, "resp", res, "cost time", fmt.Sprintf("%d ms", elapsed))
+ } else {
+ log.ZError(ctx, "fn call error", err, "function name", funcName, "cost time", fmt.Sprintf("%d ms", elapsed))
+
+ }
+
+ }
+ }(t)
+ log.ZInfo(ctx, "func call req", "function name", funcName, "args", args)
+ fnv := reflect.ValueOf(fn)
+ if fnv.Kind() != reflect.Func {
+ return nil, sdkerrs.ErrSdkInternal.WrapMsg(fmt.Sprintf("call function fn is not function, is %T", fn))
+ }
+ fnt := fnv.Type()
+ nin := fnt.NumIn()
+ if len(args)+1 != nin {
+ return nil, sdkerrs.ErrSdkInternal.WrapMsg(fmt.Sprintf("go code error: fn in args num is not match"))
+ }
+ ins := make([]reflect.Value, 0, nin)
+ ins = append(ins, reflect.ValueOf(ctx))
+ for i := 0; i < len(args); i++ {
+ inFnField := fnt.In(i + 1)
+ arg := reflect.TypeOf(args[i])
+ if arg.String() == inFnField.String() || inFnField.Kind() == reflect.Interface {
+ ins = append(ins, reflect.ValueOf(args[i]))
+ continue
+ }
+ if arg.Kind() == reflect.String { // json
+ var ptr int
+ for inFnField.Kind() == reflect.Ptr {
+ inFnField = inFnField.Elem()
+ ptr++
+ }
+ switch inFnField.Kind() {
+ case reflect.Struct, reflect.Slice, reflect.Array, reflect.Map:
+ v := reflect.New(inFnField)
+ if err := json.Unmarshal([]byte(args[i].(string)), v.Interface()); err != nil {
+ return nil, sdkerrs.ErrSdkInternal.WrapMsg(fmt.Sprintf("go call json.Unmarshal error: %s", err))
+ }
+ if ptr == 0 {
+ v = v.Elem()
+ } else if ptr != 1 {
+ for i := ptr - 1; i > 0; i-- {
+ temp := reflect.New(v.Type())
+ temp.Elem().Set(v)
+ v = temp
+ }
+ }
+ ins = append(ins, v)
+ continue
+ }
+ }
+ //if isNumeric(arg.Kind()) && isNumeric(inFnField.Kind()) {
+ // v := reflect.Zero(inFnField).Interface()
+ // setNumeric(args[i], &v)
+ // ins = append(ins, reflect.ValueOf(v))
+ // continue
+ //}
+ return nil, sdkerrs.ErrSdkInternal.WrapMsg(fmt.Sprintf("go code error: fn in args type is not match"))
+ }
+ outs := fnv.Call(ins)
+ if len(outs) == 0 {
+ return "", nil
+ }
+ if fnt.Out(len(outs) - 1).Implements(reflect.ValueOf(new(error)).Elem().Type()) {
+ if errValueOf := outs[len(outs)-1]; !errValueOf.IsNil() {
+ return nil, errValueOf.Interface().(error)
+ }
+ if len(outs) == 1 {
+ return "", nil
+ }
+ outs = outs[:len(outs)-1]
+ }
+ for i := 0; i < len(outs); i++ {
+ out := outs[i]
+ switch out.Kind() {
+ case reflect.Map:
+ if out.IsNil() {
+ outs[i] = reflect.MakeMap(out.Type())
+ }
+ case reflect.Slice:
+ if out.IsNil() {
+ outs[i] = reflect.MakeSlice(out.Type(), 0, 0)
+ }
+ }
+ }
+ if len(outs) == 1 {
+ return outs[0].Interface(), nil
+ }
+ val := make([]any, 0, len(outs))
+ for i := range outs {
+ val = append(val, outs[i].Interface())
+ }
+ return val, nil
+}
+
+func call(callback open_im_sdk_callback.Base, operationID string, fn any, args ...any) {
+ if callback == nil {
+ log.ZWarn(context.Background(), "callback is nil", nil)
+ return
+ }
+ go func() {
+ res, err := call_(operationID, fn, args...)
+ if err != nil {
+ if code, ok := err.(errs.CodeError); ok {
+ callback.OnError(int32(code.Code()), code.Error())
+ } else {
+ callback.OnError(sdkerrs.UnknownCode, fmt.Sprintf("error %T not implement CodeError: %s", err, err))
+ }
+ return
+ }
+ data, err := json.Marshal(res)
+ if err != nil {
+ callback.OnError(sdkerrs.SdkInternalError, fmt.Sprintf("function res json.Marshal error: %s", err))
+ return
+ }
+ callback.OnSuccess(string(data))
+ }()
+}
+
+func syncCall(operationID string, fn any, args ...any) (res string) {
+ err := error(nil)
+ if operationID == "" {
+ return ""
+ }
+ fnv := reflect.ValueOf(fn)
+ if fnv.Kind() != reflect.Func {
+ err = errs.ErrRecordNotFound
+ return ""
+ }
+ funcPtr := reflect.ValueOf(fn).Pointer()
+ funcName := runtime.FuncForPC(funcPtr).Name()
+ if err = CheckResourceLoad(UserForSDK, funcName); err != nil {
+ return ""
+ }
+ fnt := fnv.Type()
+ numIn := fnt.NumIn()
+ if len(args)+1 != numIn {
+ err = errors.New("go code error: fn in args num is not match")
+ return ""
+ }
+ ins := make([]reflect.Value, 0, numIn)
+
+ ctx := ccontext.WithOperationID(UserForSDK.BaseCtx(), operationID)
+ t := time.Now()
+ defer func(start time.Time) {
+ if r := recover(); r != nil {
+ fmt.Printf("panic: %+v\n%s", r, debug.Stack())
+ } else {
+ elapsed := time.Since(start).Milliseconds()
+ if err == nil {
+ log.ZInfo(ctx, "fn call success", "function name", funcName, "resp", res, "cost time", fmt.Sprintf("%d ms", elapsed))
+ } else {
+ log.ZError(ctx, "fn call error", err, "function name", funcName, "cost time", fmt.Sprintf("%d ms", elapsed))
+ }
+
+ }
+ }(t)
+ log.ZInfo(ctx, "func call req", "function name", funcName, "args", args)
+ ins = append(ins, reflect.ValueOf(ctx))
+ for i := 0; i < len(args); i++ {
+ tag := fnt.In(i + 1)
+ arg := reflect.TypeOf(args[i])
+ if arg.String() == tag.String() || tag.Kind() == reflect.Interface {
+ ins = append(ins, reflect.ValueOf(args[i]))
+ continue
+ }
+ if arg.Kind() == reflect.String { // json
+ switch tag.Kind() {
+ case reflect.Struct, reflect.Slice, reflect.Array, reflect.Map, reflect.Ptr:
+ v := reflect.New(tag)
+ if args[i].(string) != "" {
+ if err = json.Unmarshal([]byte(args[i].(string)), v.Interface()); err != nil {
+ return ""
+ }
+ }
+
+ ins = append(ins, v.Elem())
+ continue
+ }
+ }
+ if isNumeric(arg.Kind()) && isNumeric(tag.Kind()) {
+ v := reflect.Zero(tag).Interface()
+ setNumeric(args[i], &v)
+ ins = append(ins, reflect.ValueOf(v))
+ continue
+ }
+ err = errors.New("err args type")
+ return ""
+ }
+ var lastErr bool
+ if numOut := fnt.NumOut(); numOut > 0 {
+ lastErr = fnt.Out(numOut - 1).Implements(reflect.TypeOf((*error)(nil)).Elem())
+ }
+ outs := fnv.Call(ins)
+ if len(outs) == 0 {
+ err = errors.New("err res type")
+ return ""
+ }
+ outVals := make([]any, 0, len(outs))
+ for i := 0; i < len(outs); i++ {
+ outVals = append(outVals, outs[i].Interface())
+ }
+ if lastErr {
+ if last := outVals[len(outVals)-1]; last != nil {
+ //callback.OnError(10000, last.(error).Error())
+ err = last.(error)
+ return ""
+ }
+ if len(outs) == 1 {
+ //callback.OnSuccess("") // åĒæä¸ä¸Ēčŋååŧä¸ēerrorīŧä¸error == nil
+ return ""
+ }
+ outVals = outVals[:len(outVals)-1]
+ }
+ // å°mapåsliceįnilčŊŦæĸä¸ēénil
+ for i := 0; i < len(outVals); i++ {
+ switch outs[i].Kind() {
+ case reflect.Map:
+ if outs[i].IsNil() {
+ outVals[i] = reflect.MakeMap(outs[i].Type()).Interface()
+ }
+ case reflect.Slice:
+ if outs[i].IsNil() {
+ outVals[i] = reflect.MakeSlice(outs[i].Type(), 0, 0).Interface()
+ }
+ }
+ }
+ var jsonVal any
+ if len(outVals) == 1 {
+ jsonVal = outVals[0]
+ } else {
+ jsonVal = outVals
+ }
+ jsonData, err := json.Marshal(jsonVal)
+ if err != nil {
+ err = errors.New("json marshal error")
+ return ""
+ }
+ return string(jsonData)
+}
+func messageCall(callback open_im_sdk_callback.SendMsgCallBack, operationID string, fn any, args ...any) {
+ if callback == nil {
+ log.ZWarn(context.Background(), "callback is nil", nil)
+ return
+ }
+ go messageCall_(callback, operationID, fn, args...)
+}
+func messageCall_(callback open_im_sdk_callback.SendMsgCallBack, operationID string, fn any, args ...any) {
+ defer func() {
+ if r := recover(); r != nil {
+ fmt.Println(" panic err:", r, string(debug.Stack()))
+ callback.OnError(sdkerrs.SdkInternalError, fmt.Sprintf("recover: %+v", r))
+ return
+ }
+ }()
+ if operationID == "" {
+ callback.OnError(sdkerrs.ArgsError, sdkerrs.ErrArgs.WrapMsg("operationID is empty").Error())
+ return
+ }
+ if err := CheckResourceLoad(UserForSDK, ""); err != nil {
+ callback.OnError(sdkerrs.ResourceLoadNotCompleteError, "resource load error: "+err.Error())
+ return
+ }
+ fnv := reflect.ValueOf(fn)
+ if fnv.Kind() != reflect.Func {
+ callback.OnError(sdkerrs.SdkInternalError, "go code error: fn is not function")
+ return
+ }
+ fnt := fnv.Type()
+ numIn := fnt.NumIn()
+ if len(args)+1 != numIn {
+ callback.OnError(sdkerrs.SdkInternalError, "go code error: fn in args num is not match")
+ return
+ }
+
+ t := time.Now()
+ ins := make([]reflect.Value, 0, numIn)
+ ctx := ccontext.WithOperationID(UserForSDK.BaseCtx(), operationID)
+ ctx = ccontext.WithSendMessageCallback(ctx, callback)
+ funcPtr := reflect.ValueOf(fn).Pointer()
+ funcName := runtime.FuncForPC(funcPtr).Name()
+ log.ZInfo(ctx, "input req", "function name", funcName, "args", args)
+
+ ins = append(ins, reflect.ValueOf(ctx))
+ for i := 0; i < len(args); i++ { // callback open_im_sdk_callback.Base, operationID string, ...
+ tag := fnt.In(i + 1) // ctx context.Context, ...
+ arg := reflect.TypeOf(args[i])
+ if arg.String() == tag.String() || tag.Kind() == reflect.Interface {
+ ins = append(ins, reflect.ValueOf(args[i]))
+ continue
+ }
+ if arg.Kind() == reflect.String { // json
+ switch tag.Kind() {
+ case reflect.Struct, reflect.Slice, reflect.Array, reflect.Map, reflect.Ptr:
+ v := reflect.New(tag)
+ if err := json.Unmarshal([]byte(args[i].(string)), v.Interface()); err != nil {
+ callback.OnError(sdkerrs.ArgsError, err.Error())
+ return
+ }
+ ins = append(ins, v.Elem())
+ continue
+ }
+ }
+ if isNumeric(arg.Kind()) && isNumeric(tag.Kind()) {
+ v := reflect.Zero(tag).Interface()
+ setNumeric(args[i], &v)
+ ins = append(ins, reflect.ValueOf(v))
+ continue
+ }
+ callback.OnError(sdkerrs.ArgsError, "go code error: fn in args type is not match")
+ return
+ }
+ var lastErr bool
+ if numOut := fnt.NumOut(); numOut > 0 {
+ lastErr = fnt.Out(numOut - 1).Implements(reflect.ValueOf(new(error)).Elem().Type())
+ }
+ //fmt.Println("fnv:", fnv.Interface(), "ins:", ins)
+ outs := fnv.Call(ins)
+
+ outVals := make([]any, 0, len(outs))
+ for i := 0; i < len(outs); i++ {
+ outVals = append(outVals, outs[i].Interface())
+ }
+ if lastErr {
+ if last := outVals[len(outVals)-1]; last != nil {
+ if code, ok := last.(error).(errs.CodeError); ok {
+ callback.OnError(int32(code.Code()), code.Error())
+ } else {
+ callback.OnError(sdkerrs.UnknownCode, fmt.Sprintf("error %T not implement CodeError: %s", last.(error), last.(error).Error()))
+ }
+ return
+ }
+
+ outVals = outVals[:len(outVals)-1]
+ }
+ // å°mapåsliceįnilčŊŦæĸä¸ēénil
+ for i := 0; i < len(outVals); i++ {
+ switch outs[i].Kind() {
+ case reflect.Map:
+ if outs[i].IsNil() {
+ outVals[i] = reflect.MakeMap(outs[i].Type()).Interface()
+ }
+ case reflect.Slice:
+ if outs[i].IsNil() {
+ outVals[i] = reflect.MakeSlice(outs[i].Type(), 0, 0).Interface()
+ }
+ }
+ }
+ var jsonVal any
+ if len(outVals) == 1 {
+ jsonVal = outVals[0]
+ } else {
+ jsonVal = outVals
+ }
+ jsonData, err := json.Marshal(jsonVal)
+ if err != nil {
+ callback.OnError(sdkerrs.ArgsError, err.Error())
+ return
+ }
+ log.ZInfo(ctx, "output resp", "function name", funcName, "resp", jsonVal, "cost time", time.Since(t))
+ callback.OnSuccess(string(jsonData))
+}
+
+func listenerCall(fn any, listener any) {
+ ctx := context.Background()
+ if UserForSDK == nil {
+ log.ZWarn(ctx, "UserForSDK is nil,set listener is invalid", nil)
+ return
+ }
+ fnv := reflect.ValueOf(fn)
+ if fnv.Kind() != reflect.Func {
+ log.ZWarn(ctx, "fn is error,set listener is invalid", nil)
+ return
+ }
+ args := reflect.ValueOf(listener)
+ fnv.Call([]reflect.Value{args})
+}
diff --git a/go/chao-sdk-core/open_im_sdk/conversation_msg.go b/go/chao-sdk-core/open_im_sdk/conversation_msg.go
new file mode 100644
index 0000000..4851263
--- /dev/null
+++ b/go/chao-sdk-core/open_im_sdk/conversation_msg.go
@@ -0,0 +1,251 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package open_im_sdk
+
+import (
+ "github.com/openimsdk/openim-sdk-core/v3/open_im_sdk_callback"
+)
+
+func GetAllConversationList(callback open_im_sdk_callback.Base, operationID string) {
+ call(callback, operationID, UserForSDK.Conversation().GetAllConversationList)
+}
+
+func GetConversationListSplit(callback open_im_sdk_callback.Base, operationID string, offset int, count int) {
+ call(callback, operationID, UserForSDK.Conversation().GetConversationListSplit, offset, count)
+}
+
+func GetOneConversation(callback open_im_sdk_callback.Base, operationID string, sessionType int32, sourceID string) {
+ call(callback, operationID, UserForSDK.Conversation().GetOneConversation, sessionType, sourceID)
+}
+
+func GetMultipleConversation(callback open_im_sdk_callback.Base, operationID string, conversationIDList string) {
+ call(callback, operationID, UserForSDK.Conversation().GetMultipleConversation, conversationIDList)
+}
+
+func SetConversationMsgDestructTime(callback open_im_sdk_callback.Base, operationID string, conversationID string, msgDestructTime int64) {
+ call(callback, operationID, UserForSDK.Conversation().SetConversationMsgDestructTime, conversationID, msgDestructTime)
+}
+
+func SetConversationIsMsgDestruct(callback open_im_sdk_callback.Base, operationID string, conversationID string, isMsgDestruct bool) {
+ call(callback, operationID, UserForSDK.Conversation().SetConversationIsMsgDestruct, conversationID, isMsgDestruct)
+}
+func SetConversationEx(callback open_im_sdk_callback.Base, operationID string, conversationID string, ex string) {
+ call(callback, operationID, UserForSDK.Conversation().SetOneConversationEx, conversationID, ex)
+}
+func HideConversation(callback open_im_sdk_callback.Base, operationID string, conversationID string) {
+ call(callback, operationID, UserForSDK.Conversation().HideConversation, conversationID)
+}
+
+// deprecated
+func GetConversationRecvMessageOpt(callback open_im_sdk_callback.Base, operationID string, conversationIDList string) {
+ call(callback, operationID, UserForSDK.Conversation().GetConversationRecvMessageOpt, conversationIDList)
+}
+
+func SetConversationDraft(callback open_im_sdk_callback.Base, operationID string, conversationID string, draftText string) {
+ call(callback, operationID, UserForSDK.Conversation().SetConversationDraft, conversationID, draftText)
+}
+
+func ResetConversationGroupAtType(callback open_im_sdk_callback.Base, operationID string, conversationID string) {
+ call(callback, operationID, UserForSDK.Conversation().ResetConversationGroupAtType, conversationID)
+}
+
+func PinConversation(callback open_im_sdk_callback.Base, operationID string, conversationID string, isPinned bool) {
+ call(callback, operationID, UserForSDK.Conversation().PinConversation, conversationID, isPinned)
+}
+
+func SetConversationPrivateChat(callback open_im_sdk_callback.Base, operationID string, conversationID string, isPrivate bool) {
+ call(callback, operationID, UserForSDK.Conversation().SetOneConversationPrivateChat, conversationID, isPrivate)
+}
+
+func SetConversationBurnDuration(callback open_im_sdk_callback.Base, operationID string, conversationID string, duration int32) {
+ call(callback, operationID, UserForSDK.Conversation().SetOneConversationBurnDuration, conversationID, duration)
+}
+
+func SetConversationRecvMessageOpt(callback open_im_sdk_callback.Base, operationID string, conversationID string, opt int) {
+ call(callback, operationID, UserForSDK.Conversation().SetOneConversationRecvMessageOpt, conversationID, opt)
+}
+
+func GetTotalUnreadMsgCount(callback open_im_sdk_callback.Base, operationID string) {
+ call(callback, operationID, UserForSDK.Conversation().GetTotalUnreadMsgCount)
+}
+func GetAtAllTag(operationID string) string {
+ return syncCall(operationID, UserForSDK.Conversation().GetAtAllTag)
+
+}
+func CreateAdvancedTextMessage(operationID string, text, messageEntityList string) string {
+ return syncCall(operationID, UserForSDK.Conversation().CreateAdvancedTextMessage, text, messageEntityList)
+}
+func CreateTextAtMessage(operationID string, text, atUserList, atUsersInfo, message string) string {
+ return syncCall(operationID, UserForSDK.Conversation().CreateTextAtMessage, text, atUserList, atUsersInfo, message)
+}
+func CreateTextMessage(operationID string, text string) string {
+ return syncCall(operationID, UserForSDK.Conversation().CreateTextMessage, text)
+}
+
+func CreateLocationMessage(operationID string, description string, longitude, latitude float64) string {
+ return syncCall(operationID, UserForSDK.Conversation().CreateLocationMessage, description, longitude, latitude)
+}
+func CreateCustomMessage(operationID string, data, extension string, description string) string {
+ return syncCall(operationID, UserForSDK.Conversation().CreateCustomMessage, data, extension, description)
+}
+func CreateQuoteMessage(operationID string, text string, message string) string {
+ return syncCall(operationID, UserForSDK.Conversation().CreateQuoteMessage, text, message)
+}
+func CreateAdvancedQuoteMessage(operationID string, text string, message, messageEntityList string) string {
+ return syncCall(operationID, UserForSDK.Conversation().CreateAdvancedQuoteMessage, text, message, messageEntityList)
+}
+func CreateCardMessage(operationID string, cardInfo string) string {
+ return syncCall(operationID, UserForSDK.Conversation().CreateCardMessage, cardInfo)
+
+}
+func CreateVideoMessageFromFullPath(operationID string, videoFullPath string, videoType string, duration int64, snapshotFullPath string) string {
+ return syncCall(operationID, UserForSDK.Conversation().CreateVideoMessageFromFullPath, videoFullPath, videoType, duration, snapshotFullPath)
+}
+func CreateImageMessageFromFullPath(operationID string, imageFullPath string) string {
+ return syncCall(operationID, UserForSDK.Conversation().CreateImageMessageFromFullPath, imageFullPath)
+}
+func CreateSoundMessageFromFullPath(operationID string, soundPath string, duration int64) string {
+ return syncCall(operationID, UserForSDK.Conversation().CreateSoundMessageFromFullPath, soundPath, duration)
+}
+func CreateFileMessageFromFullPath(operationID string, fileFullPath, fileName string) string {
+ return syncCall(operationID, UserForSDK.Conversation().CreateFileMessageFromFullPath, fileFullPath, fileName)
+}
+func CreateImageMessage(operationID string, imagePath string) string {
+ return syncCall(operationID, UserForSDK.Conversation().CreateImageMessage, imagePath)
+}
+func CreateImageMessageByURL(operationID string, sourcePath string, sourcePicture, bigPicture, snapshotPicture string) string {
+ return syncCall(operationID, UserForSDK.Conversation().CreateImageMessageByURL, sourcePath, sourcePicture, bigPicture, snapshotPicture)
+}
+
+func CreateSoundMessageByURL(operationID string, soundBaseInfo string) string {
+ return syncCall(operationID, UserForSDK.Conversation().CreateSoundMessageByURL, soundBaseInfo)
+}
+func CreateSoundMessage(operationID string, soundPath string, duration int64) string {
+ return syncCall(operationID, UserForSDK.Conversation().CreateSoundMessage, soundPath, duration)
+}
+func CreateVideoMessageByURL(operationID string, videoBaseInfo string) string {
+ return syncCall(operationID, UserForSDK.Conversation().CreateVideoMessageByURL, videoBaseInfo)
+}
+func CreateVideoMessage(operationID string, videoPath string, videoType string, duration int64, snapshotPath string) string {
+ return syncCall(operationID, UserForSDK.Conversation().CreateVideoMessage, videoPath, videoType, duration, snapshotPath)
+}
+func CreateFileMessageByURL(operationID string, fileBaseInfo string) string {
+ return syncCall(operationID, UserForSDK.Conversation().CreateFileMessageByURL, fileBaseInfo)
+}
+func CreateFileMessage(operationID string, filePath string, fileName string) string {
+ return syncCall(operationID, UserForSDK.Conversation().CreateFileMessage, filePath, fileName)
+}
+func CreateMergerMessage(operationID string, messageList, title, summaryList string) string {
+ return syncCall(operationID, UserForSDK.Conversation().CreateMergerMessage, messageList, title, summaryList)
+}
+func CreateFaceMessage(operationID string, index int, data string) string {
+ return syncCall(operationID, UserForSDK.Conversation().CreateFaceMessage, index, data)
+}
+func CreateForwardMessage(operationID string, m string) string {
+ return syncCall(operationID, UserForSDK.Conversation().CreateForwardMessage, m)
+}
+func GetConversationIDBySessionType(operationID string, sourceID string, sessionType int) string {
+ return syncCall(operationID, UserForSDK.Conversation().GetConversationIDBySessionType, sourceID, sessionType)
+}
+func SendMessage(callback open_im_sdk_callback.SendMsgCallBack, operationID, message, recvID, groupID, offlinePushInfo string, isOnlineOnly bool) {
+ messageCall(callback, operationID, UserForSDK.Conversation().SendMessage, message, recvID, groupID, offlinePushInfo, isOnlineOnly)
+}
+func SendMessageNotOss(callback open_im_sdk_callback.SendMsgCallBack, operationID string, message, recvID, groupID string, offlinePushInfo string, isOnlineOnly bool) {
+ messageCall(callback, operationID, UserForSDK.Conversation().SendMessageNotOss, message, recvID, groupID, offlinePushInfo, isOnlineOnly)
+}
+
+func FindMessageList(callback open_im_sdk_callback.Base, operationID string, findMessageOptions string) {
+ call(callback, operationID, UserForSDK.Conversation().FindMessageList, findMessageOptions)
+}
+
+func GetAdvancedHistoryMessageList(callback open_im_sdk_callback.Base, operationID string, getMessageOptions string) {
+ call(callback, operationID, UserForSDK.Conversation().GetAdvancedHistoryMessageList, getMessageOptions)
+}
+
+func GetAdvancedHistoryMessageListReverse(callback open_im_sdk_callback.Base, operationID string, getMessageOptions string) {
+ call(callback, operationID, UserForSDK.Conversation().GetAdvancedHistoryMessageListReverse, getMessageOptions)
+}
+
+func RevokeMessage(callback open_im_sdk_callback.Base, operationID string, conversationID, clientMsgID string) {
+ call(callback, operationID, UserForSDK.Conversation().RevokeMessage, conversationID, clientMsgID)
+}
+
+func TypingStatusUpdate(callback open_im_sdk_callback.Base, operationID string, recvID string, msgTip string) {
+ call(callback, operationID, UserForSDK.Conversation().TypingStatusUpdate, recvID, msgTip)
+}
+
+// mark as read
+func MarkConversationMessageAsRead(callback open_im_sdk_callback.Base, operationID string, conversationID string) {
+ call(callback, operationID, UserForSDK.Conversation().MarkConversationMessageAsRead, conversationID)
+}
+
+func MarkMessagesAsReadByMsgID(callback open_im_sdk_callback.Base, operationID string, conversationID string, clientMsgIDs string) {
+ call(callback, operationID, UserForSDK.Conversation().MarkMessagesAsReadByMsgID, conversationID, clientMsgIDs)
+}
+
+func DeleteMessageFromLocalStorage(callback open_im_sdk_callback.Base, operationID string, conversationID string, clientMsgID string) {
+ call(callback, operationID, UserForSDK.Conversation().DeleteMessageFromLocalStorage, conversationID, clientMsgID)
+}
+
+func DeleteMessage(callback open_im_sdk_callback.Base, operationID string, conversationID string, clientMsgID string) {
+ call(callback, operationID, UserForSDK.Conversation().DeleteMessage, conversationID, clientMsgID)
+}
+
+func HideAllConversations(callback open_im_sdk_callback.Base, operationID string) {
+ call(callback, operationID, UserForSDK.Conversation().HideAllConversations)
+}
+
+func DeleteAllMsgFromLocalAndSvr(callback open_im_sdk_callback.Base, operationID string) {
+ call(callback, operationID, UserForSDK.Conversation().DeleteAllMsgFromLocalAndSvr)
+}
+
+func DeleteAllMsgFromLocal(callback open_im_sdk_callback.Base, operationID string) {
+ call(callback, operationID, UserForSDK.Conversation().DeleteAllMessageFromLocalStorage)
+}
+
+func ClearConversationAndDeleteAllMsg(callback open_im_sdk_callback.Base, operationID string, conversationID string) {
+ call(callback, operationID, UserForSDK.Conversation().ClearConversationAndDeleteAllMsg, conversationID)
+}
+
+func DeleteConversationAndDeleteAllMsg(callback open_im_sdk_callback.Base, operationID string, conversationID string) {
+ call(callback, operationID, UserForSDK.Conversation().DeleteConversationAndDeleteAllMsg, conversationID)
+}
+
+func InsertSingleMessageToLocalStorage(callback open_im_sdk_callback.Base, operationID string, message string, recvID string, sendID string) {
+ call(callback, operationID, UserForSDK.Conversation().InsertSingleMessageToLocalStorage, message, recvID, sendID)
+}
+
+func InsertGroupMessageToLocalStorage(callback open_im_sdk_callback.Base, operationID string, message string, groupID string, sendID string) {
+ call(callback, operationID, UserForSDK.Conversation().InsertGroupMessageToLocalStorage, message, groupID, sendID)
+}
+
+func SearchLocalMessages(callback open_im_sdk_callback.Base, operationID string, searchParam string) {
+ call(callback, operationID, UserForSDK.Conversation().SearchLocalMessages, searchParam)
+}
+func SetMessageLocalEx(callback open_im_sdk_callback.Base, operationID string, conversationID, clientMsgID, localEx string) {
+ call(callback, operationID, UserForSDK.Conversation().SetMessageLocalEx, conversationID, clientMsgID, localEx)
+}
+
+func SearchConversation(callback open_im_sdk_callback.Base, operationID string, searchParam string) {
+ call(callback, operationID, UserForSDK.Conversation().SearchConversation, searchParam)
+}
+
+func ChangeInputStates(callback open_im_sdk_callback.Base, operationID string, conversationID string, focus bool) {
+ call(callback, operationID, UserForSDK.Conversation().ChangeInputStates, conversationID, focus)
+}
+
+func GetInputStates(callback open_im_sdk_callback.Base, operationID string, conversationID string, userID string) {
+ call(callback, operationID, UserForSDK.Conversation().GetInputStates, conversationID, userID)
+}
diff --git a/go/chao-sdk-core/open_im_sdk/em.go b/go/chao-sdk-core/open_im_sdk/em.go
new file mode 100644
index 0000000..9ef80a8
--- /dev/null
+++ b/go/chao-sdk-core/open_im_sdk/em.go
@@ -0,0 +1,289 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package open_im_sdk
+
+import (
+ "context"
+ "errors"
+ "github.com/openimsdk/openim-sdk-core/v3/open_im_sdk_callback"
+ "github.com/openimsdk/tools/log"
+)
+
+var ErrNotImplemented = errors.New("not set listener")
+
+type emptyGroupListener struct {
+ ctx context.Context
+}
+
+func newEmptyGroupListener(ctx context.Context) open_im_sdk_callback.OnGroupListener {
+ return &emptyGroupListener{ctx}
+}
+
+func (e *emptyGroupListener) OnJoinedGroupAdded(groupInfo string) {
+ log.ZWarn(e.ctx, "GroupListener is not implemented", nil, "groupInfo", groupInfo)
+}
+
+func (e *emptyGroupListener) OnJoinedGroupDeleted(groupInfo string) {
+ log.ZWarn(e.ctx, "GroupListener is not implemented", nil, "groupInfo", groupInfo)
+
+}
+
+func (e *emptyGroupListener) OnGroupMemberAdded(groupMemberInfo string) {
+ log.ZWarn(e.ctx, "GroupListener is not implemented", nil, "groupMemberInfo", groupMemberInfo)
+
+}
+
+func (e *emptyGroupListener) OnGroupMemberDeleted(groupMemberInfo string) {
+ log.ZWarn(e.ctx, "GroupListener is not implemented", nil, "groupMemberInfo", groupMemberInfo)
+
+}
+
+func (e *emptyGroupListener) OnGroupApplicationAdded(groupApplication string) {
+ log.ZWarn(e.ctx, "GroupListener is not implemented", nil, "groupApplication", groupApplication)
+
+}
+
+func (e *emptyGroupListener) OnGroupApplicationDeleted(groupApplication string) {
+ log.ZWarn(e.ctx, "GroupListener is not implemented", nil, "groupApplication", groupApplication)
+
+}
+
+func (e *emptyGroupListener) OnGroupInfoChanged(groupInfo string) {
+ log.ZWarn(e.ctx, "GroupListener is not implemented", nil, "groupInfo", groupInfo)
+
+}
+
+func (e *emptyGroupListener) OnGroupDismissed(groupInfo string) {
+ log.ZWarn(e.ctx, "GroupListener is not implemented", nil, "groupInfo", groupInfo)
+}
+
+func (e *emptyGroupListener) OnGroupMemberInfoChanged(groupMemberInfo string) {
+ log.ZWarn(e.ctx, "GroupListener is not implemented", nil, "groupMemberInfo", groupMemberInfo)
+}
+
+func (e *emptyGroupListener) OnGroupApplicationAccepted(groupApplication string) {
+ log.ZWarn(e.ctx, "GroupListener is not implemented", nil, "groupApplication", groupApplication)
+}
+
+func (e *emptyGroupListener) OnGroupApplicationRejected(groupApplication string) {
+ log.ZWarn(e.ctx, "GroupListener is not implemented", nil, "groupApplication", groupApplication)
+}
+
+type emptyFriendshipListener struct {
+ ctx context.Context
+}
+
+func newEmptyFriendshipListener(ctx context.Context) open_im_sdk_callback.OnFriendshipListener {
+ return &emptyFriendshipListener{ctx}
+}
+
+func (e *emptyFriendshipListener) OnFriendApplicationAdded(friendApplication string) {
+ log.ZWarn(e.ctx, "FriendshipListener is not implemented", nil,
+ "friendApplication", friendApplication)
+}
+
+func (e *emptyFriendshipListener) OnFriendApplicationDeleted(friendApplication string) {
+ log.ZWarn(e.ctx, "FriendshipListener is not implemented", nil,
+ "friendApplication", friendApplication)
+}
+
+func (e *emptyFriendshipListener) OnFriendApplicationAccepted(friendApplication string) {
+ log.ZWarn(e.ctx, "FriendshipListener is not implemented", nil,
+ "friendApplication", friendApplication)
+}
+
+func (e *emptyFriendshipListener) OnFriendApplicationRejected(friendApplication string) {
+ log.ZWarn(e.ctx, "FriendshipListener is not implemented", nil,
+ "friendApplication", friendApplication)
+}
+
+func (e *emptyFriendshipListener) OnFriendAdded(friendInfo string) {
+ log.ZWarn(e.ctx, "FriendshipListener is not implemented", nil,
+ "friendInfo", friendInfo)
+}
+
+func (e *emptyFriendshipListener) OnFriendDeleted(friendInfo string) {
+ log.ZWarn(e.ctx, "FriendshipListener is not implemented", nil,
+ "friendInfo", friendInfo)
+}
+
+func (e *emptyFriendshipListener) OnFriendInfoChanged(friendInfo string) {
+ log.ZWarn(e.ctx, "FriendshipListener is not implemented", nil,
+ "friendInfo", friendInfo)
+}
+
+func (e *emptyFriendshipListener) OnBlackAdded(blackInfo string) {
+ log.ZWarn(e.ctx, "FriendshipListener is not implemented", nil,
+ "blackInfo", blackInfo)
+}
+
+func (e *emptyFriendshipListener) OnBlackDeleted(blackInfo string) {
+ log.ZWarn(e.ctx, "FriendshipListener is not implemented", nil,
+ "blackInfo", blackInfo)
+}
+
+type emptyConversationListener struct {
+ ctx context.Context
+}
+
+func newEmptyConversationListener(ctx context.Context) open_im_sdk_callback.OnConversationListener {
+ return &emptyConversationListener{ctx: ctx}
+}
+
+func (e *emptyConversationListener) OnSyncServerStart() {
+
+ log.ZWarn(e.ctx, "ConversationListener is not implemented", nil)
+}
+
+func (e *emptyConversationListener) OnSyncServerFinish() {
+ log.ZWarn(e.ctx, "ConversationListener is not implemented", nil)
+
+}
+
+func (e *emptyConversationListener) OnSyncServerFailed() {
+
+ log.ZWarn(e.ctx, "ConversationListener is not implemented", nil)
+}
+
+func (e *emptyConversationListener) OnNewConversation(conversationList string) {
+ log.ZWarn(e.ctx, "ConversationListener is not implemented", nil,
+ "conversationList", conversationList)
+
+}
+
+func (e *emptyConversationListener) OnConversationChanged(conversationList string) {
+
+ log.ZWarn(e.ctx, "ConversationListener is not implemented", nil,
+ "conversationList", conversationList)
+}
+
+func (e *emptyConversationListener) OnTotalUnreadMessageCountChanged(totalUnreadCount int32) {
+ log.ZWarn(e.ctx, "ConversationListener is not implemented", nil,
+ "totalUnreadCount", totalUnreadCount)
+}
+
+func (e *emptyConversationListener) OnConversationUserInputStatusChanged(change string) {
+
+}
+
+type emptyAdvancedMsgListener struct {
+ ctx context.Context
+}
+
+func newEmptyAdvancedMsgListener(ctx context.Context) open_im_sdk_callback.OnAdvancedMsgListener {
+ return &emptyAdvancedMsgListener{ctx}
+}
+
+func (e *emptyAdvancedMsgListener) OnRecvOnlineOnlyMessage(message string) {
+
+}
+
+func (e *emptyAdvancedMsgListener) OnRecvNewMessage(message string) {
+ log.ZWarn(e.ctx, "AdvancedMsgListener is not implemented", nil, "message", message)
+}
+
+func (e *emptyAdvancedMsgListener) OnRecvC2CReadReceipt(msgReceiptList string) {
+
+ log.ZWarn(e.ctx, "AdvancedMsgListener is not implemented", nil,
+ "msgReceiptList", msgReceiptList)
+}
+
+func (e *emptyAdvancedMsgListener) OnRecvGroupReadReceipt(groupMsgReceiptList string) {
+ log.ZWarn(e.ctx, "AdvancedMsgListener is not implemented", nil,
+ "groupMsgReceiptList", groupMsgReceiptList)
+}
+
+func (e *emptyAdvancedMsgListener) OnNewRecvMessageRevoked(messageRevoked string) {
+ log.ZWarn(e.ctx, "AdvancedMsgListener is not implemented", nil, "messageRevoked", messageRevoked)
+}
+
+func (e *emptyAdvancedMsgListener) OnRecvMessageExtensionsChanged(msgID string, reactionExtensionList string) {
+ log.ZWarn(e.ctx, "AdvancedMsgListener is not implemented", nil, "msgID", msgID,
+ "reactionExtensionList", reactionExtensionList)
+}
+
+func (e *emptyAdvancedMsgListener) OnRecvMessageExtensionsDeleted(msgID string, reactionExtensionKeyList string) {
+ log.ZWarn(e.ctx, "AdvancedMsgListener is not implemented", nil, "msgID", msgID,
+ "reactionExtensionKeyList", reactionExtensionKeyList)
+}
+
+func (e *emptyAdvancedMsgListener) OnRecvMessageExtensionsAdded(msgID string, reactionExtensionList string) {
+ log.ZWarn(e.ctx, "AdvancedMsgListener is not implemented", nil, "msgID", msgID,
+ "reactionExtensionList", reactionExtensionList)
+}
+
+func (e *emptyAdvancedMsgListener) OnRecvOfflineNewMessage(message string) {
+ log.ZWarn(e.ctx, "AdvancedMsgListener is not implemented", nil, "message", message)
+}
+
+func (e *emptyAdvancedMsgListener) OnMsgDeleted(message string) {
+ log.ZWarn(e.ctx, "AdvancedMsgListener is not implemented", nil, "message", message)
+}
+
+type emptyBatchMsgListener struct{}
+
+func newEmptyBatchMsgListener() *emptyBatchMsgListener {
+ return &emptyBatchMsgListener{}
+}
+
+func (e *emptyBatchMsgListener) OnRecvNewMessages(messageList string) {
+
+}
+
+func (e *emptyBatchMsgListener) OnRecvOfflineNewMessages(messageList string) {
+
+}
+
+type emptyUserListener struct {
+ ctx context.Context
+}
+
+func (e *emptyUserListener) OnUserCommandAdd(userCommand string) {
+ log.ZWarn(e.ctx, "UserListener is not implemented", nil, "userCommand", userCommand)
+}
+
+func (e *emptyUserListener) OnUserCommandDelete(userCommand string) {
+ log.ZWarn(e.ctx, "UserListener is not implemented", nil, "userCommand", userCommand)
+}
+
+func (e *emptyUserListener) OnUserCommandUpdate(userCommand string) {
+ log.ZWarn(e.ctx, "UserListener is not implemented", nil, "userCommand", userCommand)
+}
+
+func newEmptyUserListener(ctx context.Context) open_im_sdk_callback.OnUserListener {
+ return &emptyUserListener{ctx: ctx}
+}
+
+func (e *emptyUserListener) OnSelfInfoUpdated(userInfo string) {
+ log.ZWarn(e.ctx, "UserListener is not implemented", nil, "userInfo", userInfo)
+}
+
+func (e *emptyUserListener) OnUserStatusChanged(statusMap string) {
+ log.ZWarn(e.ctx, "UserListener is not implemented", nil, "statusMap", statusMap)
+}
+
+type emptyCustomBusinessListener struct {
+ ctx context.Context
+}
+
+func newEmptyCustomBusinessListener(ctx context.Context) open_im_sdk_callback.OnCustomBusinessListener {
+ return &emptyCustomBusinessListener{ctx: ctx}
+}
+
+func (e *emptyCustomBusinessListener) OnRecvCustomBusinessMessage(businessMessage string) {
+ log.ZWarn(e.ctx, "CustomBusinessListener is not implemented", nil,
+ "businessMessage", businessMessage)
+
+}
diff --git a/go/chao-sdk-core/open_im_sdk/file.go b/go/chao-sdk-core/open_im_sdk/file.go
new file mode 100644
index 0000000..ad7e9a7
--- /dev/null
+++ b/go/chao-sdk-core/open_im_sdk/file.go
@@ -0,0 +1,24 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package open_im_sdk
+
+import (
+ "github.com/openimsdk/openim-sdk-core/v3/internal/file"
+ "github.com/openimsdk/openim-sdk-core/v3/open_im_sdk_callback"
+)
+
+func UploadFile(callback open_im_sdk_callback.Base, operationID string, req string, progress open_im_sdk_callback.UploadFileCallback) {
+ call(callback, operationID, UserForSDK.File().UploadFile, req, file.UploadFileCallback(progress))
+}
diff --git a/go/chao-sdk-core/open_im_sdk/friend.go b/go/chao-sdk-core/open_im_sdk/friend.go
new file mode 100644
index 0000000..575600e
--- /dev/null
+++ b/go/chao-sdk-core/open_im_sdk/friend.go
@@ -0,0 +1,82 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package open_im_sdk
+
+import "github.com/openimsdk/openim-sdk-core/v3/open_im_sdk_callback"
+
+func GetSpecifiedFriendsInfo(callback open_im_sdk_callback.Base, operationID string, userIDList string) {
+ call(callback, operationID, UserForSDK.Friend().GetSpecifiedFriendsInfo, userIDList)
+}
+
+func GetFriendList(callback open_im_sdk_callback.Base, operationID string) {
+ call(callback, operationID, UserForSDK.Friend().GetFriendList)
+}
+
+func GetFriendListPage(callback open_im_sdk_callback.Base, operationID string, offset int32, count int32) {
+ call(callback, operationID, UserForSDK.Friend().GetFriendListPage, offset, count)
+}
+
+func SearchFriends(callback open_im_sdk_callback.Base, operationID string, searchParam string) {
+ call(callback, operationID, UserForSDK.Friend().SearchFriends, searchParam)
+}
+
+func CheckFriend(callback open_im_sdk_callback.Base, operationID string, userIDList string) {
+ call(callback, operationID, UserForSDK.Friend().CheckFriend, userIDList)
+}
+
+func AddFriend(callback open_im_sdk_callback.Base, operationID string, userIDReqMsg string) {
+ call(callback, operationID, UserForSDK.Friend().AddFriend, userIDReqMsg)
+}
+
+func SetFriendRemark(callback open_im_sdk_callback.Base, operationID string, userIDRemark string) {
+ call(callback, operationID, UserForSDK.Friend().SetFriendRemark, userIDRemark)
+}
+func PinFriends(callback open_im_sdk_callback.Base, operationID string, pinFriendsParams string) {
+ call(callback, operationID, UserForSDK.Friend().PinFriends, pinFriendsParams)
+}
+func DeleteFriend(callback open_im_sdk_callback.Base, operationID string, friendUserID string) {
+ call(callback, operationID, UserForSDK.Friend().DeleteFriend, friendUserID)
+}
+
+func GetFriendApplicationListAsRecipient(callback open_im_sdk_callback.Base, operationID string) {
+ call(callback, operationID, UserForSDK.Friend().GetFriendApplicationListAsRecipient)
+}
+
+func GetFriendApplicationListAsApplicant(callback open_im_sdk_callback.Base, operationID string) {
+ call(callback, operationID, UserForSDK.Friend().GetFriendApplicationListAsApplicant)
+}
+
+func AcceptFriendApplication(callback open_im_sdk_callback.Base, operationID string, userIDHandleMsg string) {
+ call(callback, operationID, UserForSDK.Friend().AcceptFriendApplication, userIDHandleMsg)
+}
+
+func RefuseFriendApplication(callback open_im_sdk_callback.Base, operationID string, userIDHandleMsg string) {
+ call(callback, operationID, UserForSDK.Friend().RefuseFriendApplication, userIDHandleMsg)
+}
+
+func AddBlack(callback open_im_sdk_callback.Base, operationID string, blackUserID string, ex string) {
+ call(callback, operationID, UserForSDK.Friend().AddBlack, blackUserID, ex)
+}
+
+func GetBlackList(callback open_im_sdk_callback.Base, operationID string) {
+ call(callback, operationID, UserForSDK.Friend().GetBlackList)
+}
+
+func RemoveBlack(callback open_im_sdk_callback.Base, operationID string, removeUserID string) {
+ call(callback, operationID, UserForSDK.Friend().RemoveBlack, removeUserID)
+}
+func SetFriendsEx(callback open_im_sdk_callback.Base, operationID string, friendIDs string, ex string) {
+ call(callback, operationID, UserForSDK.Friend().SetFriendsEx, friendIDs, ex)
+}
diff --git a/go/chao-sdk-core/open_im_sdk/group.go b/go/chao-sdk-core/open_im_sdk/group.go
new file mode 100644
index 0000000..691c3dd
--- /dev/null
+++ b/go/chao-sdk-core/open_im_sdk/group.go
@@ -0,0 +1,141 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package open_im_sdk
+
+import "github.com/openimsdk/openim-sdk-core/v3/open_im_sdk_callback"
+
+//funcation CreateGroup(callback open_im_sdk_callback.Base, operationID string, groupBaseInfo string, memberList string) {
+// call(callback, operationID, UserForSDK.Group().CreateGroup, groupBaseInfo, memberList)
+//}
+
+func CreateGroup(callback open_im_sdk_callback.Base, operationID string, groupReqInfo string) {
+ call(callback, operationID, UserForSDK.Group().CreateGroup, groupReqInfo)
+}
+
+func JoinGroup(callback open_im_sdk_callback.Base, operationID string, groupID string, reqMsg string, joinSource int32, ex string) {
+ call(callback, operationID, UserForSDK.Group().JoinGroup, groupID, reqMsg, joinSource, ex)
+}
+
+func QuitGroup(callback open_im_sdk_callback.Base, operationID string, groupID string) {
+ call(callback, operationID, UserForSDK.Group().QuitGroup, groupID)
+}
+
+func DismissGroup(callback open_im_sdk_callback.Base, operationID string, groupID string) {
+ call(callback, operationID, UserForSDK.Group().DismissGroup, groupID)
+}
+
+func SetGroupVerification(callback open_im_sdk_callback.Base, operationID string, groupID string, verification int32) {
+ call(callback, operationID, UserForSDK.Group().SetGroupVerification, groupID, verification)
+}
+
+func SetGroupApplyMemberFriend(callback open_im_sdk_callback.Base, operationID string, groupID string, rule int32) {
+ call(callback, operationID, UserForSDK.Group().SetGroupApplyMemberFriend, groupID, rule)
+}
+
+func SetGroupLookMemberInfo(callback open_im_sdk_callback.Base, operationID string, groupID string, rule int32) {
+ call(callback, operationID, UserForSDK.Group().SetGroupLookMemberInfo, groupID, rule)
+}
+
+func ChangeGroupMute(callback open_im_sdk_callback.Base, operationID string, groupID string, isMute bool) {
+ call(callback, operationID, UserForSDK.Group().ChangeGroupMute, groupID, isMute)
+}
+
+func ChangeGroupMemberMute(callback open_im_sdk_callback.Base, operationID string, groupID string, userID string, mutedSeconds int) {
+ call(callback, operationID, UserForSDK.Group().ChangeGroupMemberMute, groupID, userID, mutedSeconds)
+}
+
+func TransferGroupOwner(callback open_im_sdk_callback.Base, operationID string, groupID string, newOwnerUserID string) {
+ call(callback, operationID, UserForSDK.Group().TransferGroupOwner, groupID, newOwnerUserID)
+}
+
+func KickGroupMember(callback open_im_sdk_callback.Base, operationID string, groupID string, reason string, userIDList string) {
+ call(callback, operationID, UserForSDK.Group().KickGroupMember, groupID, reason, userIDList)
+}
+
+func SetGroupInfo(callback open_im_sdk_callback.Base, operationID string, groupInfo string) {
+ call(callback, operationID, UserForSDK.Group().SetGroupInfo, groupInfo)
+}
+
+func SetGroupMemberInfo(callback open_im_sdk_callback.Base, operationID string, groupMemberInfo string) {
+ call(callback, operationID, UserForSDK.Group().SetGroupMemberInfo, groupMemberInfo)
+}
+
+func SetGroupMemberRoleLevel(callback open_im_sdk_callback.Base, operationID string, groupID string, userID string, roleLevel int) {
+ call(callback, operationID, UserForSDK.Group().SetGroupMemberRoleLevel, groupID, userID, roleLevel)
+}
+
+func SetGroupMemberNickname(callback open_im_sdk_callback.Base, operationID string, groupID string, userID string, groupMemberNickname string) {
+ call(callback, operationID, UserForSDK.Group().SetGroupMemberNickname, groupID, userID, groupMemberNickname)
+}
+
+func GetJoinedGroupList(callback open_im_sdk_callback.Base, operationID string) {
+ call(callback, operationID, UserForSDK.Group().GetJoinedGroupList)
+}
+
+func GetJoinedGroupListPage(callback open_im_sdk_callback.Base, operationID string, offset, count int32) {
+ call(callback, operationID, UserForSDK.Group().GetJoinedGroupListPage, offset, count)
+}
+
+func GetSpecifiedGroupsInfo(callback open_im_sdk_callback.Base, operationID string, groupIDList string) {
+ call(callback, operationID, UserForSDK.Group().GetSpecifiedGroupsInfo, groupIDList)
+}
+
+func SearchGroups(callback open_im_sdk_callback.Base, operationID string, searchParam string) {
+ call(callback, operationID, UserForSDK.Group().SearchGroups, searchParam)
+}
+
+func GetGroupMemberOwnerAndAdmin(callback open_im_sdk_callback.Base, operationID string, groupID string) {
+ call(callback, operationID, UserForSDK.Group().GetGroupMemberOwnerAndAdmin, groupID)
+}
+
+func GetGroupMemberListByJoinTimeFilter(callback open_im_sdk_callback.Base, operationID string, groupID string, offset int32, count int32, joinTimeBegin int64, joinTimeEnd int64, filterUserIDList string) {
+ call(callback, operationID, UserForSDK.Group().GetGroupMemberListByJoinTimeFilter, groupID, offset, count, joinTimeBegin, joinTimeEnd, filterUserIDList)
+}
+
+func GetSpecifiedGroupMembersInfo(callback open_im_sdk_callback.Base, operationID string, groupID string, userIDList string) {
+ call(callback, operationID, UserForSDK.Group().GetSpecifiedGroupMembersInfo, groupID, userIDList)
+}
+
+func GetGroupMemberList(callback open_im_sdk_callback.Base, operationID string, groupID string, filter int32, offset int32, count int32) {
+ call(callback, operationID, UserForSDK.Group().GetGroupMemberList, groupID, filter, offset, count)
+}
+
+func GetGroupApplicationListAsRecipient(callback open_im_sdk_callback.Base, operationID string) {
+ call(callback, operationID, UserForSDK.Group().GetGroupApplicationListAsRecipient)
+}
+
+func GetGroupApplicationListAsApplicant(callback open_im_sdk_callback.Base, operationID string) {
+ call(callback, operationID, UserForSDK.Group().GetGroupApplicationListAsApplicant)
+}
+
+func SearchGroupMembers(callback open_im_sdk_callback.Base, operationID string, searchParam string) {
+ call(callback, operationID, UserForSDK.Group().SearchGroupMembers, searchParam)
+}
+
+func IsJoinGroup(callback open_im_sdk_callback.Base, operationID string, groupID string) {
+ call(callback, operationID, UserForSDK.Group().IsJoinGroup, groupID)
+}
+
+func InviteUserToGroup(callback open_im_sdk_callback.Base, operationID string, groupID string, reason string, userIDList string) {
+ call(callback, operationID, UserForSDK.Group().InviteUserToGroup, groupID, reason, userIDList)
+}
+
+func AcceptGroupApplication(callback open_im_sdk_callback.Base, operationID string, groupID string, fromUserID string, handleMsg string) {
+ call(callback, operationID, UserForSDK.Group().AcceptGroupApplication, groupID, fromUserID, handleMsg)
+}
+
+func RefuseGroupApplication(callback open_im_sdk_callback.Base, operationID string, groupID string, fromUserID string, handleMsg string) {
+ call(callback, operationID, UserForSDK.Group().RefuseGroupApplication, groupID, fromUserID, handleMsg)
+}
diff --git a/go/chao-sdk-core/open_im_sdk/init_login.go b/go/chao-sdk-core/open_im_sdk/init_login.go
new file mode 100644
index 0000000..cb95e46
--- /dev/null
+++ b/go/chao-sdk-core/open_im_sdk/init_login.go
@@ -0,0 +1,136 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package open_im_sdk
+
+import (
+ "context"
+ "encoding/json"
+ "fmt"
+ "github.com/openimsdk/openim-sdk-core/v3/open_im_sdk_callback"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/ccontext"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/sdk_struct"
+ "go.etcd.io/etcd/api/v3/version"
+ "strings"
+
+ "github.com/openimsdk/tools/log"
+ "github.com/openimsdk/tools/mcontext"
+)
+
+func GetSdkVersion() string {
+ return constant.GetSdkVersion()
+}
+
+const (
+ rotateCount uint = 0
+ rotationTime uint = 24
+)
+
+func SetHeartbeatInterval(heartbeatInterval int) {
+ constant.HeartbeatInterval = heartbeatInterval
+}
+
+func InitSDK(listener open_im_sdk_callback.OnConnListener, operationID string, config string) bool {
+ if UserForSDK != nil {
+ fmt.Println(operationID, "Initialize multiple times, use the existing ", UserForSDK, " Previous configuration ", UserForSDK.ImConfig(), " now configuration: ", config)
+ return true
+ }
+ var configArgs sdk_struct.IMConfig
+ if err := json.Unmarshal([]byte(config), &configArgs); err != nil {
+ fmt.Println(operationID, "Unmarshal failed ", err.Error(), config)
+ return false
+ }
+ if configArgs.PlatformID == 0 {
+ return false
+ }
+ if err := log.InitFromConfig("open-im-sdk-core", "", int(configArgs.LogLevel), configArgs.IsLogStandardOutput, false, configArgs.LogFilePath, rotateCount, rotationTime, version.Version); err != nil {
+ fmt.Println(operationID, "log init failed ", err.Error())
+ }
+ fmt.Println("init log success")
+ // localLog.NewPrivateLog("", configArgs.LogLevel)
+ ctx := mcontext.NewCtx(operationID)
+ if !strings.Contains(configArgs.ApiAddr, "http") {
+ log.ZError(ctx, "api is http protocol, api format is invalid", nil)
+ return false
+ }
+ if !strings.Contains(configArgs.WsAddr, "ws") {
+ log.ZError(ctx, "ws is ws protocol, ws format is invalid", nil)
+ return false
+ }
+
+ log.ZInfo(ctx, "InitSDK info", "config", configArgs, "sdkVersion", GetSdkVersion())
+ if listener == nil || config == "" {
+ log.ZError(ctx, "listener or config is nil", nil)
+ return false
+ }
+ UserForSDK = new(LoginMgr)
+ return UserForSDK.InitSDK(configArgs, listener)
+}
+func UnInitSDK(operationID string) {
+ if UserForSDK == nil {
+ fmt.Println(operationID, "UserForSDK is nil,")
+ return
+ }
+ UserForSDK.UnInitSDK()
+ UserForSDK = nil
+
+}
+
+func Login(callback open_im_sdk_callback.Base, operationID string, userID, token string) {
+ call(callback, operationID, UserForSDK.Login, userID, token)
+}
+
+func Logout(callback open_im_sdk_callback.Base, operationID string) {
+ call(callback, operationID, UserForSDK.Logout)
+}
+
+func SetAppBackgroundStatus(callback open_im_sdk_callback.Base, operationID string, isBackground bool) {
+ call(callback, operationID, UserForSDK.SetAppBackgroundStatus, isBackground)
+}
+func NetworkStatusChanged(callback open_im_sdk_callback.Base, operationID string) {
+ call(callback, operationID, UserForSDK.NetworkStatusChanged)
+}
+
+func GetLoginStatus(operationID string) int {
+ if UserForSDK == nil {
+ return constant.Uninitialized
+ }
+ return UserForSDK.GetLoginStatus(ccontext.WithOperationID(context.Background(), operationID))
+}
+
+func GetLoginUserID() string {
+ if UserForSDK == nil {
+ return ""
+ }
+ return UserForSDK.GetLoginUserID()
+}
+
+func (u *LoginMgr) Login(ctx context.Context, userID, token string) error {
+ return u.login(ctx, userID, token)
+}
+
+func (u *LoginMgr) Logout(ctx context.Context) error {
+ return u.logout(ctx, false)
+}
+
+func (u *LoginMgr) SetAppBackgroundStatus(ctx context.Context, isBackground bool) error {
+ return u.setAppBackgroundStatus(ctx, isBackground)
+}
+func (u *LoginMgr) NetworkStatusChanged(ctx context.Context) {
+ u.longConnMgr.Close(ctx)
+}
+func (u *LoginMgr) GetLoginStatus(ctx context.Context) int {
+ return u.getLoginStatus(ctx)
+}
diff --git a/go/chao-sdk-core/open_im_sdk/listener.go b/go/chao-sdk-core/open_im_sdk/listener.go
new file mode 100644
index 0000000..c244ad9
--- /dev/null
+++ b/go/chao-sdk-core/open_im_sdk/listener.go
@@ -0,0 +1,52 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package open_im_sdk
+
+import (
+ "github.com/openimsdk/openim-sdk-core/v3/open_im_sdk_callback"
+)
+
+func SetGroupListener(listener open_im_sdk_callback.OnGroupListener) {
+ listenerCall(UserForSDK.SetGroupListener, listener)
+}
+
+func SetConversationListener(listener open_im_sdk_callback.OnConversationListener) {
+ listenerCall(UserForSDK.SetConversationListener, listener)
+}
+
+func SetAdvancedMsgListener(listener open_im_sdk_callback.OnAdvancedMsgListener) {
+ listenerCall(UserForSDK.SetAdvancedMsgListener, listener)
+}
+
+func SetBatchMsgListener(listener open_im_sdk_callback.OnBatchMsgListener) {
+ listenerCall(UserForSDK.SetBatchMsgListener, listener)
+}
+
+func SetUserListener(listener open_im_sdk_callback.OnUserListener) {
+ listenerCall(UserForSDK.SetUserListener, listener)
+
+}
+
+func SetFriendListener(listener open_im_sdk_callback.OnFriendshipListener) {
+ listenerCall(UserForSDK.SetFriendListener, listener)
+}
+
+func SetCustomBusinessListener(listener open_im_sdk_callback.OnCustomBusinessListener) {
+ listenerCall(UserForSDK.SetCustomBusinessListener, listener)
+}
+
+func SetMessageKvInfoListener(listener open_im_sdk_callback.OnMessageKvInfoListener) {
+ listenerCall(UserForSDK.SetMessageKvInfoListener, listener)
+}
diff --git a/go/chao-sdk-core/open_im_sdk/third.go b/go/chao-sdk-core/open_im_sdk/third.go
new file mode 100644
index 0000000..4922705
--- /dev/null
+++ b/go/chao-sdk-core/open_im_sdk/third.go
@@ -0,0 +1,32 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package open_im_sdk
+
+import (
+ "github.com/openimsdk/openim-sdk-core/v3/internal/third"
+ "github.com/openimsdk/openim-sdk-core/v3/open_im_sdk_callback"
+)
+
+func UpdateFcmToken(callback open_im_sdk_callback.Base, operationID, fcmToken string, expireTime int64) {
+ call(callback, operationID, UserForSDK.Third().UpdateFcmToken, fcmToken, expireTime)
+}
+
+func SetAppBadge(callback open_im_sdk_callback.Base, operationID string, appUnreadCount int32) {
+ call(callback, operationID, UserForSDK.Third().SetAppBadge, appUnreadCount)
+}
+
+func UploadLogs(callback open_im_sdk_callback.Base, operationID string, progress open_im_sdk_callback.UploadLogProgress) {
+ call(callback, operationID, UserForSDK.Third().UploadLogs, third.Progress(progress))
+}
diff --git a/go/chao-sdk-core/open_im_sdk/user.go b/go/chao-sdk-core/open_im_sdk/user.go
new file mode 100644
index 0000000..247378a
--- /dev/null
+++ b/go/chao-sdk-core/open_im_sdk/user.go
@@ -0,0 +1,91 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package open_im_sdk
+
+import (
+ "github.com/openimsdk/openim-sdk-core/v3/open_im_sdk_callback"
+)
+
+func GetUsersInfo(callback open_im_sdk_callback.Base, operationID string, userIDs string) {
+ call(callback, operationID, UserForSDK.Full().GetUsersInfo, userIDs)
+}
+
+func GetUsersInfoWithCache(callback open_im_sdk_callback.Base, operationID string, userIDs, groupID string) {
+ call(callback, operationID, UserForSDK.Full().GetUsersInfoWithCache, userIDs, groupID)
+}
+
+// GetUsersInfoFromSrv obtains the information about multiple users.
+func GetUsersInfoFromSrv(callback open_im_sdk_callback.Base, operationID string, userIDs string) {
+ call(callback, operationID, UserForSDK.User().GetUsersInfo, userIDs)
+}
+
+// SetSelfInfo sets the user's own information.
+// Deprecated: user SetSelfInfoEx instead
+func SetSelfInfo(callback open_im_sdk_callback.Base, operationID string, userInfo string) {
+ call(callback, operationID, UserForSDK.User().SetSelfInfo, userInfo)
+}
+
+// SetSelfInfoEx sets the user's own information with Ex field.
+func SetSelfInfoEx(callback open_im_sdk_callback.Base, operationID string, userInfo string) {
+ call(callback, operationID, UserForSDK.User().SetSelfInfoEx, userInfo)
+}
+func SetGlobalRecvMessageOpt(callback open_im_sdk_callback.Base, operationID string, opt int) {
+ call(callback, operationID, UserForSDK.User().SetGlobalRecvMessageOpt, opt)
+}
+
+// GetSelfUserInfo obtains the user's own information.
+func GetSelfUserInfo(callback open_im_sdk_callback.Base, operationID string) {
+ call(callback, operationID, UserForSDK.User().GetSelfUserInfo)
+}
+
+// UpdateMsgSenderInfo updates the message sender's nickname and face URL.
+func UpdateMsgSenderInfo(callback open_im_sdk_callback.Base, operationID string, nickname, faceURL string) {
+ call(callback, operationID, UserForSDK.User().UpdateMsgSenderInfo, nickname, faceURL)
+}
+
+// SubscribeUsersStatus Presence status of subscribed users.
+func SubscribeUsersStatus(callback open_im_sdk_callback.Base, operationID string, userIDs string) {
+ call(callback, operationID, UserForSDK.User().SubscribeUsersStatus, userIDs)
+}
+
+// UnsubscribeUsersStatus Unsubscribe a user's presence.
+func UnsubscribeUsersStatus(callback open_im_sdk_callback.Base, operationID string, userIDs string) {
+ call(callback, operationID, UserForSDK.User().UnsubscribeUsersStatus, userIDs)
+}
+
+// GetSubscribeUsersStatus Get the online status of subscribers.
+func GetSubscribeUsersStatus(callback open_im_sdk_callback.Base, operationID string) {
+ call(callback, operationID, UserForSDK.User().GetSubscribeUsersStatus)
+}
+
+// GetUserStatus Get the online status of users.
+func GetUserStatus(callback open_im_sdk_callback.Base, operationID string, userIDs string) {
+ call(callback, operationID, UserForSDK.User().GetUserStatus, userIDs)
+}
+
+// AddUserCommand add to user's favorite
+func AddUserCommand(callback open_im_sdk_callback.Base, operationID string, Type int32, uuid string, value string) {
+ call(callback, operationID, UserForSDK.User().ProcessUserCommandAdd, Type, uuid, value)
+}
+
+// DeleteUserCommand delete from user's favorite
+func DeleteUserCommand(callback open_im_sdk_callback.Base, operationID string, Type int32, uuid string) {
+ call(callback, operationID, UserForSDK.User().ProcessUserCommandDelete, Type, uuid)
+}
+
+// GetAllUserCommands get user's favorite
+func GetAllUserCommands(callback open_im_sdk_callback.Base, operationID string, Type int32) {
+ call(callback, operationID, UserForSDK.User().ProcessUserCommandGetAll, Type)
+}
diff --git a/go/chao-sdk-core/open_im_sdk/userRelated.go b/go/chao-sdk-core/open_im_sdk/userRelated.go
new file mode 100644
index 0000000..c811043
--- /dev/null
+++ b/go/chao-sdk-core/open_im_sdk/userRelated.go
@@ -0,0 +1,464 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package open_im_sdk
+
+import (
+ "context"
+ "encoding/json"
+ "errors"
+ "fmt"
+ "github.com/openimsdk/openim-sdk-core/v3/internal/business"
+ conv "github.com/openimsdk/openim-sdk-core/v3/internal/conversation_msg"
+ "github.com/openimsdk/openim-sdk-core/v3/internal/file"
+ "github.com/openimsdk/openim-sdk-core/v3/internal/friend"
+ "github.com/openimsdk/openim-sdk-core/v3/internal/full"
+ "github.com/openimsdk/openim-sdk-core/v3/internal/group"
+ "github.com/openimsdk/openim-sdk-core/v3/internal/interaction"
+ "github.com/openimsdk/openim-sdk-core/v3/internal/third"
+ "github.com/openimsdk/openim-sdk-core/v3/internal/user"
+ "github.com/openimsdk/openim-sdk-core/v3/open_im_sdk_callback"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/ccontext"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/common"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/db_interface"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/sdkerrs"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/sdk_struct"
+ "github.com/openimsdk/protocol/push"
+ "github.com/openimsdk/protocol/sdkws"
+ "github.com/openimsdk/tools/log"
+ "strings"
+ "sync"
+ "time"
+ "unsafe"
+)
+
+const (
+ LogoutStatus = iota + 1
+ Logging
+ Logged
+)
+
+const (
+ LogoutTips = "js sdk socket close"
+)
+
+var (
+ // UserForSDK Client-independent user class
+ UserForSDK *LoginMgr
+)
+
+// CheckResourceLoad checks the SDK is resource load status.
+func CheckResourceLoad(uSDK *LoginMgr, funcName string) error {
+ if uSDK == nil {
+ return utils.Wrap(errors.New("CheckResourceLoad failed uSDK == nil "), "")
+ }
+ if funcName == "" {
+ return nil
+ }
+ parts := strings.Split(funcName, ".")
+ if parts[len(parts)-1] == "Login-fm" {
+ return nil
+ }
+ if uSDK.Friend() == nil || uSDK.User() == nil || uSDK.Group() == nil || uSDK.Conversation() == nil ||
+ uSDK.Full() == nil {
+ return utils.Wrap(errors.New("CheckResourceLoad failed, resource nil "), "")
+ }
+ return nil
+}
+
+type LoginMgr struct {
+ friend *friend.Friend
+ group *group.Group
+ conversation *conv.Conversation
+ user *user.User
+ file *file.File
+ business *business.Business
+
+ full *full.Full
+ db db_interface.DataBase
+ longConnMgr *interaction.LongConnMgr
+ msgSyncer *interaction.MsgSyncer
+ third *third.Third
+ token string
+ loginUserID string
+ connListener open_im_sdk_callback.OnConnListener
+
+ justOnceFlag bool
+
+ w sync.Mutex
+ loginStatus int
+
+ groupListener open_im_sdk_callback.OnGroupListener
+ friendListener open_im_sdk_callback.OnFriendshipListener
+ conversationListener open_im_sdk_callback.OnConversationListener
+ advancedMsgListener open_im_sdk_callback.OnAdvancedMsgListener
+ batchMsgListener open_im_sdk_callback.OnBatchMsgListener
+ userListener open_im_sdk_callback.OnUserListener
+ signalingListener open_im_sdk_callback.OnSignalingListener
+ businessListener open_im_sdk_callback.OnCustomBusinessListener
+ msgKvListener open_im_sdk_callback.OnMessageKvInfoListener
+
+ conversationCh chan common.Cmd2Value
+ cmdWsCh chan common.Cmd2Value
+ heartbeatCmdCh chan common.Cmd2Value
+ pushMsgAndMaxSeqCh chan common.Cmd2Value
+ loginMgrCh chan common.Cmd2Value
+
+ ctx context.Context
+ cancel context.CancelFunc
+ info *ccontext.GlobalConfig
+ id2MinSeq map[string]int64
+}
+
+func (u *LoginMgr) GroupListener() open_im_sdk_callback.OnGroupListener {
+ return u.groupListener
+}
+
+func (u *LoginMgr) FriendListener() open_im_sdk_callback.OnFriendshipListener {
+ return u.friendListener
+}
+
+func (u *LoginMgr) ConversationListener() open_im_sdk_callback.OnConversationListener {
+ return u.conversationListener
+}
+
+func (u *LoginMgr) AdvancedMsgListener() open_im_sdk_callback.OnAdvancedMsgListener {
+ return u.advancedMsgListener
+}
+
+func (u *LoginMgr) BatchMsgListener() open_im_sdk_callback.OnBatchMsgListener {
+ return u.batchMsgListener
+}
+
+func (u *LoginMgr) UserListener() open_im_sdk_callback.OnUserListener {
+ return u.userListener
+}
+
+func (u *LoginMgr) SignalingListener() open_im_sdk_callback.OnSignalingListener {
+ return u.signalingListener
+}
+
+func (u *LoginMgr) BusinessListener() open_im_sdk_callback.OnCustomBusinessListener {
+ return u.businessListener
+}
+
+func (u *LoginMgr) MsgKvListener() open_im_sdk_callback.OnMessageKvInfoListener {
+ return u.msgKvListener
+}
+
+func (u *LoginMgr) BaseCtx() context.Context {
+ return u.ctx
+}
+
+func (u *LoginMgr) Exit() {
+ u.cancel()
+}
+
+func (u *LoginMgr) GetToken() string {
+ return u.token
+}
+
+func (u *LoginMgr) Third() *third.Third {
+ return u.third
+}
+
+func (u *LoginMgr) ImConfig() sdk_struct.IMConfig {
+ return sdk_struct.IMConfig{
+ PlatformID: u.info.PlatformID,
+ ApiAddr: u.info.ApiAddr,
+ WsAddr: u.info.WsAddr,
+ DataDir: u.info.DataDir,
+ LogLevel: u.info.LogLevel,
+ IsExternalExtensions: u.info.IsExternalExtensions,
+ }
+}
+
+func (u *LoginMgr) Conversation() *conv.Conversation {
+ return u.conversation
+}
+
+func (u *LoginMgr) User() *user.User {
+ return u.user
+}
+
+func (u *LoginMgr) File() *file.File {
+ return u.file
+}
+
+func (u *LoginMgr) Full() *full.Full {
+ return u.full
+}
+
+func (u *LoginMgr) Group() *group.Group {
+ return u.group
+}
+
+func (u *LoginMgr) Friend() *friend.Friend {
+ return u.friend
+}
+
+func (u *LoginMgr) SetConversationListener(conversationListener open_im_sdk_callback.OnConversationListener) {
+ u.conversationListener = conversationListener
+}
+
+func (u *LoginMgr) SetAdvancedMsgListener(advancedMsgListener open_im_sdk_callback.OnAdvancedMsgListener) {
+ u.advancedMsgListener = advancedMsgListener
+}
+
+func (u *LoginMgr) SetMessageKvInfoListener(messageKvInfoListener open_im_sdk_callback.OnMessageKvInfoListener) {
+ u.msgKvListener = messageKvInfoListener
+}
+
+func (u *LoginMgr) SetBatchMsgListener(batchMsgListener open_im_sdk_callback.OnBatchMsgListener) {
+ u.batchMsgListener = batchMsgListener
+}
+
+func (u *LoginMgr) SetFriendListener(friendListener open_im_sdk_callback.OnFriendshipListener) {
+ u.friendListener = friendListener
+}
+
+func (u *LoginMgr) SetGroupListener(groupListener open_im_sdk_callback.OnGroupListener) {
+ u.groupListener = groupListener
+}
+
+func (u *LoginMgr) SetUserListener(userListener open_im_sdk_callback.OnUserListener) {
+ u.userListener = userListener
+}
+
+func (u *LoginMgr) SetCustomBusinessListener(listener open_im_sdk_callback.OnCustomBusinessListener) {
+ u.businessListener = listener
+}
+func (u *LoginMgr) GetLoginUserID() string {
+ return u.loginUserID
+}
+func (u *LoginMgr) logoutListener(ctx context.Context) {
+ for {
+ select {
+ case <-u.loginMgrCh:
+ log.ZDebug(ctx, "logoutListener exit")
+ err := u.logout(ctx, true)
+ if err != nil {
+ log.ZError(ctx, "logout error", err)
+ }
+ case <-ctx.Done():
+ log.ZInfo(ctx, "logoutListener done sdk logout.....")
+ return
+ }
+ }
+
+}
+
+func NewLoginMgr() *LoginMgr {
+ return &LoginMgr{
+ info: &ccontext.GlobalConfig{}, // åé
å
åįŠēé´
+ }
+}
+func (u *LoginMgr) getLoginStatus(_ context.Context) int {
+ u.w.Lock()
+ defer u.w.Unlock()
+ return u.loginStatus
+}
+func (u *LoginMgr) setLoginStatus(status int) {
+ u.w.Lock()
+ defer u.w.Unlock()
+ u.loginStatus = status
+}
+func (u *LoginMgr) checkSendingMessage(ctx context.Context) {
+ sendingMessages, err := u.db.GetAllSendingMessages(ctx)
+ if err != nil {
+ log.ZError(ctx, "GetAllSendingMessages failed", err)
+ }
+ for _, message := range sendingMessages {
+ if err := u.handlerSendingMsg(ctx, message); err != nil {
+ log.ZError(ctx, "handlerSendingMsg failed", err, "message", message)
+ }
+ if err := u.db.DeleteSendingMessage(ctx, message.ConversationID, message.ClientMsgID); err != nil {
+ log.ZError(ctx, "DeleteSendingMessage failed", err, "conversationID", message.ConversationID, "clientMsgID", message.ClientMsgID)
+ }
+ }
+}
+
+func (u *LoginMgr) handlerSendingMsg(ctx context.Context, sendingMsg *model_struct.LocalSendingMessages) error {
+ tableMessage, err := u.db.GetMessage(ctx, sendingMsg.ConversationID, sendingMsg.ClientMsgID)
+ if err != nil {
+ return err
+ }
+ if tableMessage.Status != constant.MsgStatusSending {
+ return nil
+ }
+ err = u.db.UpdateMessage(ctx, sendingMsg.ConversationID, &model_struct.LocalChatLog{ClientMsgID: sendingMsg.ClientMsgID, Status: constant.MsgStatusSendFailed})
+ if err != nil {
+ return err
+ }
+ conversation, err := u.db.GetConversation(ctx, sendingMsg.ConversationID)
+ if err != nil {
+ return err
+ }
+ latestMsg := &sdk_struct.MsgStruct{}
+ if err := json.Unmarshal([]byte(conversation.LatestMsg), &latestMsg); err != nil {
+ return err
+ }
+ if latestMsg.ClientMsgID == sendingMsg.ClientMsgID {
+ latestMsg.Status = constant.MsgStatusSendFailed
+ conversation.LatestMsg = utils.StructToJsonString(latestMsg)
+ return u.db.UpdateConversation(ctx, conversation)
+ }
+ return nil
+}
+
+func (u *LoginMgr) login(ctx context.Context, userID, token string) error {
+ if u.getLoginStatus(ctx) == Logged {
+ return sdkerrs.ErrLoginRepeat
+ }
+ u.setLoginStatus(Logging)
+ u.info.UserID = userID
+ u.info.Token = token
+ log.ZDebug(ctx, "login start... ", "userID", userID, "token", token)
+ t1 := time.Now()
+ u.token = token
+ u.loginUserID = userID
+ var err error
+ u.db, err = db.NewDataBase(ctx, userID, u.info.DataDir, int(u.info.LogLevel))
+ if err != nil {
+ return sdkerrs.ErrSdkInternal.WrapMsg("init database " + err.Error())
+ }
+ u.checkSendingMessage(ctx)
+ log.ZDebug(ctx, "NewDataBase ok", "userID", userID, "dataDir", u.info.DataDir, "login cost time", time.Since(t1))
+ u.user = user.NewUser(u.db, u.loginUserID, u.conversationCh)
+ u.file = file.NewFile(u.db, u.loginUserID)
+ u.friend = friend.NewFriend(u.loginUserID, u.db, u.user, u.conversationCh)
+
+ u.group = group.NewGroup(u.loginUserID, u.db, u.conversationCh)
+ u.full = full.NewFull(u.user, u.friend, u.group, u.conversationCh, u.db)
+ u.business = business.NewBusiness(u.db)
+ u.third = third.NewThird(u.info.PlatformID, u.loginUserID, constant.SdkVersion, u.info.SystemType, u.info.LogFilePath, u.file)
+ log.ZDebug(ctx, "forcedSynchronization success...", "login cost time: ", time.Since(t1))
+
+ u.msgSyncer, _ = interaction.NewMsgSyncer(ctx, u.conversationCh, u.pushMsgAndMaxSeqCh, u.loginUserID, u.longConnMgr, u.db, 0)
+ u.conversation = conv.NewConversation(ctx, u.longConnMgr, u.db, u.conversationCh,
+ u.friend, u.group, u.user, u.business, u.full, u.file)
+ u.setListener(ctx)
+ u.run(ctx)
+ u.setLoginStatus(Logged)
+ log.ZDebug(ctx, "login success...", "login cost time: ", time.Since(t1))
+ return nil
+}
+
+func (u *LoginMgr) setListener(ctx context.Context) {
+ setListener(ctx, &u.userListener, u.UserListener, u.user.SetListener, newEmptyUserListener)
+ setListener(ctx, &u.friendListener, u.FriendListener, u.friend.SetListener, newEmptyFriendshipListener)
+ setListener(ctx, &u.groupListener, u.GroupListener, u.group.SetGroupListener, newEmptyGroupListener)
+ setListener(ctx, &u.conversationListener, u.ConversationListener, u.conversation.SetConversationListener, newEmptyConversationListener)
+ setListener(ctx, &u.advancedMsgListener, u.AdvancedMsgListener, u.conversation.SetMsgListener, newEmptyAdvancedMsgListener)
+ setListener(ctx, &u.batchMsgListener, u.BatchMsgListener, u.conversation.SetBatchMsgListener, nil)
+ setListener(ctx, &u.businessListener, u.BusinessListener, u.business.SetListener, newEmptyCustomBusinessListener)
+}
+
+func setListener[T any](ctx context.Context, listener *T, getter func() T, setFunc func(listener func() T), newFunc func(context.Context) T) {
+ if *(*unsafe.Pointer)(unsafe.Pointer(listener)) == nil && newFunc != nil {
+ *listener = newFunc(ctx)
+ }
+ setFunc(getter)
+}
+
+func (u *LoginMgr) run(ctx context.Context) {
+ u.longConnMgr.Run(ctx)
+ go u.msgSyncer.DoListener(ctx)
+ go common.DoListener(u.conversation, u.ctx)
+ go u.logoutListener(ctx)
+}
+
+func (u *LoginMgr) InitSDK(config sdk_struct.IMConfig, listener open_im_sdk_callback.OnConnListener) bool {
+ if listener == nil {
+ return false
+ }
+ u.info = &ccontext.GlobalConfig{}
+ u.info.IMConfig = config
+ u.connListener = listener
+ u.initResources()
+ return true
+}
+
+func (u *LoginMgr) Context() context.Context {
+ return u.ctx
+}
+
+func (u *LoginMgr) initResources() {
+ ctx := ccontext.WithInfo(context.Background(), u.info)
+ u.ctx, u.cancel = context.WithCancel(ctx)
+ u.conversationCh = make(chan common.Cmd2Value, 1000)
+ u.heartbeatCmdCh = make(chan common.Cmd2Value, 10)
+ u.pushMsgAndMaxSeqCh = make(chan common.Cmd2Value, 1000)
+ u.loginMgrCh = make(chan common.Cmd2Value, 1)
+ u.longConnMgr = interaction.NewLongConnMgr(u.ctx, u.connListener, u.heartbeatCmdCh, u.pushMsgAndMaxSeqCh, u.loginMgrCh)
+ u.ctx = ccontext.WithApiErrCode(u.ctx, &apiErrCallback{loginMgrCh: u.loginMgrCh, listener: u.connListener})
+ u.setLoginStatus(LogoutStatus)
+}
+
+func (u *LoginMgr) UnInitSDK() {
+ if u.getLoginStatus(context.Background()) == Logged {
+ fmt.Println("sdk not logout, please logout first")
+ return
+ }
+ u.info = nil
+ u.setLoginStatus(0)
+}
+
+// token error recycle recourse, kicked not recycle
+func (u *LoginMgr) logout(ctx context.Context, isTokenValid bool) error {
+ if ccontext.Info(ctx).OperationID() == LogoutTips {
+ isTokenValid = true
+ }
+ if !isTokenValid {
+ ctx, cancel := context.WithTimeout(ctx, 20*time.Second)
+ defer cancel()
+ err := u.longConnMgr.SendReqWaitResp(ctx, &push.DelUserPushTokenReq{UserID: u.info.UserID, PlatformID: u.info.PlatformID}, constant.LogoutMsg, &push.DelUserPushTokenResp{})
+ if err != nil {
+ log.ZWarn(ctx, "TriggerCmdLogout server recycle resources failed...", err)
+ } else {
+ log.ZDebug(ctx, "TriggerCmdLogout server recycle resources success...")
+ }
+ }
+ u.Exit()
+ err := u.db.Close(u.ctx)
+ if err != nil {
+ log.ZWarn(ctx, "TriggerCmdLogout db recycle resources failed...", err)
+ }
+ // user object must be rest when user logout
+ u.initResources()
+ log.ZDebug(ctx, "TriggerCmdLogout client success...", "isTokenValid", isTokenValid)
+ return nil
+}
+
+func (u *LoginMgr) setAppBackgroundStatus(ctx context.Context, isBackground bool) error {
+ if u.longConnMgr.GetConnectionStatus() == 0 {
+ u.longConnMgr.SetBackground(isBackground)
+ return nil
+ }
+ var resp sdkws.SetAppBackgroundStatusResp
+ err := u.longConnMgr.SendReqWaitResp(ctx, &sdkws.SetAppBackgroundStatusReq{UserID: u.loginUserID, IsBackground: isBackground}, constant.SetBackgroundStatus, &resp)
+ if err != nil {
+ return err
+ } else {
+ u.longConnMgr.SetBackground(isBackground)
+ if isBackground == false {
+ _ = common.TriggerCmdWakeUp(u.heartbeatCmdCh)
+ }
+ return nil
+ }
+}
diff --git a/go/chao-sdk-core/open_im_sdk/workmoments.go b/go/chao-sdk-core/open_im_sdk/workmoments.go
new file mode 100644
index 0000000..06101b3
--- /dev/null
+++ b/go/chao-sdk-core/open_im_sdk/workmoments.go
@@ -0,0 +1,31 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package open_im_sdk
+
+//import (
+// "open_im_sdk/open_im_sdk_callback"
+//)
+//
+//funcation GetWorkMomentsUnReadCount(callback open_im_sdk_callback.Base, operationID string) {
+// call(callback, operationID, UserForSDK.WorkMoments().GetWorkMomentsUnReadCount)
+//}
+//
+//funcation GetWorkMomentsNotification(callback open_im_sdk_callback.Base, operationID string, offset int, count int) {
+// call(callback, operationID, UserForSDK.WorkMoments().GetWorkMomentsNotification, offset, count)
+//}
+//
+//funcation ClearWorkMomentsNotification(callback open_im_sdk_callback.Base, operationID string) {
+// call(callback, operationID, UserForSDK.WorkMoments().ClearWorkMomentsNotification)
+//}
diff --git a/go/chao-sdk-core/open_im_sdk_callback/callback_client.go b/go/chao-sdk-core/open_im_sdk_callback/callback_client.go
new file mode 100644
index 0000000..e5643cd
--- /dev/null
+++ b/go/chao-sdk-core/open_im_sdk_callback/callback_client.go
@@ -0,0 +1,158 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package open_im_sdk_callback
+
+type Base interface {
+ OnError(errCode int32, errMsg string)
+ OnSuccess(data string)
+}
+type SendMsgCallBack interface {
+ Base
+ OnProgress(progress int)
+}
+
+type OnConnListener interface {
+ OnConnecting()
+ OnConnectSuccess()
+ OnConnectFailed(errCode int32, errMsg string)
+ OnKickedOffline()
+ OnUserTokenExpired()
+ OnUserTokenInvalid(errMsg string)
+}
+
+type OnGroupListener interface {
+ OnJoinedGroupAdded(groupInfo string)
+ OnJoinedGroupDeleted(groupInfo string)
+ OnGroupMemberAdded(groupMemberInfo string)
+ OnGroupMemberDeleted(groupMemberInfo string)
+ OnGroupApplicationAdded(groupApplication string)
+ OnGroupApplicationDeleted(groupApplication string)
+ OnGroupInfoChanged(groupInfo string)
+ OnGroupDismissed(groupInfo string)
+ OnGroupMemberInfoChanged(groupMemberInfo string)
+ OnGroupApplicationAccepted(groupApplication string)
+ OnGroupApplicationRejected(groupApplication string)
+}
+type OnFriendshipListener interface {
+ OnFriendApplicationAdded(friendApplication string)
+ OnFriendApplicationDeleted(friendApplication string)
+ OnFriendApplicationAccepted(friendApplication string)
+ OnFriendApplicationRejected(friendApplication string)
+ OnFriendAdded(friendInfo string)
+ OnFriendDeleted(friendInfo string)
+ OnFriendInfoChanged(friendInfo string)
+ OnBlackAdded(blackInfo string)
+ OnBlackDeleted(blackInfo string)
+}
+type OnConversationListener interface {
+ OnSyncServerStart()
+ OnSyncServerFinish()
+ //OnSyncServerProgress(progress int)
+ OnSyncServerFailed()
+ OnNewConversation(conversationList string)
+ OnConversationChanged(conversationList string)
+ OnTotalUnreadMessageCountChanged(totalUnreadCount int32)
+ OnConversationUserInputStatusChanged(change string)
+}
+
+type OnAdvancedMsgListener interface {
+ OnRecvNewMessage(message string)
+ OnRecvC2CReadReceipt(msgReceiptList string)
+ OnRecvGroupReadReceipt(groupMsgReceiptList string)
+
+ OnNewRecvMessageRevoked(messageRevoked string)
+ OnRecvMessageExtensionsChanged(msgID string, reactionExtensionList string)
+ OnRecvMessageExtensionsDeleted(msgID string, reactionExtensionKeyList string)
+ OnRecvMessageExtensionsAdded(msgID string, reactionExtensionList string)
+ OnRecvOfflineNewMessage(message string)
+ OnMsgDeleted(message string)
+ OnRecvOnlineOnlyMessage(message string)
+}
+
+type OnBatchMsgListener interface {
+ OnRecvNewMessages(messageList string)
+ OnRecvOfflineNewMessages(messageList string)
+}
+
+type OnUserListener interface {
+ OnSelfInfoUpdated(userInfo string)
+ OnUserStatusChanged(userOnlineStatus string)
+ OnUserCommandAdd(userCommand string)
+ OnUserCommandDelete(userCommand string)
+ OnUserCommandUpdate(userCommand string)
+}
+
+type OnCustomBusinessListener interface {
+ OnRecvCustomBusinessMessage(businessMessage string)
+}
+type OnMessageKvInfoListener interface {
+ OnMessageKvInfoChanged(messageChangedList string)
+}
+
+type OnListenerForService interface {
+ //æäēēįŗč¯ˇčŋįž¤
+ OnGroupApplicationAdded(groupApplication string)
+ //čŋįž¤įŗč¯ˇčĸĢåæ
+ OnGroupApplicationAccepted(groupApplication string)
+ //æäēēįŗč¯ˇæˇģå äŊ ä¸ēåĨŊå
+ OnFriendApplicationAdded(friendApplication string)
+ //åĨŊåįŗč¯ˇčĸĢåæ
+ OnFriendApplicationAccepted(groupApplication string)
+ //æļå°æ°æļæ¯
+ OnRecvNewMessage(message string)
+}
+
+type OnSignalingListener interface {
+ OnReceiveNewInvitation(receiveNewInvitationCallback string)
+
+ OnInviteeAccepted(inviteeAcceptedCallback string)
+
+ OnInviteeAcceptedByOtherDevice(inviteeAcceptedCallback string)
+
+ OnInviteeRejected(inviteeRejectedCallback string)
+
+ OnInviteeRejectedByOtherDevice(inviteeRejectedCallback string)
+ //
+ OnInvitationCancelled(invitationCancelledCallback string)
+ //
+ OnInvitationTimeout(invitationTimeoutCallback string)
+ //
+ OnHangUp(hangUpCallback string)
+
+ OnRoomParticipantConnected(onRoomParticipantConnectedCallback string)
+
+ OnRoomParticipantDisconnected(onRoomParticipantDisconnectedCallback string)
+}
+
+type UploadFileCallback interface {
+ Open(size int64) // æäģļæåŧį大å°
+ PartSize(partSize int64, num int) // åį大å°,æ°é
+ HashPartProgress(index int, size int64, partHash string) // æ¯ååįįhashåŧ
+ HashPartComplete(partsHash string, fileHash string) // åååŽæīŧæåĄį̝æ 莰hashåæäģļæįģhash
+ UploadID(uploadID string) // ä¸äŧ ID
+ UploadPartComplete(index int, partSize int64, partHash string) // ä¸äŧ åįčŋåēĻ
+ UploadComplete(fileSize int64, streamSize int64, storageSize int64) // æ´äŊčŋåēĻ
+ Complete(size int64, url string, typ int) // ä¸äŧ åŽæ
+}
+
+type UploadLogProgress interface {
+ OnProgress(current int64, size int64)
+}
+
+type AppDataSyncListener interface {
+ OnAppDataSyncStart()
+ OnAppDataSyncProgress(progress int)
+ OnAppDataSyncFinish()
+}
diff --git a/go/chao-sdk-core/open_im_sdk_callback/callback_go_sdk.go b/go/chao-sdk-core/open_im_sdk_callback/callback_go_sdk.go
new file mode 100644
index 0000000..b38005e
--- /dev/null
+++ b/go/chao-sdk-core/open_im_sdk_callback/callback_go_sdk.go
@@ -0,0 +1,88 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package open_im_sdk_callback
+
+import (
+ "context"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+
+ "github.com/openimsdk/tools/log"
+)
+
+type OnFriendshipListenerSdk interface {
+ OnFriendApplicationAdded(friendApplication model_struct.LocalFriendRequest)
+ OnFriendApplicationDeleted(friendApplication model_struct.LocalFriendRequest)
+ OnFriendApplicationAccepted(friendApplication model_struct.LocalFriendRequest)
+ OnFriendApplicationRejected(friendApplication model_struct.LocalFriendRequest)
+ OnFriendAdded(friendInfo model_struct.LocalFriend)
+ OnFriendDeleted(friendInfo model_struct.LocalFriend)
+ OnFriendInfoChanged(friendInfo model_struct.LocalFriend)
+ OnBlackAdded(blackInfo model_struct.LocalBlack)
+ OnBlackDeleted(blackInfo model_struct.LocalBlack)
+}
+
+type onFriendshipListener struct {
+ onFriendshipListener func() OnFriendshipListener
+}
+
+func NewOnFriendshipListenerSdk(listener func() OnFriendshipListener) OnFriendshipListenerSdk {
+ return &onFriendshipListener{listener}
+}
+
+func (o *onFriendshipListener) OnFriendApplicationAdded(friendApplication model_struct.LocalFriendRequest) {
+ log.ZDebug(context.Background(), "OnFriendApplicationAdded", "friendApplication", friendApplication)
+ o.onFriendshipListener().OnFriendApplicationAdded(utils.StructToJsonString(friendApplication))
+}
+
+func (o *onFriendshipListener) OnFriendApplicationDeleted(friendApplication model_struct.LocalFriendRequest) {
+ log.ZDebug(context.Background(), "OnFriendApplicationDeleted", "friendApplication", friendApplication)
+ o.onFriendshipListener().OnFriendApplicationDeleted(utils.StructToJsonString(friendApplication))
+}
+
+func (o *onFriendshipListener) OnFriendApplicationAccepted(friendApplication model_struct.LocalFriendRequest) {
+ log.ZDebug(context.Background(), "OnFriendApplicationAccepted", "friendApplication", friendApplication)
+ o.onFriendshipListener().OnFriendApplicationAccepted(utils.StructToJsonString(friendApplication))
+}
+
+func (o *onFriendshipListener) OnFriendApplicationRejected(friendApplication model_struct.LocalFriendRequest) {
+ log.ZDebug(context.Background(), "OnFriendApplicationRejected", "friendApplication", friendApplication)
+ o.onFriendshipListener().OnFriendApplicationRejected(utils.StructToJsonString(friendApplication))
+}
+
+func (o *onFriendshipListener) OnFriendAdded(friendInfo model_struct.LocalFriend) {
+ log.ZDebug(context.Background(), "OnFriendAdded", "friendInfo", friendInfo)
+ o.onFriendshipListener().OnFriendAdded(utils.StructToJsonString(friendInfo))
+}
+
+func (o *onFriendshipListener) OnFriendDeleted(friendInfo model_struct.LocalFriend) {
+ log.ZDebug(context.Background(), "OnFriendDeleted", "friendInfo", friendInfo)
+ o.onFriendshipListener().OnFriendDeleted(utils.StructToJsonString(friendInfo))
+}
+
+func (o *onFriendshipListener) OnFriendInfoChanged(friendInfo model_struct.LocalFriend) {
+ log.ZDebug(context.Background(), "OnFriendInfoChanged", "friendInfo", friendInfo)
+ o.onFriendshipListener().OnFriendInfoChanged(utils.StructToJsonString(friendInfo))
+}
+
+func (o *onFriendshipListener) OnBlackAdded(blackInfo model_struct.LocalBlack) {
+ log.ZDebug(context.Background(), "OnBlackAdded", "blackInfo", blackInfo)
+ o.onFriendshipListener().OnBlackAdded(utils.StructToJsonString(blackInfo))
+}
+
+func (o *onFriendshipListener) OnBlackDeleted(blackInfo model_struct.LocalBlack) {
+ log.ZDebug(context.Background(), "OnBlackDeleted", "blackInfo", blackInfo)
+ o.onFriendshipListener().OnBlackDeleted(utils.StructToJsonString(blackInfo))
+}
diff --git a/go/chao-sdk-core/pkg/ccontext/context.go b/go/chao-sdk-core/pkg/ccontext/context.go
new file mode 100644
index 0000000..67855a5
--- /dev/null
+++ b/go/chao-sdk-core/pkg/ccontext/context.go
@@ -0,0 +1,131 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package ccontext
+
+import (
+ "context"
+
+ "github.com/openimsdk/openim-sdk-core/v3/open_im_sdk_callback"
+ "github.com/openimsdk/openim-sdk-core/v3/sdk_struct"
+
+ "github.com/openimsdk/tools/mcontext"
+)
+
+const (
+ Callback = "callback"
+)
+
+type GlobalConfig struct {
+ UserID string
+ Token string
+
+ sdk_struct.IMConfig
+}
+
+type ContextInfo interface {
+ UserID() string
+ Token() string
+ PlatformID() int32
+ ApiAddr() string
+ WsAddr() string
+ DataDir() string
+ LogLevel() uint32
+ OperationID() string
+ IsExternalExtensions() bool
+}
+
+func Info(ctx context.Context) ContextInfo {
+ conf := ctx.Value(GlobalConfigKey{}).(*GlobalConfig)
+ return &info{
+ conf: conf,
+ ctx: ctx,
+ }
+}
+
+func WithInfo(ctx context.Context, conf *GlobalConfig) context.Context {
+ return context.WithValue(ctx, GlobalConfigKey{}, conf)
+}
+
+func WithOperationID(ctx context.Context, operationID string) context.Context {
+ return mcontext.SetOperationID(ctx, operationID)
+}
+func WithSendMessageCallback(ctx context.Context, callback open_im_sdk_callback.SendMsgCallBack) context.Context {
+ return context.WithValue(ctx, Callback, callback)
+}
+
+func WithApiErrCode(ctx context.Context, cb ApiErrCodeCallback) context.Context {
+ return context.WithValue(ctx, apiErrCode{}, cb)
+}
+
+func GetApiErrCodeCallback(ctx context.Context) ApiErrCodeCallback {
+ fn, _ := ctx.Value(apiErrCode{}).(ApiErrCodeCallback)
+ if fn == nil {
+ return &emptyApiErrCodeCallback{}
+ }
+ return fn
+}
+
+type GlobalConfigKey struct{}
+
+type info struct {
+ conf *GlobalConfig
+ ctx context.Context
+}
+
+func (i *info) UserID() string {
+ return i.conf.UserID
+}
+
+func (i *info) Token() string {
+ return i.conf.Token
+}
+
+func (i *info) PlatformID() int32 {
+ return i.conf.PlatformID
+}
+
+func (i *info) ApiAddr() string {
+ return i.conf.ApiAddr
+}
+
+func (i *info) WsAddr() string {
+ return i.conf.WsAddr
+}
+
+func (i *info) DataDir() string {
+ return i.conf.DataDir
+}
+
+func (i *info) LogLevel() uint32 {
+ return i.conf.LogLevel
+}
+
+func (i *info) OperationID() string {
+ return mcontext.GetOperationID(i.ctx)
+}
+
+func (i *info) IsExternalExtensions() bool {
+ return i.conf.IsExternalExtensions
+}
+
+type apiErrCode struct{}
+
+type ApiErrCodeCallback interface {
+ OnError(ctx context.Context, err error)
+}
+
+type emptyApiErrCodeCallback struct{}
+
+func (e *emptyApiErrCodeCallback) OnError(ctx context.Context, err error) {}
diff --git a/go/chao-sdk-core/pkg/ccontext/context_test.go b/go/chao-sdk-core/pkg/ccontext/context_test.go
new file mode 100644
index 0000000..704d24e
--- /dev/null
+++ b/go/chao-sdk-core/pkg/ccontext/context_test.go
@@ -0,0 +1,41 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package ccontext
+
+import (
+ "context"
+ "fmt"
+ "testing"
+)
+
+func TestName(t *testing.T) {
+ ctx := context.Background()
+ conf := GlobalConfig{
+ UserID: "uid123",
+ }
+ ctx = WithInfo(ctx, &conf)
+ operationID := "opid123"
+ ctx = WithOperationID(ctx, operationID)
+
+ fmt.Println("UserID:", Info(ctx).UserID())
+ fmt.Println("OperationID:", Info(ctx).OperationID())
+ if Info(ctx).UserID() != conf.UserID {
+ t.Fatal("UserID not match")
+ }
+
+ if Info(ctx).OperationID() != operationID {
+ t.Fatal("OperationID not match")
+ }
+}
diff --git a/go/chao-sdk-core/pkg/common/check.go b/go/chao-sdk-core/pkg/common/check.go
new file mode 100644
index 0000000..67b2bde
--- /dev/null
+++ b/go/chao-sdk-core/pkg/common/check.go
@@ -0,0 +1,148 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package common
+
+import (
+ "encoding/json"
+ "github.com/openimsdk/openim-sdk-core/v3/open_im_sdk_callback"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/sdkerrs"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "runtime"
+)
+
+//var validate *validator.Validate
+
+//funcation init() {
+// validate = validator.New()
+//}
+
+func CheckAnyErrCallback(callback open_im_sdk_callback.Base, errCode int32, err error, operationID string) {
+ if err != nil {
+ errInfo := "operationID[" + operationID + "], " + "info[" + err.Error() + "]"
+ //log.NewError(operationID, "checkErr ", errInfo)
+ callback.OnError(errCode, errInfo)
+ runtime.Goexit()
+ }
+}
+func CheckConfigErrCallback(callback open_im_sdk_callback.Base, err error, operationID string) {
+ CheckAnyErrCallback(callback, sdkerrs.ArgsError, err, operationID)
+}
+
+//func CheckTokenErrCallback(callback open_im_sdk_callback.Base, err error, operationID string) {
+// CheckAnyErrCallback(callback, sdkerrs.TokenInvalidError, err, operationID)
+//}
+
+func CheckDBErrCallback(callback open_im_sdk_callback.Base, err error, operationID string) {
+ CheckAnyErrCallback(callback, sdkerrs.SdkInternalError, err, operationID)
+}
+
+func CheckDataErrCallback(callback open_im_sdk_callback.Base, err error, operationID string) {
+ CheckAnyErrCallback(callback, sdkerrs.SdkInternalError, err, operationID)
+}
+
+func CheckArgsErrCallback(callback open_im_sdk_callback.Base, err error, operationID string) {
+ CheckAnyErrCallback(callback, sdkerrs.ArgsError, err, operationID)
+}
+
+//
+//funcation CheckErrAndResp2(err error, resp []byte, output interface{}) error {
+// if err != nil {
+// return utils.Wrap(err, "api resp failed")
+// }
+// var c server_api_params.CommDataResp
+// err = json.Unmarshal(resp, &c)
+// if err == nil {
+// if c.ErrCode != 0 {
+// return utils.Wrap(errors.New(c.ErrMsg), "")
+// }
+// if output != nil {
+// err = mapstructure.Decode(c.Data, output)
+// if err != nil {
+// goto one
+// }
+// return nil
+// }
+// return nil
+// }
+//
+// unMarshaler := jsonpb.Unmarshaler{}
+// unMarshaler.Unmarshal()
+// s, _ := marshaler.MarshalToString(pb)
+// out := make(map[string]interface{})
+// json.Unmarshal([]byte(s), &out)
+// if idFix {
+// if _, ok := out["id"]; ok {
+// out["_id"] = out["id"]
+// delete(out, "id")
+// }
+// }
+// return out
+//
+//one:
+// var c2 server_api_params.CommDataRespOne
+//
+// err = json.Unmarshal(resp, &c2)
+// if err != nil {
+// return utils.Wrap(err, "")
+// }
+// if c2.ErrCode != 0 {
+// return utils.Wrap(errors.New(c2.ErrMsg), "")
+// }
+// if output != nil {
+// err = mapstructure.Decode(c2.Data, output)
+// if err != nil {
+// return utils.Wrap(err, "")
+// }
+// return nil
+// }
+// return nil
+//}
+
+func JsonUnmarshalAndArgsValidate(s string, args interface{}, callback open_im_sdk_callback.Base, operationID string) error {
+ err := json.Unmarshal([]byte(s), args)
+ if err != nil {
+ if callback != nil {
+ //log.NewError(operationID, "Unmarshal failed ", err.Error(), s)
+ callback.OnError(sdkerrs.ArgsError, err.Error())
+ runtime.Goexit()
+ } else {
+ return utils.Wrap(err, "json Unmarshal failed")
+ }
+ }
+ //err = validate.Struct(args)
+ //if err != nil {
+ // if callback != nil {
+ // log.NewError(operationID, "validate failed ", err.Error(), s)
+ // callback.OnError(constant.ErrArgs.ErrCode, constant.ErrArgs.ErrMsg)
+ // runtime.Goexit()
+ // }
+ //}
+ //return utils.Wrap(err, "args check failed")
+ return nil
+}
+
+func JsonUnmarshalCallback(s string, args interface{}, callback open_im_sdk_callback.Base, operationID string) error {
+ err := json.Unmarshal([]byte(s), args)
+ if err != nil {
+ if callback != nil {
+ //log.NewError(operationID, "Unmarshal failed ", err.Error(), s)
+ callback.OnError(sdkerrs.ArgsError, err.Error())
+ runtime.Goexit()
+ } else {
+ return utils.Wrap(err, "json Unmarshal failed")
+ }
+ }
+ return nil
+}
diff --git a/go/chao-sdk-core/pkg/common/trigger_channel.go b/go/chao-sdk-core/pkg/common/trigger_channel.go
new file mode 100644
index 0000000..cb8d1f9
--- /dev/null
+++ b/go/chao-sdk-core/pkg/common/trigger_channel.go
@@ -0,0 +1,217 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package common
+
+import (
+ "context"
+ "errors"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/sdk_struct"
+ "time"
+
+ "github.com/openimsdk/tools/log"
+
+ "github.com/openimsdk/protocol/sdkws"
+)
+
+func TriggerCmdJoinedSuperGroup(cmd sdk_struct.CmdJoinedSuperGroup, joinedSuperGroupCh chan Cmd2Value) error {
+ if joinedSuperGroupCh == nil {
+ return utils.Wrap(errors.New("ch == nil"), "")
+ }
+ c2v := Cmd2Value{Cmd: constant.CmdJoinedSuperGroup, Value: cmd}
+ return sendCmd(joinedSuperGroupCh, c2v, 100)
+}
+
+func TriggerCmdNewMsgCome(ctx context.Context, msg sdk_struct.CmdNewMsgComeToConversation, conversationCh chan Cmd2Value) error {
+ if conversationCh == nil {
+ return utils.Wrap(errors.New("ch == nil"), "")
+ }
+
+ c2v := Cmd2Value{Cmd: constant.CmdNewMsgCome, Value: msg, Ctx: ctx}
+ return sendCmd(conversationCh, c2v, 100)
+}
+
+func TriggerCmdSuperGroupMsgCome(msg sdk_struct.CmdNewMsgComeToConversation, conversationCh chan Cmd2Value) error {
+ if conversationCh == nil {
+ return utils.Wrap(errors.New("ch == nil"), "")
+ }
+
+ c2v := Cmd2Value{Cmd: constant.CmdSuperGroupMsgCome, Value: msg}
+ return sendCmd(conversationCh, c2v, 100)
+}
+
+func TriggerCmdNotification(ctx context.Context, msg sdk_struct.CmdNewMsgComeToConversation, conversationCh chan Cmd2Value) error {
+ if conversationCh == nil {
+ return utils.Wrap(errors.New("ch == nil"), "")
+ }
+
+ c2v := Cmd2Value{Cmd: constant.CmdNotification, Value: msg, Ctx: ctx}
+ return sendCmd(conversationCh, c2v, 100)
+}
+
+func TriggerCmdWakeUp(ch chan Cmd2Value) error {
+ if ch == nil {
+ return utils.Wrap(errors.New("ch == nil"), "")
+ }
+ c2v := Cmd2Value{Cmd: constant.CmdWakeUp, Value: nil}
+ return sendCmd(ch, c2v, 100)
+}
+
+func TriggerCmdSyncReactionExtensions(node SyncReactionExtensionsNode, conversationCh chan Cmd2Value) error {
+ if conversationCh == nil {
+ return utils.Wrap(errors.New("ch == nil"), "")
+ }
+ c2v := Cmd2Value{
+ Cmd: constant.CmSyncReactionExtensions,
+ Value: node,
+ }
+
+ return sendCmd(conversationCh, c2v, 100)
+}
+
+func TriggerCmdUpdateConversation(ctx context.Context, node UpdateConNode, conversationCh chan<- Cmd2Value) error {
+ c2v := Cmd2Value{
+ Cmd: constant.CmdUpdateConversation,
+ Value: node,
+ Ctx: ctx,
+ }
+
+ return sendCmd(conversationCh, c2v, 100)
+}
+
+func TriggerCmdUpdateMessage(ctx context.Context, node UpdateMessageNode, conversationCh chan Cmd2Value) error {
+ c2v := Cmd2Value{
+ Cmd: constant.CmdUpdateMessage,
+ Value: node,
+ Ctx: ctx,
+ }
+
+ return sendCmd(conversationCh, c2v, 100)
+}
+
+// Push message, msg for msgData slice
+func TriggerCmdPushMsg(ctx context.Context, msg *sdkws.PushMessages, ch chan Cmd2Value) error {
+ if ch == nil {
+ return utils.Wrap(errors.New("ch == nil"), "")
+ }
+
+ c2v := Cmd2Value{Cmd: constant.CmdPushMsg, Value: msg, Ctx: ctx}
+ return sendCmd(ch, c2v, 100)
+}
+
+// seq trigger
+func TriggerCmdMaxSeq(ctx context.Context, seq *sdk_struct.CmdMaxSeqToMsgSync, ch chan Cmd2Value) error {
+ if ch == nil {
+ return utils.Wrap(errors.New("ch == nil"), "")
+ }
+ c2v := Cmd2Value{Cmd: constant.CmdMaxSeq, Value: seq, Ctx: ctx}
+ return sendCmd(ch, c2v, 100)
+}
+
+func TriggerCmdLogOut(ctx context.Context, ch chan Cmd2Value) error {
+ if ch == nil {
+ return utils.Wrap(errors.New("ch == nil"), "")
+ }
+ c2v := Cmd2Value{Cmd: constant.CmdLogOut, Ctx: ctx}
+ return sendCmd(ch, c2v, 100)
+}
+
+// Connection success trigger
+func TriggerCmdConnected(ctx context.Context, ch chan Cmd2Value) error {
+ if ch == nil {
+ return utils.Wrap(errors.New("ch == nil"), "")
+ }
+ c2v := Cmd2Value{Cmd: constant.CmdConnSuccesss, Value: nil, Ctx: ctx}
+ return sendCmd(ch, c2v, 100)
+}
+
+type DeleteConNode struct {
+ SourceID string
+ ConversationID string
+ SessionType int
+}
+type SyncReactionExtensionsNode struct {
+ OperationID string
+ Action int
+ Args interface{}
+}
+type UpdateConNode struct {
+ ConID string
+ Action int //1 Delete the conversation; 2 Update the latest news in the conversation or add a conversation; 3 Put a conversation on the top;
+ // 4 Cancel a conversation on the top, 5 Messages are not read and set to 0, 6 New conversations
+ Args interface{}
+}
+type UpdateMessageNode struct {
+ Action int
+ Args interface{}
+}
+
+type Cmd2Value struct {
+ Cmd string
+ Value interface{}
+ Ctx context.Context
+}
+type UpdateConInfo struct {
+ UserID string
+ GroupID string
+}
+type UpdateMessageInfo struct {
+ SessionType int32
+ UserID string
+ FaceURL string
+ Nickname string
+ GroupID string
+}
+
+type SourceIDAndSessionType struct {
+ SourceID string
+ SessionType int32
+ FaceURL string
+ Nickname string
+}
+
+func UnInitAll(conversationCh chan Cmd2Value) error {
+ c2v := Cmd2Value{Cmd: constant.CmdUnInit}
+ return sendCmd(conversationCh, c2v, 100)
+}
+
+type goroutine interface {
+ Work(cmd Cmd2Value)
+ GetCh() chan Cmd2Value
+ //GetContext() context.Context
+}
+
+func DoListener(Li goroutine, ctx context.Context) {
+ for {
+ select {
+ case cmd := <-Li.GetCh():
+ Li.Work(cmd)
+ case <-ctx.Done():
+ log.ZInfo(ctx, "conversation done sdk logout.....")
+ return
+ }
+ }
+
+}
+
+func sendCmd(ch chan<- Cmd2Value, value Cmd2Value, timeout int64) error {
+ select {
+ case ch <- value:
+ return nil
+ case <-time.After(time.Millisecond * time.Duration(timeout)):
+ return errors.New("send cmd timeout")
+ }
+}
diff --git a/go/chao-sdk-core/pkg/common/wrap_error.go b/go/chao-sdk-core/pkg/common/wrap_error.go
new file mode 100644
index 0000000..88a2085
--- /dev/null
+++ b/go/chao-sdk-core/pkg/common/wrap_error.go
@@ -0,0 +1,33 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package common
+
+//import (
+// "github.com/mitchellh/mapstructure"
+// "open_im_sdk/open_im_sdk_callback"
+// "open_im_sdk/pkg/db"
+// "open_im_sdk/pkg/db/model_struct"
+//)
+//
+//funcation GetGroupMemberListByGroupID(callback open_im_sdk_callback.Base, operationID string, db *db.DataBase, groupID string) []*model_struct.LocalGroupMember {
+// memberList, err := db.GetGroupMemberListByGroupID(groupID)
+// CheckDBErrCallback(callback, err, operationID)
+// return memberList
+//}
+//
+//funcation MapstructureDecode(input interface{}, output interface{}, callback open_im_sdk_callback.Base, oprationID string) {
+// err := mapstructure.Decode(input, output)
+// CheckDataErrCallback(callback, err, oprationID)
+//}
diff --git a/go/chao-sdk-core/pkg/constant/constant.go b/go/chao-sdk-core/pkg/constant/constant.go
new file mode 100644
index 0000000..e46f480
--- /dev/null
+++ b/go/chao-sdk-core/pkg/constant/constant.go
@@ -0,0 +1,428 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package constant
+
+const (
+ CmdFriend = "001"
+ CmdBlackList = "002"
+ CmdNotification = "003"
+ CmdDeleteConversation = "004"
+ CmdNewMsgCome = "005"
+ CmdSuperGroupMsgCome = "006"
+ CmdUpdateConversation = "007"
+ CmSyncReactionExtensions = "008"
+ CmdFroceSyncBlackList = "009"
+ CmdForceSyncFriendApplication = "010"
+ CmdForceSyncMsg = "011"
+ CmdForceSyncLoginUerInfo = "012"
+ CmdReLogin = "013"
+ CmdUnInit = "014"
+ CmdAcceptFriend = "015"
+ CmdRefuseFriend = "016"
+ CmdAddFriend = "017"
+
+ CmdJoinedSuperGroup = "018"
+ CmdUpdateMessage = "019"
+
+ CmdReconnect = "020"
+ CmdInit = "021"
+
+ CmdMaxSeq = "maxSeq"
+ CmdPushMsg = "pushMsg"
+ CmdConnSuccesss = "connSuccess"
+ CmdWakeUp = "wakeUp"
+ CmdLogOut = "loginOut"
+)
+
+const (
+ //ContentType
+ Text = 101
+ Picture = 102
+ Sound = 103
+ Video = 104
+ File = 105
+ AtText = 106
+ Merger = 107
+ Card = 108
+ Location = 109
+ Custom = 110
+ Typing = 113
+ Quote = 114
+ Face = 115
+ AdvancedText = 117
+ CustomMsgNotTriggerConversation = 119
+ CustomMsgOnlineOnly = 120
+ ReactionMessageModifier = 121
+ ReactionMessageDeleter = 122
+
+ //////////////////////////////////////////
+ NotificationBegin = 1000
+ FriendNotificationBegin = 1200
+
+ FriendApplicationApprovedNotification = 1201 //add_friend_response
+ FriendApplicationRejectedNotification = 1202 //add_friend_response
+ FriendApplicationNotification = 1203 //add_friend
+ FriendAddedNotification = 1204
+ FriendDeletedNotification = 1205 //delete_friend
+ FriendRemarkSetNotification = 1206 //set_friend_remark?
+ BlackAddedNotification = 1207 //add_black
+ BlackDeletedNotification = 1208 //remove_black
+ FriendInfoUpdatedNotification = 1209
+ FriendsInfoUpdateNotification = 1210
+ FriendNotificationEnd = 1299
+ ConversationChangeNotification = 1300
+
+ UserNotificationBegin = 1301
+ UserInfoUpdatedNotification = 1303 //SetSelfInfoTip = 204
+ UserStatusChangeNotification = 1304
+ UserCommandAddNotification = 1305
+ UserCommandDeleteNotification = 1306
+ UserCommandUpdateNotification = 1307
+
+ UserNotificationEnd = 1399
+ OANotification = 1400
+
+ GroupNotificationBegin = 1500
+
+ GroupCreatedNotification = 1501
+ GroupInfoSetNotification = 1502
+ JoinGroupApplicationNotification = 1503
+ MemberQuitNotification = 1504
+ GroupApplicationAcceptedNotification = 1505
+ GroupApplicationRejectedNotification = 1506
+ GroupOwnerTransferredNotification = 1507
+ MemberKickedNotification = 1508
+ MemberInvitedNotification = 1509
+ MemberEnterNotification = 1510
+ GroupDismissedNotification = 1511
+ GroupMemberMutedNotification = 1512
+ GroupMemberCancelMutedNotification = 1513
+ GroupMutedNotification = 1514
+ GroupCancelMutedNotification = 1515
+ GroupMemberInfoSetNotification = 1516
+ GroupMemberSetToAdminNotification = 1517
+ GroupMemberSetToOrdinaryUserNotification = 1518
+ GroupInfoSetAnnouncementNotification = 1519
+ GroupInfoSetNameNotification = 1520
+ GroupNotificationEnd = 1599
+
+ SignalingNotificationBegin = 1600
+ SignalingNotification = 1601
+ SignalingNotificationEnd = 1649
+
+ SuperGroupNotificationBegin = 1650
+ SuperGroupUpdateNotification = 1651
+ MsgDeleteNotification = 1652
+ ReactionMessageModifierNotification = 1653
+ ReactionMessageDeleteNotification = 1654
+ SuperGroupNotificationEnd = 1699
+
+ ConversationPrivateChatNotification = 1701
+ ConversationUnreadNotification = 1702
+
+ WorkMomentNotificationBegin = 1900
+ WorkMomentNotification = 1901
+
+ BusinessNotificationBegin = 2000
+ BusinessNotification = 2001
+ BusinessNotificationEnd = 2099
+
+ RevokeNotification = 2101
+
+ HasReadReceiptNotification = 2150
+ GroupHasReadReceiptNotification = 2155
+ ClearConversationNotification = 2101
+ DeleteMsgsNotification = 2102
+
+ HasReadReceipt = 2200
+
+ NotificationEnd = 5000
+
+ ////////////////////////////////////////
+
+ //MsgFrom
+ UserMsgType = 100
+ SysMsgType = 200
+
+ /////////////////////////////////////
+ //SessionType
+ SingleChatType = 1
+ GroupChatType = 2
+ SuperGroupChatType = 3
+ NotificationChatType = 4
+
+ //MsgStatus
+ MsgStatusDefault = 0
+
+ MsgStatusSending = 1
+ MsgStatusSendSuccess = 2
+ MsgStatusSendFailed = 3
+ MsgStatusHasDeleted = 4
+ MsgStatusFiltered = 5
+
+ //OptionsKey
+ IsHistory = "history"
+ IsPersistent = "persistent"
+ IsUnreadCount = "unreadCount"
+ IsConversationUpdate = "conversationUpdate"
+ IsOfflinePush = "offlinePush"
+ IsSenderSync = "senderSync"
+ IsNotPrivate = "notPrivate"
+ IsSenderConversationUpdate = "senderConversationUpdate"
+
+ //GroupStatus
+ GroupOk = 0
+ GroupBanChat = 1
+ GroupStatusDismissed = 2
+ GroupStatusMuted = 3
+
+ // workMoment permission
+ WorkMomentPublic = 0
+ WorkMomentPrivate = 1
+ WorkMomentPermissionCanSee = 2
+ WorkMomentPermissionCantSee = 3
+
+ // workMoment sdk notification type
+ WorkMomentCommentNotification = 0
+ WorkMomentLikeNotification = 1
+ WorkMomentAtUserNotification = 2
+)
+
+const (
+ ckWsInitConnection string = "ws-init-connection"
+ ckWsLoginConnection string = "ws-login-connection"
+ ckWsClose string = "ws-close"
+ ckWsKickOffLine string = "ws-kick-off-line"
+ ckTokenExpired string = "token-expired"
+ ckSelfInfoUpdate string = "self-info-update"
+)
+const (
+ BlackRelationship = 0
+ FriendRelationship = 1
+)
+
+// const (
+//
+// ErrCodeInitLogin = 1001
+// ErrCodeFriend = 2001
+// ErrCodeConversation = 3001
+// ErrCodeUserInfo = 4001
+// ErrCodeGroup = 5001
+//
+// )
+const (
+ NormalGroup = 0
+ SuperGroup = 1
+ WorkingGroup = 2
+ SuperGroupTableName = "local_super_groups"
+ SuperGroupErrChatLogsTableNamePre = "local_sg_err_chat_logs_"
+ ChatLogsTableNamePre = "chat_logs_"
+)
+
+const (
+ SdkInit = 0
+
+ LoginSuccess = 101
+ Logining = 102
+ LoginFailed = 103
+
+ Logout = 201
+
+ TokenFailedExpired = 701
+ TokenFailedInvalid = 702
+ TokenFailedKickedOffline = 703
+)
+
+const (
+ DeFaultSuccessMsg = "ok"
+)
+
+const (
+ AddConOrUpLatMsg = 2
+ UnreadCountSetZero = 3
+ IncrUnread = 5
+ TotalUnreadMessageChanged = 6
+ UpdateConFaceUrlAndNickName = 7
+ UpdateLatestMessageChange = 8
+ ConChange = 9
+ NewCon = 10
+ ConChangeDirect = 11
+ NewConDirect = 12
+ ConversationLatestMsgHasRead = 13
+ UpdateMsgFaceUrlAndNickName = 14
+ SyncConversation = 15
+ SyncMessageListReactionExtensions = 16
+ SyncMessageListTypeKeyInfo = 17
+ UpdateUserCommand = 18
+
+ HasRead = 1
+ NotRead = 0
+
+ IsFilter = 1
+ NotFilter = 0
+)
+
+const (
+ GroupActionCreateGroup = 1
+ GroupActionApplyJoinGroup = 2
+ GroupActionQuitGroup = 3
+ GroupActionSetGroupInfo = 4
+ GroupActionKickGroupMember = 5
+ GroupActionTransferGroupOwner = 6
+ GroupActionInviteUserToGroup = 7
+ GroupActionAcceptGroupApplication = 8
+ GroupActionRefuseGroupApplication = 9
+)
+const ZoomScale = "200"
+const MaxTotalMsgLen = 51200
+
+// const MaxTotalMsgLen = 20480
+const (
+ FriendAcceptTip = "You have successfully become friends, so start chatting"
+ TransferGroupTip = "The owner of the group is transferred!"
+ AcceptGroupTip = "%s join the group"
+)
+
+const (
+ GetNewestSeq = 1001
+ PullMsgBySeqList = 1002
+ SendMsg = 1003
+ SendSignalMsg = 1004
+ DelMsg = 1005
+ PushMsg = 2001
+ KickOnlineMsg = 2002
+ LogoutMsg = 2003
+ SetBackgroundStatus = 2004
+
+ WSDataError = 3001
+)
+
+// conversation
+const (
+ //MsgReceiveOpt
+ ReceiveMessage = 0
+ NotReceiveMessage = 1
+ ReceiveNotNotifyMessage = 2
+
+ Online = 1
+ Offline = 0
+
+ //pinned
+ Pinned = 1
+ NotPinned = 0
+
+ //privateChat
+ IsPrivateChat = true
+ NotPrivateChat = false
+)
+
+const SuccessCallbackDefault = "" // Default value for success callback
+
+const (
+ AppOrdinaryUsers = 1 // Application user type: ordinary user
+ AppAdmin = 2 // Application user type: administrator
+
+ GroupOwner = 100 // Group member type: owner
+ GroupAdmin = 60 // Group member type: administrator
+ GroupOrdinaryUsers = 20 // Group member type: ordinary user
+
+ GroupFilterAll = 0
+ GroupFilterOwner = 1
+ GroupFilterAdmin = 2
+ GroupFilterOrdinaryUsers = 3
+ GroupFilterAdminAndOrdinaryUsers = 4
+ GroupFilterOwnerAndAdmin = 5
+
+ GroupResponseAgree = 1 // Response to group application: agree
+ GroupResponseRefuse = -1 // Response to group application: refuse
+
+ FriendResponseAgree = 1 // Response to friend request: agree
+ FriendResponseRefuse = -1 // Response to friend request: refuse
+ FriendResponseDefault = 0
+
+ Male = 1 // Gender: male
+ Female = 2 // Gender: female
+)
+const (
+ AtAllString = "AtAllTag" // String for 'all people' mention tag
+ AtNormal = 0 // Mention mode: normal
+ AtMe = 1 // Mention mode: mention sender only
+ AtAll = 2 // Mention mode: mention all people
+ AtAllAtMe = 3 // Mention mode: mention all people and sender
+
+)
+const (
+ FieldRecvMsgOpt = 1 // Field type: message receiving options
+ FieldIsPinned = 2 // Field type: whether a message is pinned
+ FieldAttachedInfo = 3 // Field type: attached information
+ FieldIsPrivateChat = 4 // Field type: whether a message is from a private chat
+ FieldGroupAtType = 5 // Field type: group mention mode
+ FieldIsNotInGroup = 6 // Field type: whether a message is not in a group
+ FieldEx = 7 // Field type: extension field
+ FieldUnread = 8 // Field type: whether a message is unread
+ FieldBurnDuration = 9 // Field type: message burn duration
+)
+const (
+ SetMessageExtensions = 1 // Message extension operation type: set extension
+ AddMessageExtensions = 2 // Message extension operation type: add extension
+)
+const (
+ KeywordMatchOr = 0 // Keyword match mode: match any keyword
+ KeywordMatchAnd = 1 // Keyword match mode: match all keywords
+)
+
+const BigVersion = "v3"
+const UpdateVersion = ".0.0"
+const SdkVersion = "openim-sdk-core-"
+const LogFileName = "sdk"
+
+func GetSdkVersion() string {
+ return SdkVersion + BigVersion + UpdateVersion
+}
+
+var HeartbeatInterval = 5
+
+const (
+ MsgSyncModelDefault = 0 //SyncFlag
+ MsgSyncModelLogin = 1 //SyncFlag
+ SyncOrderStartLatest = 101 //PullMsgOrder
+
+ MsgSyncBegin = 1001 //
+ MsgSyncProcessing = 1002 //
+ MsgSyncEnd = 1003 //
+ MsgSyncFailed = 1004
+)
+
+const (
+ JoinByInvitation = 2
+ JoinBySearch = 3
+ JoinByQRCode = 4
+)
+const (
+ SplitPullMsgNum = 100
+ PullMsgNumWhenLogin = 10000
+ PullMsgNumForReadDiffusion = 50
+ NormalMsgMinNumReadDiffusion = 100
+)
+
+const SplitGetGroupMemberNum = 1000
+const UseHashGroupMemberNum = 1000
+
+const (
+ Uninitialized = -1001
+ NoNetwork = 1 //æįŊįģ->æ įŊįģ
+ NetworkAvailable = 2 //æ įŊįģ->æįŊįģ
+ NetworkVariation = 3 //æįŊįģīŧäŊįļææåå
+)
diff --git a/go/chao-sdk-core/pkg/constant/error.go b/go/chao-sdk-core/pkg/constant/error.go
new file mode 100644
index 0000000..49f203f
--- /dev/null
+++ b/go/chao-sdk-core/pkg/constant/error.go
@@ -0,0 +1,112 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package constant
+
+// key = errCode, string = errMsg
+//type ErrInfo struct {
+// ErrCode int32
+// ErrMsg string
+//}
+//
+//var (
+// OK = ErrInfo{0, ""}
+//
+// ErrParseToken = ErrInfo{200, ParseTokenMsg.Error()}
+//
+// ErrTencentCredential = ErrInfo{400, ThirdPartyMsg.Error()}
+// ErrInBlackList = ErrInfo{ErrCode: 600, ErrMsg: InBlackList.Error()}
+// ErrNotFriend = ErrInfo{ErrCode: 601, ErrMsg: NotFriend.Error()}
+//
+// ErrTokenExpired = ErrInfo{701, TokenExpiredMsg.Error()}
+// ErrTokenInvalid = ErrInfo{702, TokenInvalidMsg.Error()}
+// ErrTokenMalformed = ErrInfo{703, TokenMalformedMsg.Error()}
+// ErrTokenNotValidYet = ErrInfo{704, TokenNotValidYetMsg.Error()}
+// ErrTokenUnknown = ErrInfo{705, TokenUnknownMsg.Error()}
+// ErrTokenKicked = ErrInfo{706, TokenUserKickedMsg.Error()}
+//
+// ErrAccess = ErrInfo{ErrCode: 801, ErrMsg: AccessMsg.Error()}
+// ErrDB = ErrInfo{ErrCode: 802, ErrMsg: DBMsg.Error()}
+// ErrArgs = ErrInfo{ErrCode: 803, ErrMsg: ArgsMsg.Error()}
+// ErrApi = ErrInfo{ErrCode: 804, ErrMsg: ApiMsg.Error()}
+// ErrData = ErrInfo{ErrCode: 805, ErrMsg: DataMsg.Error()}
+// ErrLogin = ErrInfo{ErrCode: 806, ErrMsg: LoginMsg.Error()}
+// ErrConfig = ErrInfo{ErrCode: 807, ErrMsg: ConfigMsg.Error()}
+// ErrThirdParty = ErrInfo{ErrCode: 808, ErrMsg: ThirdPartyMsg.Error()}
+// ErrServerReturn = ErrInfo{ErrCode: 809, ErrMsg: ServerReturn.Error()}
+//
+// ErrWsRecvConnDiff = ErrInfo{ErrCode: 901, ErrMsg: WsRecvConnDiff.Error()}
+// ErrWsRecvConnSame = ErrInfo{ErrCode: 902, ErrMsg: WsRecvConnSame.Error()}
+// ErrWsRecvCode = ErrInfo{ErrCode: 903, ErrMsg: WsRecvCode.Error()}
+// ErrWsSendTimeout = ErrInfo{ErrCode: 904, ErrMsg: WsSendTimeout.Error()}
+// ErrResourceLoadNotComplete = ErrInfo{ErrCode: 905, ErrMsg: ResourceLoadNotComplete.Error()}
+// ErrNotSupportFunction = ErrInfo{ErrCode: 906, ErrMsg: NotSupportFunction.Error()}
+//)
+//
+//var (
+// ParseTokenMsg = errors.New("parse token failed")
+// TokenExpiredMsg = errors.New("token is timed out, please log in again")
+// TokenInvalidMsg = errors.New("token has been invalidated")
+// TokenNotValidYetMsg = errors.New("token not active yet")
+// TokenMalformedMsg = errors.New("that's not even a token")
+// TokenUnknownMsg = errors.New("couldn't handle this token")
+// TokenUserKickedMsg = errors.New("user has been kicked")
+//
+// AccessMsg = errors.New("no permission")
+// DBMsg = errors.New("db failed")
+// ArgsMsg = errors.New("args failed")
+// ApiMsg = errors.New("api failed")
+// DataMsg = errors.New("data failed ")
+// LoginMsg = errors.New("you can only login once")
+// ConfigMsg = errors.New("config failed")
+//
+// ThirdPartyMsg = errors.New("third party error")
+// ServerReturn = errors.New("server return data err")
+//
+// WsRecvConnDiff = errors.New("recv timeout, conn diff")
+// WsRecvConnSame = errors.New("recv timeout, conn same")
+// WsRecvCode = errors.New("recv code err")
+// WsSendTimeout = errors.New("send timeout")
+// ResourceLoadNotComplete = errors.New("resource loading is not complete")
+// NotSupportFunction = errors.New("unsupported function")
+//
+// NotFriend = errors.New("not friend")
+// InBlackList = errors.New("in blackList")
+//)
+//
+//funcation (e *ErrInfo) Error() string {
+// return e.ErrMsg
+//}
+//
+//const (
+// StatusErrTokenExpired = 701
+// StatusErrTokenInvalid = 702
+// StatusErrTokenMalformed = 703
+// StatusErrTokenNotValidYet = 704
+// StatusErrTokenUnknown = 705
+// StatusErrTokenKicked = 706
+//)
+//
+//var statusText = map[int]*ErrInfo{
+// StatusErrTokenExpired: &ErrTokenExpired,
+// StatusErrTokenInvalid: &ErrTokenInvalid,
+// StatusErrTokenMalformed: &ErrTokenMalformed,
+// StatusErrTokenNotValidYet: &ErrTokenNotValidYet,
+// StatusErrTokenUnknown: &ErrTokenUnknown,
+// StatusErrTokenKicked: &ErrTokenKicked,
+//}
+//
+//funcation StatusText(code int) *ErrInfo {
+// return statusText[code]
+//}
diff --git a/go/chao-sdk-core/pkg/constant/platform_number_id_to_name.go b/go/chao-sdk-core/pkg/constant/platform_number_id_to_name.go
new file mode 100644
index 0000000..d84b458
--- /dev/null
+++ b/go/chao-sdk-core/pkg/constant/platform_number_id_to_name.go
@@ -0,0 +1,90 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package constant
+
+// fixme 1<--->IOS 2<--->Android 3<--->Windows
+//fixme 4<--->OSX 5<--->Web 6<--->MiniWeb 7<--->Linux
+
+const (
+ //Platform ID
+ IOSPlatformID = 1
+ AndroidPlatformID = 2
+ WindowsPlatformID = 3
+ OSXPlatformID = 4
+ WebPlatformID = 5
+ MiniWebPlatformID = 6
+ LinuxPlatformID = 7
+ AndroidPadPlatformID = 8
+ IPadPlatformID = 9
+ AdminPlatformID = 10
+
+ //Platform string match to Platform ID
+ IOSPlatformStr = "IOS"
+ AndroidPlatformStr = "Android"
+ WindowsPlatformStr = "Windows"
+ OSXPlatformStr = "OSX"
+ WebPlatformStr = "Web"
+ MiniWebPlatformStr = "MiniWeb"
+ LinuxPlatformStr = "Linux"
+ AndroidPadPlatformStr = "APad"
+ IPadPlatformStr = "IPad"
+ AdminPlatformStr = "Admin"
+
+ //terminal types
+ TerminalPC = "PC"
+ TerminalMobile = "Mobile"
+)
+
+var PlatformID2Name = map[int]string{
+ IOSPlatformID: IOSPlatformStr,
+ AndroidPlatformID: AndroidPlatformStr,
+ WindowsPlatformID: WindowsPlatformStr,
+ OSXPlatformID: OSXPlatformStr,
+ WebPlatformID: WebPlatformStr,
+ MiniWebPlatformID: MiniWebPlatformStr,
+ LinuxPlatformID: LinuxPlatformStr,
+ AndroidPadPlatformID: AndroidPadPlatformStr,
+ IPadPlatformID: IPadPlatformStr,
+}
+var PlatformName2ID = map[string]int{
+ IOSPlatformStr: IOSPlatformID,
+ AndroidPlatformStr: AndroidPlatformID,
+ WindowsPlatformStr: WindowsPlatformID,
+ OSXPlatformStr: OSXPlatformID,
+ WebPlatformStr: WebPlatformID,
+ MiniWebPlatformStr: MiniWebPlatformID,
+ LinuxPlatformStr: LinuxPlatformID,
+ AndroidPadPlatformStr: AndroidPadPlatformID,
+ IPadPlatformStr: IPadPlatformID,
+}
+var Platform2class = map[string]string{
+ IOSPlatformStr: TerminalMobile,
+ AndroidPlatformStr: TerminalMobile,
+ MiniWebPlatformStr: WebPlatformStr,
+ WebPlatformStr: WebPlatformStr,
+ WindowsPlatformStr: TerminalPC,
+ OSXPlatformStr: TerminalPC,
+ LinuxPlatformStr: TerminalPC,
+}
+
+func PlatformIDToName(num int) string {
+ return PlatformID2Name[num]
+}
+func PlatformNameToID(name string) int {
+ return PlatformName2ID[name]
+}
+func PlatformNameToClass(name string) string {
+ return Platform2class[name]
+}
diff --git a/go/chao-sdk-core/pkg/constant/server_api_router.go b/go/chao-sdk-core/pkg/constant/server_api_router.go
new file mode 100644
index 0000000..b512dcc
--- /dev/null
+++ b/go/chao-sdk-core/pkg/constant/server_api_router.go
@@ -0,0 +1,159 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package constant
+
+const (
+ GetSelfUserInfoRouter = "/user/get_self_user_info"
+ GetUsersInfoRouter = "/user/get_users_info"
+ UpdateSelfUserInfoRouter = "/user/update_user_info"
+ UpdateSelfUserInfoExRouter = "/user/update_user_info_ex"
+ SetGlobalRecvMessageOptRouter = "/user/set_global_msg_recv_opt"
+ ProcessUserCommandAdd = "/user/process_user_command_add"
+ ProcessUserCommandDelete = "/user/process_user_command_delete"
+ ProcessUserCommandUpdate = "/user/process_user_command_update"
+ ProcessUserCommandGet = "/user/process_user_command_get"
+ ProcessUserCommandGetAll = "/user/process_user_command_get_all"
+
+ GetUsersInfoFromCacheRouter = "/user/get_users_info_from_cache"
+ AccountCheck = "/user/account_check"
+ UserRegister = "/user/user_register"
+ SubscribeUsersStatusRouter = "/user/subscribe_users_status"
+ GetSubscribeUsersStatusRouter = "/user/get_subscribe_users_status"
+ GetUserStatusRouter = "/user/get_users_status"
+
+ AddFriendRouter = "/friend/add_friend"
+ DeleteFriendRouter = "/friend/delete_friend"
+ GetFriendApplicationListRouter = "/friend/get_friend_apply_list" //recv
+ GetSelfFriendApplicationListRouter = "/friend/get_self_friend_apply_list" //send
+ ImportFriendListRouter = "/friend/import_friend"
+
+ GetDesignatedFriendsApplyRouter = "/friend/get_designated_friend_apply"
+ GetFriendListRouter = "/friend/get_friend_list"
+ GetDesignatedFriendsRouter = "/friend/get_designated_friends"
+ AddFriendResponse = "/friend/add_friend_response"
+ SetFriendRemark = "/friend/set_friend_remark"
+ UpdateFriends = "/friend/update_friends"
+ GetIncrementalFriends = "/friend/get_incremental_friends"
+ GetFullFriendUserIDs = "/friend/get_full_friend_user_ids"
+
+ AddBlackRouter = "/friend/add_black"
+ RemoveBlackRouter = "/friend/remove_black"
+ GetBlackListRouter = "/friend/get_black_list"
+
+ PullUserMsgRouter = "/chat/pull_msg"
+ PullUserMsgBySeqRouter = "/chat/pull_msg_by_seq"
+ NewestSeqRouter = "/chat/newest_seq"
+
+ // msg
+ ClearConversationMsgRouter = RouterMsg + "/clear_conversation_msg" // Clear the message of the specified conversation
+ ClearAllMsgRouter = RouterMsg + "/user_clear_all_msg" // Clear all messages of the current user
+ DeleteMsgsRouter = RouterMsg + "/delete_msgs" // Delete the specified message
+ RevokeMsgRouter = RouterMsg + "/revoke_msg"
+ SetMessageReactionExtensionsRouter = RouterMsg + "/set_message_reaction_extensions"
+ AddMessageReactionExtensionsRouter = RouterMsg + "/add_message_reaction_extensions"
+ MarkMsgsAsReadRouter = RouterMsg + "/mark_msgs_as_read"
+ GetConversationsHasReadAndMaxSeqRouter = RouterMsg + "/get_conversations_has_read_and_max_seq"
+
+ MarkConversationAsRead = RouterMsg + "/mark_conversation_as_read"
+ MarkMsgsAsRead = RouterMsg + "/mark_msgs_as_read"
+ SetConversationHasReadSeq = RouterMsg + "/set_conversation_has_read_seq"
+ SendMsgRouter = RouterMsg + "/send_msg"
+ GetServerTimeRouter = RouterMsg + "/get_server_time"
+
+ GetMessageListReactionExtensionsRouter = RouterMsg + "/get_message_list_reaction_extensions"
+ DeleteMessageReactionExtensionsRouter = RouterMsg + "/delete_message_reaction_extensions"
+
+ TencentCloudStorageCredentialRouter = "/third/tencent_cloud_storage_credential"
+ AliOSSCredentialRouter = "/third/ali_oss_credential"
+ MinioStorageCredentialRouter = "/third/minio_storage_credential"
+ AwsStorageCredentialRouter = "/third/aws_storage_credential"
+
+ // group
+ CreateGroupRouter = RouterGroup + "/create_group"
+ SetGroupInfoRouter = RouterGroup + "/set_group_info"
+ JoinGroupRouter = RouterGroup + "/join_group"
+ QuitGroupRouter = RouterGroup + "/quit_group"
+ GetGroupsInfoRouter = RouterGroup + "/get_groups_info"
+ GetGroupMemberListRouter = RouterGroup + "/get_group_member_list"
+ GetGroupAllMemberListRouter = RouterGroup + "/get_group_all_member_list"
+ GetGroupMembersInfoRouter = RouterGroup + "/get_group_members_info"
+ InviteUserToGroupRouter = RouterGroup + "/invite_user_to_group"
+ GetJoinedGroupListRouter = RouterGroup + "/get_joined_group_list"
+ KickGroupMemberRouter = RouterGroup + "/kick_group"
+ TransferGroupRouter = RouterGroup + "/transfer_group"
+ GetRecvGroupApplicationListRouter = RouterGroup + "/get_recv_group_applicationList"
+ GetSendGroupApplicationListRouter = RouterGroup + "/get_user_req_group_applicationList"
+ AcceptGroupApplicationRouter = RouterGroup + "/group_application_response"
+ RefuseGroupApplicationRouter = RouterGroup + "/group_application_response"
+ DismissGroupRouter = RouterGroup + "/dismiss_group"
+ MuteGroupMemberRouter = RouterGroup + "/mute_group_member"
+ CancelMuteGroupMemberRouter = RouterGroup + "/cancel_mute_group_member"
+ MuteGroupRouter = RouterGroup + "/mute_group"
+ CancelMuteGroupRouter = RouterGroup + "/cancel_mute_group"
+ SetGroupMemberNicknameRouter = RouterGroup + "/set_group_member_nickname"
+ SetGroupMemberInfoRouter = RouterGroup + "/set_group_member_info"
+ GetGroupAbstractInfoRouter = RouterGroup + "/get_group_abstract_info"
+ //SearchGroupMember = RouterGroup + "/search_group_member"
+ GetIncrementalJoinGroup = RouterGroup + "/get_incremental_join_group"
+ GetIncrementalGroupMemberBatch = RouterGroup + "/get_incremental_group_member_batch"
+ GetFullJoinedGroupIDs = RouterGroup + "/get_full_join_group_ids"
+ GetFullGroupMemberUserIDs = RouterGroup + "/get_full_group_member_user_ids"
+
+ SetReceiveMessageOptRouter = "/conversation/set_receive_message_opt"
+ GetReceiveMessageOptRouter = "/conversation/get_receive_message_opt"
+ GetAllConversationMessageOptRouter = "/conversation/get_all_conversation_message_opt"
+ SetConversationOptRouter = ConversationGroup + "/set_conversation"
+ GetConversationsRouter = ConversationGroup + "/get_conversations"
+ GetAllConversationsRouter = ConversationGroup + "/get_all_conversations"
+ GetConversationRouter = ConversationGroup + "/get_conversation"
+ BatchSetConversationRouter = ConversationGroup + "/batch_set_conversation"
+ ModifyConversationFieldRouter = ConversationGroup + "/modify_conversation_field"
+ SetConversationsRouter = ConversationGroup + "/set_conversations"
+
+ // organization
+ GetSubDepartmentRouter = RouterOrganization + "/get_sub_department"
+ GetDepartmentMemberRouter = RouterOrganization + "/get_department_member"
+ ParseTokenRouter = RouterAuth + "/parse_token"
+
+ // super_group
+ GetJoinedSuperGroupListRouter = RouterSuperGroup + "/get_joined_group_list"
+ GetSuperGroupsInfoRouter = RouterSuperGroup + "/get_groups_info"
+
+ // third
+ FcmUpdateTokenRouter = RouterThird + "/fcm_update_token"
+ SetAppBadgeRouter = RouterThird + "/set_app_badge"
+ UploadLogsRouter = RouterThird + "/logs/upload"
+
+ // auth
+ GetUsersToken = RouterAuth + "/user_token"
+)
+const (
+ RouterGroup = "/group"
+ ConversationGroup = "/conversation"
+ RouterOrganization = "/organization"
+ RouterAuth = "/auth"
+ RouterSuperGroup = "/super_group"
+ RouterMsg = "/msg"
+ RouterThird = "/third"
+)
+
+const (
+ ObjectPartLimit = "/object/part_limit"
+ ObjectPartSize = "/object/part_size"
+ ObjectInitiateMultipartUpload = "/object/initiate_multipart_upload"
+ ObjectAuthSign = "/object/auth_sign"
+ ObjectCompleteMultipartUpload = "/object/complete_multipart_upload"
+ ObjectAccessURL = "/object/access_url"
+)
diff --git a/go/chao-sdk-core/pkg/constant/server_error.go b/go/chao-sdk-core/pkg/constant/server_error.go
new file mode 100644
index 0000000..88243f5
--- /dev/null
+++ b/go/chao-sdk-core/pkg/constant/server_error.go
@@ -0,0 +1,62 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package constant
+
+//
+//var (
+// ErrServer = ErrInfo{500, "server error"}
+//
+// ErrTokenDifferentPlatformID = ErrInfo{707, TokenDifferentPlatformIDMsg.Error()}
+// ErrTokenDifferentUserID = ErrInfo{708, TokenDifferentUserIDMsg.Error()}
+//
+// ErrStatus = ErrInfo{ErrCode: 804, ErrMsg: StatusMsg.Error()}
+// ErrCallback = ErrInfo{ErrCode: 809, ErrMsg: CallBackMsg.Error()}
+// ErrSendLimit = ErrInfo{ErrCode: 810, ErrMsg: "send msg limit, to many request, try again later"}
+// ErrMessageHasReadDisable = ErrInfo{ErrCode: 811, ErrMsg: "message has read disable"}
+// ErrInternal = ErrInfo{ErrCode: 812, ErrMsg: "internal error"}
+//)
+//
+//var (
+// TokenDifferentPlatformIDMsg = errors.New("different platformID")
+// TokenDifferentUserIDMsg = errors.New("different userID")
+//
+// StatusMsg = errors.New("status is abnormal")
+//
+// CallBackMsg = errors.New("callback failed")
+//)
+//
+//const (
+// NoError = 0
+// FormattingError = 10001
+// HasRegistered = 10002
+// NotRegistered = 10003
+// PasswordErr = 10004
+// GetIMTokenErr = 10005
+// RepeatSendCode = 10006
+// MailSendCodeErr = 10007
+// SmsSendCodeErr = 10008
+// CodeInvalidOrExpired = 10009
+// RegisterFailed = 10010
+// ResetPasswordFailed = 10011
+// DatabaseError = 10002
+// ServerError = 10004
+// HttpError = 10005
+// IoError = 10006
+// IntentionalError = 10007
+//)
+//
+//funcation (e *ErrInfo) Code() int32 {
+// return e.ErrCode
+//}
diff --git a/go/chao-sdk-core/pkg/content_type/content_type.go b/go/chao-sdk-core/pkg/content_type/content_type.go
new file mode 100644
index 0000000..76c1788
--- /dev/null
+++ b/go/chao-sdk-core/pkg/content_type/content_type.go
@@ -0,0 +1,93 @@
+package content_type
+
+import (
+ "strings"
+)
+
+var ext = map[string]string{
+ "html": "text/html",
+ "htm": "text/html",
+ "css": "text/css",
+ "js": "application/javascript",
+ "json": "application/json",
+ "xml": "application/xml",
+ "png": "image/png",
+ "jpg": "image/jpeg",
+ "jpeg": "image/jpeg",
+ "gif": "image/gif",
+ "bmp": "image/bmp",
+ "tif": "image/tiff",
+ "tiff": "image/tiff",
+ "ico": "image/x-icon",
+ "svg": "image/svg+xml",
+ "webp": "image/webp",
+ "mp4": "video/mp4",
+ "avi": "video/x-msvideo",
+ "mkv": "video/x-matroska",
+ "mov": "video/quicktime",
+ "wmv": "video/x-ms-wmv",
+ "flv": "video/x-flv",
+ "webm": "video/webm",
+ "3gp": "video/3gpp",
+ "mp3": "audio/mpeg",
+ "wav": "audio/wav",
+ "ogg": "audio/ogg",
+ "aac": "audio/aac",
+ "wma": "audio/x-ms-wma",
+ "flac": "audio/flac",
+ "mid": "audio/midi",
+ "midi": "audio/midi",
+ "weba": "audio/webm",
+ "pdf": "application/pdf",
+ "doc": "application/msword",
+ "docx": "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
+ "xls": "application/vnd.ms-excel",
+ "xlsx": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
+ "ppt": "application/vnd.ms-powerpoint",
+ "pptx": "application/vnd.openxmlformats-officedocument.presentationml.presentation",
+ "txt": "text/plain",
+ "csv": "text/csv",
+ "zip": "application/zip",
+ "rar": "application/x-rar-compressed",
+ "tar": "application/x-tar",
+ "gz": "application/gzip",
+ "exe": "application/x-msdownload",
+ "msi": "application/x-msi",
+ "deb": "application/x-debian-package",
+ "rpm": "application/x-redhat-package-manager",
+ "sh": "application/x-sh",
+ "bat": "application/bat",
+ "py": "application/x-python",
+ "java": "text/x-java-source",
+ "c": "text/x-csrc",
+ "cpp": "text/x-c++src",
+ "h": "text/x-chdr",
+ "hpp": "text/x-c++hdr",
+ "php": "application/x-php",
+ "asp": "application/x-asp",
+ "jsp": "application/x-jsp",
+ "dll": "application/x-msdownload",
+ "jar": "application/java-archive",
+ "war": "application/java-archive",
+ "ear": "application/java-archive",
+}
+
+func GetType(val ...string) string {
+ for _, s := range val {
+ if len(s) > 1 {
+ if i := strings.IndexByte(s, '/'); i > 0 && i < len(s)-1 {
+ return s
+ }
+ if strings.HasPrefix(s, ".") {
+ s = s[1:]
+ }
+ if val, ok := ext[s]; ok {
+ return val
+ }
+ if val, ok := ext[strings.ToLower(s)]; ok {
+ return val
+ }
+ }
+ }
+ return ""
+}
diff --git a/go/chao-sdk-core/pkg/datafetcher/datafetcher.go b/go/chao-sdk-core/pkg/datafetcher/datafetcher.go
new file mode 100644
index 0000000..cb7972b
--- /dev/null
+++ b/go/chao-sdk-core/pkg/datafetcher/datafetcher.go
@@ -0,0 +1,98 @@
+package datafetcher
+
+import (
+ "context"
+
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/db_interface"
+ "github.com/openimsdk/tools/errs"
+ "github.com/openimsdk/tools/utils/datautil"
+)
+
+// DataFetcher is a struct that handles data synchronization
+type DataFetcher[T any] struct {
+ db db_interface.VersionSyncModel
+ TableName string
+ EntityID string
+ Key func(T) string
+ batchInsert func(ctx context.Context, servers []T) error
+ FetchFromLocal FetchDataFunc[T]
+ fetchFromServer FetchFromServerFunc[T]
+}
+
+// FetchDataFunc is a function type for fetching data
+type FetchDataFunc[T any] func(ctx context.Context, uids []string) ([]T, error)
+
+// FetchFromServerFunc is a function type for fetching data from server
+type FetchFromServerFunc[T any] func(ctx context.Context, uids []string) ([]T, error)
+
+// NewDataFetcher creates a new NewDataFetcher
+func NewDataFetcher[T any](db db_interface.VersionSyncModel, tableName string, entityID string, key func(T) string,
+ batchInsert func(ctx context.Context, servers []T) error, fetchFromLocal FetchDataFunc[T], fetchFromServer FetchFromServerFunc[T]) *DataFetcher[T] {
+ return &DataFetcher[T]{
+ db: db,
+ TableName: tableName,
+ EntityID: entityID,
+ Key: key,
+ batchInsert: batchInsert,
+ FetchFromLocal: fetchFromLocal,
+ fetchFromServer: fetchFromServer,
+ }
+}
+
+// FetchWithPagination fetches data with pagination and fills missing data from server
+func (ds *DataFetcher[T]) FetchWithPagination(ctx context.Context, offset, limit int) ([]T, error) {
+ versionInfo, err := ds.db.GetVersionSync(ctx, ds.TableName, ds.EntityID)
+ if err != nil {
+ return nil, err
+ }
+
+ if offset > len(versionInfo.UIDList) {
+ return nil, errs.New("offset exceeds the length of the UID list").Wrap()
+ }
+
+ end := offset + limit
+ if end > len(versionInfo.UIDList) {
+ end = len(versionInfo.UIDList)
+ }
+
+ paginatedUIDs := versionInfo.UIDList[offset:end]
+
+ localData, err := ds.FetchMissingAndFillLocal(ctx, paginatedUIDs)
+ if err != nil {
+ return nil, err
+ }
+
+ return localData, nil
+}
+
+// FetchMissingAndFillLocal fetches missing data from server and fills local database
+func (ds *DataFetcher[T]) FetchMissingAndFillLocal(ctx context.Context, uids []string) ([]T, error) {
+ localData, err := ds.FetchFromLocal(ctx, uids)
+ if err != nil {
+ return nil, err
+ }
+
+ localUIDSet := datautil.SliceSetAny(localData, ds.Key)
+
+ var missingUIDs []string
+ for _, uid := range uids {
+ if _, found := localUIDSet[uid]; !found {
+ missingUIDs = append(missingUIDs, uid)
+ }
+ }
+
+ if len(missingUIDs) > 0 {
+ serverData, err := ds.fetchFromServer(ctx, missingUIDs)
+ if err != nil {
+ return nil, err
+ }
+
+ if err := ds.batchInsert(ctx, serverData); err != nil {
+ return nil, err
+ }
+
+ localData = append(localData, serverData...)
+ }
+
+ return localData, nil
+}
diff --git a/go/chao-sdk-core/pkg/db/admin_group_request_model.go b/go/chao-sdk-core/pkg/db/admin_group_request_model.go
new file mode 100644
index 0000000..54d554e
--- /dev/null
+++ b/go/chao-sdk-core/pkg/db/admin_group_request_model.go
@@ -0,0 +1,59 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build !js
+// +build !js
+
+package db
+
+import (
+ "context"
+ "errors"
+
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/tools/errs"
+)
+
+func (d *DataBase) InsertAdminGroupRequest(ctx context.Context, groupRequest *model_struct.LocalAdminGroupRequest) error {
+ d.groupMtx.Lock()
+ defer d.groupMtx.Unlock()
+ return errs.WrapMsg(d.conn.WithContext(ctx).Create(groupRequest).Error, "InsertAdminGroupRequest failed")
+}
+
+func (d *DataBase) DeleteAdminGroupRequest(ctx context.Context, groupID, userID string) error {
+ d.groupMtx.Lock()
+ defer d.groupMtx.Unlock()
+ return errs.WrapMsg(d.conn.WithContext(ctx).Where("group_id=? and user_id=?", groupID, userID).Delete(&model_struct.LocalAdminGroupRequest{}).Error, "DeleteAdminGroupRequest failed")
+}
+
+func (d *DataBase) UpdateAdminGroupRequest(ctx context.Context, groupRequest *model_struct.LocalAdminGroupRequest) error {
+ d.groupMtx.Lock()
+ defer d.groupMtx.Unlock()
+ t := d.conn.WithContext(ctx).Model(groupRequest).Select("*").Updates(*groupRequest)
+ if t.RowsAffected == 0 {
+ return errs.WrapMsg(errors.New("RowsAffected == 0"), "no update")
+ }
+ return errs.Wrap(t.Error)
+}
+
+func (d *DataBase) GetAdminGroupApplication(ctx context.Context) ([]*model_struct.LocalAdminGroupRequest, error) {
+ d.groupMtx.Lock()
+ defer d.groupMtx.Unlock()
+ var groupRequestList []*model_struct.LocalAdminGroupRequest
+ err := errs.Wrap(d.conn.WithContext(ctx).Order("create_time DESC").Find(&groupRequestList).Error)
+ if err != nil {
+ return nil, errs.Wrap(err)
+ }
+ return groupRequestList, nil
+}
diff --git a/go/chao-sdk-core/pkg/db/app_version.go b/go/chao-sdk-core/pkg/db/app_version.go
new file mode 100644
index 0000000..19d1988
--- /dev/null
+++ b/go/chao-sdk-core/pkg/db/app_version.go
@@ -0,0 +1,34 @@
+package db
+
+import (
+ "context"
+
+ "github.com/openimsdk/tools/errs"
+ "gorm.io/gorm"
+
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+)
+
+func (d *DataBase) GetAppSDKVersion(ctx context.Context) (*model_struct.LocalAppSDKVersion, error) {
+ var appVersion model_struct.LocalAppSDKVersion
+ return &appVersion, errs.Wrap(d.conn.WithContext(ctx).Take(&appVersion).Error)
+}
+
+func (d *DataBase) SetAppSDKVersion(ctx context.Context, appVersion *model_struct.LocalAppSDKVersion) error {
+ var exist model_struct.LocalAppSDKVersion
+ err := d.conn.WithContext(ctx).First(&exist).Error
+ if err == gorm.ErrRecordNotFound {
+ if createErr := d.conn.WithContext(ctx).Create(appVersion).Error; createErr != nil {
+ return errs.Wrap(createErr)
+ }
+ return nil
+ } else if err != nil {
+ return errs.Wrap(err)
+ }
+
+ if updateErr := d.conn.WithContext(ctx).Model(&exist).Updates(appVersion).Error; updateErr != nil {
+ return errs.Wrap(updateErr)
+ }
+
+ return nil
+}
diff --git a/go/chao-sdk-core/pkg/db/black_model.go b/go/chao-sdk-core/pkg/db/black_model.go
new file mode 100644
index 0000000..41e3ad9
--- /dev/null
+++ b/go/chao-sdk-core/pkg/db/black_model.go
@@ -0,0 +1,79 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build !js
+// +build !js
+
+package db
+
+import (
+ "context"
+ "errors"
+
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/tools/errs"
+)
+
+func (d *DataBase) GetBlackListDB(ctx context.Context) ([]*model_struct.LocalBlack, error) {
+ d.friendMtx.Lock()
+ defer d.friendMtx.Unlock()
+ var blackList []*model_struct.LocalBlack
+ return blackList, errs.Wrap(d.conn.WithContext(ctx).Find(&blackList).Error)
+}
+
+func (d *DataBase) GetBlackListUserID(ctx context.Context) (blackListUid []string, err error) {
+ d.friendMtx.Lock()
+ defer d.friendMtx.Unlock()
+ return blackListUid, errs.WrapMsg(d.conn.WithContext(ctx).Model(&model_struct.LocalBlack{}).Select("block_user_id").Find(&blackListUid).Error, "GetBlackList failed")
+}
+
+func (d *DataBase) GetBlackInfoByBlockUserID(ctx context.Context, blockUserID string) (*model_struct.LocalBlack, error) {
+ d.friendMtx.Lock()
+ defer d.friendMtx.Unlock()
+ var black model_struct.LocalBlack
+ return &black, errs.WrapMsg(d.conn.WithContext(ctx).Where("owner_user_id = ? AND block_user_id = ? ",
+ d.loginUserID, blockUserID).Take(&black).Error, "GetBlackInfoByBlockUserID failed")
+}
+
+func (d *DataBase) GetBlackInfoList(ctx context.Context, blockUserIDList []string) ([]*model_struct.LocalBlack, error) {
+ d.friendMtx.Lock()
+ defer d.friendMtx.Unlock()
+ var blackList []*model_struct.LocalBlack
+ if err := d.conn.WithContext(ctx).Where("block_user_id IN ? ", blockUserIDList).Find(&blackList).Error; err != nil {
+ return nil, errs.WrapMsg(err, "GetBlackInfoList failed")
+ }
+ return blackList, nil
+}
+
+func (d *DataBase) InsertBlack(ctx context.Context, black *model_struct.LocalBlack) error {
+ d.friendMtx.Lock()
+ defer d.friendMtx.Unlock()
+ return errs.WrapMsg(d.conn.WithContext(ctx).Create(black).Error, "InsertBlack failed")
+}
+
+func (d *DataBase) UpdateBlack(ctx context.Context, black *model_struct.LocalBlack) error {
+ d.friendMtx.Lock()
+ defer d.friendMtx.Unlock()
+ t := d.conn.WithContext(ctx).Updates(black)
+ if t.RowsAffected == 0 {
+ return errs.WrapMsg(errors.New("RowsAffected == 0"), "no update")
+ }
+ return errs.WrapMsg(t.Error, "UpdateBlack failed")
+}
+
+func (d *DataBase) DeleteBlack(ctx context.Context, blockUserID string) error {
+ d.friendMtx.Lock()
+ defer d.friendMtx.Unlock()
+ return errs.WrapMsg(d.conn.WithContext(ctx).Where("owner_user_id=? and block_user_id=?", d.loginUserID, blockUserID).Delete(&model_struct.LocalBlack{}).Error, "DeleteBlack failed")
+}
diff --git a/go/chao-sdk-core/pkg/db/chat_log_model.go b/go/chao-sdk-core/pkg/db/chat_log_model.go
new file mode 100644
index 0000000..f216c35
--- /dev/null
+++ b/go/chao-sdk-core/pkg/db/chat_log_model.go
@@ -0,0 +1,565 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build !js
+// +build !js
+
+package db
+
+import (
+ "context"
+ "errors"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/sdk_struct"
+
+ "gorm.io/gorm"
+)
+
+// funcation (d *DataBase) BatchInsertMessageList(ctx context.Context, MessageList []*model_struct.LocalChatLog) error {
+// if MessageList == nil {
+// return nil
+// }
+// d.mRWMutex.Lock()
+// defer d.mRWMutex.Unlock()
+// return utils.Wrap(d.conn.WithContext(ctx).Create(MessageList).Error, "BatchInsertMessageList failed")
+// }
+//funcation (d *DataBase) BatchInsertMessageListController(ctx context.Context, MessageList []*model_struct.LocalChatLog) error {
+// if len(MessageList) == 0 {
+// return nil
+// }
+// switch MessageList[len(MessageList)-1].SessionType {
+// case constant.SuperGroupChatType:
+// return d.SuperGroupBatchInsertMessageList(ctx, MessageList, MessageList[len(MessageList)-1].RecvID)
+// default:
+// return d.BatchInsertMessageList(ctx, MessageList)
+// }
+//}
+
+// funcation (d *DataBase) InsertMessage(ctx context.Context, Message *model_struct.LocalChatLog) error {
+// d.mRWMutex.Lock()
+// defer d.mRWMutex.Unlock()
+// return utils.Wrap(d.conn.WithContext(ctx).Create(Message).Error, "InsertMessage failed")
+// }
+//
+// funcation (d *DataBase) InsertMessageController(ctx context.Context, message *model_struct.LocalChatLog) error {
+// switch message.SessionType {
+// case constant.SuperGroupChatType:
+// return d.SuperGroupInsertMessage(ctx, message, message.RecvID)
+// default:
+// return d.InsertMessage(ctx, message)
+// }
+// }
+//funcation (d *DataBase) SearchMessageByKeyword(ctx context.Context, contentType []int, keywordList []string, keywordListMatchType int, sourceID string, startTime, endTime int64, sessionType, offset, count int) (result []*model_struct.LocalChatLog, err error) {
+// var messageList []model_struct.LocalChatLog
+// var condition string
+// var subCondition string
+// if keywordListMatchType == constant.KeywordMatchOr {
+// for i := 0; i < len(keywordList); i++ {
+// if i == 0 {
+// subCondition += "And ("
+// }
+// if i+1 >= len(keywordList) {
+// subCondition += "content like " + "'%" + keywordList[i] + "%') "
+// } else {
+// subCondition += "content like " + "'%" + keywordList[i] + "%' " + "or "
+//
+// }
+// }
+// } else {
+// for i := 0; i < len(keywordList); i++ {
+// if i == 0 {
+// subCondition += "And ("
+// }
+// if i+1 >= len(keywordList) {
+// subCondition += "content like " + "'%" + keywordList[i] + "%') "
+// } else {
+// subCondition += "content like " + "'%" + keywordList[i] + "%' " + "and "
+// }
+// }
+// }
+// switch sessionType {
+// case constant.SingleChatType, constant.NotificationChatType:
+// condition = fmt.Sprintf("session_type==%d And (send_id==%q OR recv_id==%q) And send_time between %d and %d AND status <=%d And content_type IN ? ", constant.SingleChatType, sourceID, sourceID, startTime, endTime, constant.MsgStatusSendFailed)
+// case constant.GroupChatType:
+// condition = fmt.Sprintf("session_type==%d And recv_id==%q And send_time between %d and %d AND status <=%d And content_type IN ? ", constant.GroupChatType, sourceID, startTime, endTime, constant.MsgStatusSendFailed)
+// default:
+// //condition = fmt.Sprintf("(send_id==%q OR recv_id==%q) And send_time between %d and %d AND status <=%d And content_type == %d And content like %q", sourceID, sourceID, startTime, endTime, constant.MsgStatusSendFailed, constant.Text, "%"+keyword+"%")
+// return nil, err
+// }
+// condition += subCondition
+// err = utils.Wrap(d.conn.WithContext(ctx).Where(condition, contentType).Order("send_time DESC").Offset(offset).Limit(count).Find(&messageList).Error, "InsertMessage failed")
+//
+// for _, v := range messageList {
+// v1 := v
+// result = append(result, &v1)
+// }
+// return result, err
+//}
+//funcation (d *DataBase) SearchMessageByKeywordController(ctx context.Context, contentType []int, keywordList []string, keywordListMatchType int, sourceID string, startTime, endTime int64, sessionType, offset, count int) (result []*model_struct.LocalChatLog, err error) {
+// switch sessionType {
+// case constant.SuperGroupChatType:
+// return d.SuperGroupSearchMessageByKeyword(ctx, contentType, keywordList, keywordListMatchType, sourceID, startTime, endTime, sessionType, offset, count)
+// default:
+// return d.SearchMessageByKeyword(ctx, contentType, keywordList, keywordListMatchType, sourceID, startTime, endTime, sessionType, offset, count)
+// }
+//}
+
+//funcation (d *DataBase) SearchMessageByContentType(ctx context.Context, contentType []int,conversationID string, startTime, endTime int64, offset, count int) (result []*model_struct.LocalChatLog, err error) {
+// var messageList []model_struct.LocalChatLog
+// var condition string
+// switch sessionType {
+// case constant.SingleChatType, constant.NotificationChatType:
+// condition = fmt.Sprintf("session_type==%d And (send_id==%q OR recv_id==%q) And send_time between %d and %d AND status <=%d And content_type IN ?", constant.SingleChatType, sourceID, sourceID, startTime, endTime, constant.MsgStatusSendFailed)
+// case constant.GroupChatType:
+// condition = fmt.Sprintf("session_type==%d And recv_id==%q And send_time between %d and %d AND status <=%d And content_type IN ?", constant.GroupChatType, sourceID, startTime, endTime, constant.MsgStatusSendFailed)
+// default:
+// return nil, err
+// }
+// err = utils.Wrap(d.conn.WithContext(ctx).Where(condition, contentType).Order("send_time DESC").Offset(offset).Limit(count).Find(&messageList).Error, "SearchMessage failed")
+// for _, v := range messageList {
+// v1 := v
+// result = append(result, &v1)
+// }
+// return result, err
+//}
+
+//funcation (d *DataBase) SearchMessageByContentTypeController(ctx context.Context, contentType []int, sourceID string, startTime, endTime int64, sessionType, offset, count int) (result []*model_struct.LocalChatLog, err error) {
+// switch sessionType {
+// case constant.SuperGroupChatType:
+// return d.SuperGroupSearchMessageByContentType(ctx, contentType, sourceID, startTime, endTime, sessionType, offset, count)
+// default:
+// return d.SearchMessageByContentType(ctx, contentType, conversationID, startTime, endTime, offset, count)
+// }
+//}
+
+//funcation (d *DataBase) SearchMessageByContentTypeAndKeyword(ctx context.Context, contentType []int, conversationID string,keywordList []string, keywordListMatchType int, startTime, endTime int64) (result []*model_struct.LocalChatLog, err error) {
+// var messageList []model_struct.LocalChatLog
+// var condition string
+// var subCondition string
+// if keywordListMatchType == constant.KeywordMatchOr {
+// for i := 0; i < len(keywordList); i++ {
+// if i == 0 {
+// subCondition += "And ("
+// }
+// if i+1 >= len(keywordList) {
+// subCondition += "content like " + "'%" + keywordList[i] + "%') "
+// } else {
+// subCondition += "content like " + "'%" + keywordList[i] + "%' " + "or "
+//
+// }
+// }
+// } else {
+// for i := 0; i < len(keywordList); i++ {
+// if i == 0 {
+// subCondition += "And ("
+// }
+// if i+1 >= len(keywordList) {
+// subCondition += "content like " + "'%" + keywordList[i] + "%') "
+// } else {
+// subCondition += "content like " + "'%" + keywordList[i] + "%' " + "and "
+// }
+// }
+// }
+// condition = fmt.Sprintf("send_time between %d and %d AND status <=%d And content_type IN ? ", startTime, endTime, constant.MsgStatusSendFailed)
+// condition += subCondition
+// log.Info("key owrd", condition)
+// err = utils.Wrap(d.conn.WithContext(ctx).Where(condition, contentType).Order("send_time DESC").Find(&messageList).Error, "SearchMessage failed")
+// for _, v := range messageList {
+// v1 := v
+// result = append(result, &v1)
+// }
+// return result, err
+//}
+
+//funcation (d *DataBase) BatchUpdateMessageList(ctx context.Context, MessageList []*model_struct.LocalChatLog) error {
+// if MessageList == nil {
+// return nil
+// }
+//
+// for _, v := range MessageList {
+// v1 := new(model_struct.LocalChatLog)
+// v1.ClientMsgID = v.ClientMsgID
+// v1.Seq = v.Seq
+// v1.Status = v.Status
+// v1.RecvID = v.RecvID
+// v1.SessionType = v.SessionType
+// v1.ServerMsgID = v.ServerMsgID
+// err := d.UpdateMessageController(ctx, v1)
+// if err != nil {
+// return utils.Wrap(err, "BatchUpdateMessageList failed")
+// }
+//
+// }
+// return nil
+//}
+
+//funcation (d *DataBase) BatchSpecialUpdateMessageList(ctx context.Context, MessageList []*model_struct.LocalChatLog) error {
+// if MessageList == nil {
+// return nil
+// }
+//
+// for _, v := range MessageList {
+// v1 := new(model_struct.LocalChatLog)
+// v1.ClientMsgID = v.ClientMsgID
+// v1.ServerMsgID = v.ServerMsgID
+// v1.SendID = v.SendID
+// v1.RecvID = v.RecvID
+// v1.SenderPlatformID = v.SenderPlatformID
+// v1.SenderNickname = v.SenderNickname
+// v1.SenderFaceURL = v.SenderFaceURL
+// v1.SessionType = v.SessionType
+// v1.MsgFrom = v.MsgFrom
+// v1.ContentType = v.ContentType
+// v1.Content = v.Content
+// v1.Seq = v.Seq
+// v1.SendTime = v.SendTime
+// v1.CreateTime = v.CreateTime
+// v1.AttachedInfo = v.AttachedInfo
+// v1.Ex = v.Ex
+// err := d.UpdateMessageController(ctx, v1)
+// if err != nil {
+// log.Error("", "update single message failed", *v)
+// return utils.Wrap(err, "BatchUpdateMessageList failed")
+// }
+//
+// }
+// return nil
+//}
+
+func (d *DataBase) MessageIfExists(ctx context.Context, ClientMsgID string) (bool, error) {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ var count int64
+ t := d.conn.WithContext(ctx).Model(&model_struct.LocalChatLog{}).Where("client_msg_id = ?",
+ ClientMsgID).Count(&count)
+ if t.Error != nil {
+ return false, utils.Wrap(t.Error, "MessageIfExists get failed")
+ }
+ if count != 1 {
+ return false, nil
+ } else {
+ return true, nil
+ }
+}
+func (d *DataBase) IsExistsInErrChatLogBySeq(ctx context.Context, seq int64) bool {
+ return true
+}
+func (d *DataBase) MessageIfExistsBySeq(ctx context.Context, seq int64) (bool, error) {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ var count int64
+ t := d.conn.WithContext(ctx).Model(&model_struct.LocalChatLog{}).Where("seq = ?",
+ seq).Count(&count)
+ if t.Error != nil {
+ return false, utils.Wrap(t.Error, "MessageIfExistsBySeq get failed")
+ }
+ if count != 1 {
+ return false, nil
+ } else {
+ return true, nil
+ }
+}
+
+// funcation (d *DataBase) GetMessage(ctx context.Context, ClientMsgID string) (*model_struct.LocalChatLog, error) {
+// var c model_struct.LocalChatLog
+// return &c, utils.Wrap(d.conn.WithContext(ctx).Where("client_msg_id = ?",
+// ClientMsgID).Take(&c).Error, "GetMessage failed")
+// }
+//funcation (d *DataBase) GetMessageController(ctx context.Context, msg *sdk_struct.MsgStruct) (*model_struct.LocalChatLog, error) {
+// switch msg.SessionType {
+// case constant.SuperGroupChatType:
+// return d.SuperGroupGetMessage(ctx, msg)
+// default:
+// return d.GetMessage(ctx, msg.ClientMsgID)
+// }
+//}
+
+func (d *DataBase) GetAllUnDeleteMessageSeqList(ctx context.Context) ([]uint32, error) {
+ var seqList []uint32
+ return seqList, utils.Wrap(d.conn.WithContext(ctx).Model(&model_struct.LocalChatLog{}).Where("status != ?", constant.MsgStatusHasDeleted).Select("seq").Find(&seqList).Error, "")
+}
+func (d *DataBase) UpdateColumnsMessageList(ctx context.Context, clientMsgIDList []string, args map[string]interface{}) error {
+ c := model_struct.LocalChatLog{}
+ t := d.conn.WithContext(ctx).Model(&c).Where("client_msg_id IN", clientMsgIDList).Updates(args)
+ if t.RowsAffected == 0 {
+ return utils.Wrap(errors.New("RowsAffected == 0"), "no update")
+ }
+ return utils.Wrap(t.Error, "UpdateColumnsConversation failed")
+}
+
+//funcation (d *DataBase) UpdateColumnsMessageController(ctx context.Context, ClientMsgID string, groupID string, sessionType int32, args map[string]interface{}) error {
+// switch sessionType {
+// case constant.SuperGroupChatType:
+// return utils.Wrap(d.SuperGroupUpdateColumnsMessage(ctx, ClientMsgID, groupID, args), "")
+// default:
+// return utils.Wrap(d.UpdateColumnsMessage(ctx, ClientMsgID, args), "")
+// }
+//}
+
+// funcation (d *DataBase) UpdateMessage(ctx context.Context, c *model_struct.LocalChatLog) error {
+// t := d.conn.WithContext(ctx).Updates(c)
+// if t.RowsAffected == 0 {
+// return utils.Wrap(errors.New("RowsAffected == 0"), "no update ")
+// }
+// return utils.Wrap(t.Error, "UpdateMessage failed")
+// }
+//funcation (d *DataBase) UpdateMessageController(ctx context.Context, c *model_struct.LocalChatLog) error {
+// switch c.SessionType {
+// case constant.SuperGroupChatType:
+// return utils.Wrap(d.SuperGroupUpdateMessage(ctx, c), "")
+// default:
+// return utils.Wrap(d.UpdateMessage(ctx, c), "")
+// }
+//}
+
+func (d *DataBase) DeleteAllMessage(ctx context.Context) error {
+ m := model_struct.LocalChatLog{Status: constant.MsgStatusHasDeleted, Content: ""}
+ err := d.conn.WithContext(ctx).Session(&gorm.Session{AllowGlobalUpdate: true}).Select("status", "content").Updates(m).Error
+ return utils.Wrap(err, "delete all message error")
+}
+func (d *DataBase) UpdateMessageStatusBySourceID(ctx context.Context, sourceID string, status, sessionType int32) error {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ var condition string
+ if sourceID == d.loginUserID && sessionType == constant.SingleChatType {
+ condition = "send_id=? And recv_id=? AND session_type=?"
+ } else {
+ condition = "(send_id=? or recv_id=?)AND session_type=?"
+ }
+ t := d.conn.WithContext(ctx).Model(model_struct.LocalChatLog{}).Where(condition, sourceID, sourceID, sessionType).Updates(model_struct.LocalChatLog{Status: status})
+ if t.RowsAffected == 0 {
+ return utils.Wrap(errors.New("RowsAffected == 0"), "no update")
+ }
+ return utils.Wrap(t.Error, "UpdateMessageStatusBySourceID failed")
+}
+func (d *DataBase) UpdateMessageStatusBySourceIDController(ctx context.Context, sourceID string, status, sessionType int32) error {
+ switch sessionType {
+ case constant.SuperGroupChatType:
+ return d.SuperGroupUpdateMessageStatusBySourceID(ctx, sourceID, status, sessionType)
+ default:
+ return d.UpdateMessageStatusBySourceID(ctx, sourceID, status, sessionType)
+ }
+}
+
+// funcation (d *DataBase) UpdateMessageTimeAndStatus(ctx context.Context, clientMsgID string, serverMsgID string, sendTime int64, status int32) error {
+// d.mRWMutex.Lock()
+// defer d.mRWMutex.Unlock()
+// return utils.Wrap(d.conn.WithContext(ctx).Model(model_struct.LocalChatLog{}).Where("client_msg_id=? And seq=?", clientMsgID, 0).
+// Updates(model_struct.LocalChatLog{Status: status, SendTime: sendTime, ServerMsgID: serverMsgID}).Error, "UpdateMessageStatusBySourceID failed")
+//
+// }
+//funcation (d *DataBase) UpdateMessageTimeAndStatusController(ctx context.Context, msg *sdk_struct.MsgStruct) error {
+// switch msg.SessionType {
+// case constant.SuperGroupChatType:
+// return d.SuperGroupUpdateMessageTimeAndStatus(ctx, msg)
+// default:
+// return d.UpdateMessageTimeAndStatus(ctx, msg.ClientMsgID, msg.ServerMsgID, msg.SendTime, msg.Status)
+// }
+//}
+
+//funcation (d *DataBase) UpdateMessageAttachedInfo(ctx context.Context, msg *sdk_struct.MsgStruct) error {
+// info, err := json.Marshal(msg.AttachedInfoElem)
+// if err != nil {
+// return err
+// }
+// d.mRWMutex.Lock()
+// defer d.mRWMutex.Unlock()
+// switch msg.SessionType {
+// case constant.SuperGroupChatType:
+// t := d.conn.WithContext(ctx).Table(utils.GetSuperGroupTableName(msg.GroupID)).Where("client_msg_id=?", msg.ClientMsgID).Updates(map[string]any{"attached_info": string(info)})
+// if t.RowsAffected == 0 {
+// return utils.Wrap(errors.New("RowsAffected == 0"), "no update")
+// }
+// return utils.Wrap(t.Error, "SuperGroupUpdateMessageTimeAndStatus failed")
+// default:
+// return utils.Wrap(d.conn.WithContext(ctx).Model(model_struct.LocalChatLog{}).Where("client_msg_id=?", msg.ClientMsgID).Updates(map[string]any{"attached_info": string(info)}).Error, "")
+// }
+//}
+
+// group ,index_recv_id and index_send_time only one can be used,when index_recv_id be used,temp B tree use for order by,Query speed decrease
+//funcation (d *DataBase) GetMessageList(ctx context.Context, sourceID string, sessionType, count int, startTime int64, isReverse bool) (result []*model_struct.LocalChatLog, err error) {
+// d.mRWMutex.Lock()
+// defer d.mRWMutex.Unlock()
+// var messageList []model_struct.LocalChatLog
+// var condition, timeOrder, timeSymbol string
+// if isReverse {
+// timeOrder = "send_time ASC"
+// timeSymbol = ">"
+// } else {
+// timeOrder = "send_time DESC"
+// timeSymbol = "<"
+// }
+// if sessionType == constant.SingleChatType && sourceID == d.loginUserID {
+// condition = "send_id = ? And recv_id = ? AND status <=? And session_type = ? And send_time " + timeSymbol + " ?"
+// } else {
+// condition = "(send_id = ? OR recv_id = ?) AND status <=? And session_type = ? And send_time " + timeSymbol + " ?"
+// }
+// err = utils.Wrap(d.conn.WithContext(ctx).Where(condition, sourceID, sourceID, constant.MsgStatusSendFailed, sessionType, startTime).
+// Order(timeOrder).Offset(0).Limit(count).Find(&messageList).Error, "GetMessageList failed")
+// for _, v := range messageList {
+// v1 := v
+// result = append(result, &v1)
+// }
+// return result, err
+//}
+
+func (d *DataBase) GetAllMessageForTest(ctx context.Context) (result []*model_struct.LocalChatLog, err error) {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ var messageList []model_struct.LocalChatLog
+
+ err = utils.Wrap(d.conn.WithContext(ctx).Find(&messageList).Error, "GetMessageList failed")
+ for _, v := range messageList {
+ v1 := v
+ result = append(result, &v1)
+ }
+ return result, err
+}
+
+//funcation (d *DataBase) GetMessageListController(ctx context.Context, sourceID string, sessionType, count int, startTime int64, isReverse bool) (result []*model_struct.LocalChatLog, err error) {
+// switch sessionType {
+// case constant.SuperGroupChatType:
+// return d.SuperGroupGetMessageList(ctx, sourceID, sessionType, count, startTime, isReverse)
+// default:
+// return d.GetMessageList(ctx, sourceID, sessionType, count, startTime, isReverse)
+// }
+//}
+
+//funcation (d *DataBase) GetMessageListNoTime(ctx context.Context, sourceID string, sessionType, count int, isReverse bool) (result []*model_struct.LocalChatLog, err error) {
+// d.mRWMutex.Lock()
+// defer d.mRWMutex.Unlock()
+// var messageList []model_struct.LocalChatLog
+// var condition, timeOrder string
+// if isReverse {
+// timeOrder = "send_time ASC"
+// } else {
+// timeOrder = "send_time DESC"
+// }
+// switch sessionType {
+// case constant.SingleChatType:
+// if sourceID == d.loginUserID {
+// condition = "send_id = ? And recv_id = ? AND status <=? And session_type = ?"
+// } else {
+// condition = "(send_id = ? OR recv_id = ?) AND status <=? And session_type = ? "
+// }
+// err = utils.Wrap(d.conn.WithContext(ctx).Where(condition, sourceID, sourceID, constant.MsgStatusSendFailed, sessionType).
+// Order(timeOrder).Offset(0).Limit(count).Find(&messageList).Error, "GetMessageList failed")
+// case constant.GroupChatType:
+// condition = " recv_id = ? AND status <=? And session_type = ? "
+// err = utils.Wrap(d.conn.WithContext(ctx).Where(condition, sourceID, constant.MsgStatusSendFailed, sessionType).
+// Order(timeOrder).Offset(0).Limit(count).Find(&messageList).Error, "GetMessageList failed")
+// default:
+// condition = "(send_id = ? OR recv_id = ?) AND status <=? And session_type = ? "
+// err = utils.Wrap(d.conn.WithContext(ctx).Where(condition, sourceID, sourceID, constant.MsgStatusSendFailed, sessionType).
+// Order(timeOrder).Offset(0).Limit(count).Find(&messageList).Error, "GetMessageList failed")
+// }
+//
+// for _, v := range messageList {
+// v1 := v
+// result = append(result, &v1)
+// }
+// return result, err
+//}
+
+//funcation (d *DataBase) GetMessageListNoTimeController(ctx context.Context, sourceID string, sessionType, count int, isReverse bool) (result []*model_struct.LocalChatLog, err error) {
+// switch sessionType {
+// case constant.SuperGroupChatType:
+// return d.SuperGroupGetMessageListNoTime(ctx, sourceID, sessionType, count, isReverse)
+// default:
+// return d.GetMessageListNoTime(ctx, sourceID, sessionType, count, isReverse)
+// }
+//}
+
+func (d *DataBase) GetTestMessage(ctx context.Context, seq uint32) (*model_struct.LocalChatLog, error) {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ var c model_struct.LocalChatLog
+ return &c, utils.Wrap(d.conn.WithContext(ctx).Where("seq = ?",
+ seq).Find(&c).Error, "GetTestMessage failed")
+}
+
+func (d *DataBase) UpdateMsgSenderNickname(ctx context.Context, sendID, nickname string, sType int) error {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ return utils.Wrap(d.conn.WithContext(ctx).Model(model_struct.LocalChatLog{}).Where(
+ "send_id = ? and session_type = ? and sender_nick_name != ? ", sendID, sType, nickname).Updates(
+ map[string]interface{}{"sender_nick_name": nickname}).Error, utils.GetSelfFuncName()+" failed")
+}
+
+func (d *DataBase) UpdateMsgSenderFaceURL(ctx context.Context, sendID, faceURL string, sType int) error {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ return utils.Wrap(d.conn.WithContext(ctx).Model(model_struct.LocalChatLog{}).Where(
+ "send_id = ? and session_type = ? and sender_face_url != ? ", sendID, sType, faceURL).Updates(
+ map[string]interface{}{"sender_face_url": faceURL}).Error, utils.GetSelfFuncName()+" failed")
+}
+
+//funcation (d *DataBase) UpdateMsgSenderFaceURLAndSenderNicknameController(ctx context.Context, sendID, faceURL, nickname string, sessionType int, groupID string) error {
+// switch sessionType {
+// case constant.SuperGroupChatType:
+// return d.SuperGroupUpdateMsgSenderFaceURLAndSenderNickname(ctx, sendID, faceURL, nickname, sessionType, groupID)
+// default:
+// return d.UpdateMsgSenderFaceURLAndSenderNickname(ctx, sendID, faceURL, nickname, sessionType)
+// }
+//}
+//funcation (d *DataBase) UpdateMsgSenderFaceURLAndSenderNickname(ctx context.Context, sendID, faceURL, nickname string, sessionType int) error {
+// d.mRWMutex.Lock()
+// defer d.mRWMutex.Unlock()
+// return utils.Wrap(d.conn.WithContext(ctx).Model(model_struct.LocalChatLog{}).Where(
+// "send_id = ? and session_type = ?", sendID, sessionType).Updates(
+// map[string]interface{}{"sender_face_url": faceURL, "sender_nick_name": nickname}).Error, utils.GetSelfFuncName()+" failed")
+//}
+
+func (d *DataBase) GetMsgSeqByClientMsgID(ctx context.Context, clientMsgID string) (uint32, error) {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ var seq uint32
+ err := utils.Wrap(d.conn.WithContext(ctx).Model(model_struct.LocalChatLog{}).Select("seq").Where("client_msg_id=?", clientMsgID).First(&seq).Error, utils.GetSelfFuncName()+" failed")
+ return seq, err
+}
+
+func (d *DataBase) GetMsgSeqByClientMsgIDController(ctx context.Context, m *sdk_struct.MsgStruct) (uint32, error) {
+ switch m.SessionType {
+ case constant.SuperGroupChatType:
+ return d.SuperGroupGetMsgSeqByClientMsgID(ctx, m.ClientMsgID, m.GroupID)
+ default:
+ return d.GetMsgSeqByClientMsgID(ctx, m.ClientMsgID)
+ }
+}
+
+func (d *DataBase) GetMsgSeqListByGroupID(ctx context.Context, groupID string) ([]uint32, error) {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ var seqList []uint32
+ err := utils.Wrap(d.conn.WithContext(ctx).Model(model_struct.LocalChatLog{}).Select("seq").Where("recv_id=?", groupID).Find(&seqList).Error, utils.GetSelfFuncName()+" failed")
+ return seqList, err
+}
+
+func (d *DataBase) GetMsgSeqListByPeerUserID(ctx context.Context, userID string) ([]uint32, error) {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ var seqList []uint32
+ err := utils.Wrap(d.conn.WithContext(ctx).Model(model_struct.LocalChatLog{}).Select("seq").Where("recv_id=? or send_id=?", userID, userID).Find(&seqList).Error, utils.GetSelfFuncName()+" failed")
+ return seqList, err
+}
+
+func (d *DataBase) GetMsgSeqListBySelfUserID(ctx context.Context, userID string) ([]uint32, error) {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ var seqList []uint32
+ err := utils.Wrap(d.conn.WithContext(ctx).Model(model_struct.LocalChatLog{}).Select("seq").Where("recv_id=? and send_id=?", userID, userID).Find(&seqList).Error, utils.GetSelfFuncName()+" failed")
+ return seqList, err
+}
diff --git a/go/chao-sdk-core/pkg/db/chat_log_model_v3.go b/go/chao-sdk-core/pkg/db/chat_log_model_v3.go
new file mode 100644
index 0000000..da69c05
--- /dev/null
+++ b/go/chao-sdk-core/pkg/db/chat_log_model_v3.go
@@ -0,0 +1,341 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build !js
+// +build !js
+
+package db
+
+import (
+ "context"
+ "errors"
+ "fmt"
+
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/sdk_struct"
+
+ "github.com/openimsdk/tools/errs"
+ "github.com/openimsdk/tools/log"
+)
+
+func (d *DataBase) initChatLog(ctx context.Context, conversationID string) {
+ if !d.conn.Migrator().HasTable(utils.GetTableName(conversationID)) {
+ d.conn.WithContext(ctx).Table(utils.GetTableName(conversationID)).AutoMigrate(&model_struct.LocalChatLog{})
+ result := d.conn.Exec(fmt.Sprintf("CREATE INDEX %s ON %s (seq)", "index_seq_"+conversationID,
+ utils.GetTableName(conversationID)))
+ if result.Error != nil {
+ log.ZError(ctx, "create table seq index failed", result.Error, "conversationID", conversationID)
+ }
+ result = d.conn.Exec(fmt.Sprintf("CREATE INDEX %s ON %s (send_time)", "index_send_time_"+conversationID,
+ utils.GetTableName(conversationID)))
+ if result.Error != nil {
+ log.ZError(ctx, "create table send_time index failed", result.Error, "conversationID", conversationID)
+ }
+ }
+}
+func (d *DataBase) UpdateMessage(ctx context.Context, conversationID string, c *model_struct.LocalChatLog) error {
+ t := d.conn.WithContext(ctx).Table(utils.GetTableName(conversationID)).Updates(c)
+ if t.RowsAffected == 0 {
+ return errs.WrapMsg(errors.New("RowsAffected == 0"), "no update ")
+ }
+ return errs.WrapMsg(t.Error, "UpdateMessage failed")
+}
+
+func (d *DataBase) UpdateMessageBySeq(ctx context.Context, conversationID string, c *model_struct.LocalChatLog) error {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ return errs.WrapMsg(d.conn.WithContext(ctx).Table(utils.GetTableName(conversationID)).Where("seq=?", c.Seq).Updates(c).Error, "UpdateMessage failed")
+}
+
+func (d *DataBase) BatchInsertMessageList(ctx context.Context, conversationID string, MessageList []*model_struct.LocalChatLog) error {
+ if MessageList == nil {
+ return nil
+ }
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ return errs.WrapMsg(d.conn.WithContext(ctx).Table(utils.GetTableName(conversationID)).Create(MessageList).Error, "BatchInsertMessageList failed")
+}
+
+func (d *DataBase) InsertMessage(ctx context.Context, conversationID string, Message *model_struct.LocalChatLog) error {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ return errs.WrapMsg(d.conn.WithContext(ctx).Table(utils.GetTableName(conversationID)).Create(Message).Error, "InsertMessage failed")
+}
+func (d *DataBase) GetMessage(ctx context.Context, conversationID string, clientMsgID string) (*model_struct.LocalChatLog, error) {
+ d.initChatLog(ctx, conversationID)
+ var c model_struct.LocalChatLog
+ return &c, errs.WrapMsg(d.conn.WithContext(ctx).Table(utils.GetTableName(conversationID)).Where("client_msg_id = ?",
+ clientMsgID).Take(&c).Error, "GetMessage failed")
+}
+
+func (d *DataBase) GetMessageBySeq(ctx context.Context, conversationID string, seq int64) (*model_struct.LocalChatLog, error) {
+ d.initChatLog(ctx, conversationID)
+ var c model_struct.LocalChatLog
+ return &c, errs.WrapMsg(d.conn.WithContext(ctx).Table(utils.GetTableName(conversationID)).Where("seq = ?",
+ seq).Take(&c).Error, "GetMessage failed")
+}
+
+func (d *DataBase) UpdateMessageTimeAndStatus(ctx context.Context, conversationID, clientMsgID string, serverMsgID string, sendTime int64, status int32) error {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ return errs.WrapMsg(d.conn.WithContext(ctx).Table(utils.GetTableName(conversationID)).Model(model_struct.LocalChatLog{}).Where("client_msg_id=? And seq=?", clientMsgID, 0).
+ Updates(model_struct.LocalChatLog{Status: status, SendTime: sendTime, ServerMsgID: serverMsgID}).Error, "UpdateMessageStatusBySourceID failed")
+}
+func (d *DataBase) GetMessageListNoTime(ctx context.Context, conversationID string,
+ count int, isReverse bool) (result []*model_struct.LocalChatLog, err error) {
+ d.initChatLog(ctx, conversationID)
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ var timeOrder string
+ if isReverse {
+ timeOrder = "send_time ASC"
+ } else {
+ timeOrder = "send_time DESC"
+ }
+ err = errs.WrapMsg(d.conn.WithContext(ctx).Table(utils.GetTableName(conversationID)).Order(timeOrder).Offset(0).Limit(count).Find(&result).Error, "GetMessageList failed")
+ if err != nil {
+ return nil, err
+ }
+ return result, err
+}
+func (d *DataBase) GetMessageList(ctx context.Context, conversationID string, count int, startTime int64, isReverse bool) (result []*model_struct.LocalChatLog, err error) {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ var condition, timeOrder, timeSymbol string
+ if isReverse {
+ timeOrder = "send_time ASC"
+ timeSymbol = ">"
+ } else {
+ timeOrder = "send_time DESC"
+ timeSymbol = "<"
+ }
+ condition = "send_time " + timeSymbol + " ?"
+
+ err = errs.WrapMsg(d.conn.WithContext(ctx).Table(utils.GetTableName(conversationID)).Where(condition, startTime).
+ Order(timeOrder).Offset(0).Limit(count).Find(&result).Error, "GetMessageList failed")
+ if err != nil {
+ return nil, err
+ }
+ return result, err
+}
+
+func (d *DataBase) DeleteConversationAllMessages(ctx context.Context, conversationID string) error {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ return errs.WrapMsg(d.conn.WithContext(ctx).Table(utils.GetTableName(conversationID)).Where("1 = 1").Delete(model_struct.LocalChatLog{}).Error, "DeleteConversationAllMessages failed")
+}
+
+func (d *DataBase) MarkDeleteConversationAllMessages(ctx context.Context, conversationID string) error {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ return errs.WrapMsg(d.conn.WithContext(ctx).Table(utils.GetTableName(conversationID)).Where("1 = 1").Updates(model_struct.LocalChatLog{Status: constant.MsgStatusHasDeleted}).Error, "DeleteConversationAllMessages failed")
+}
+
+func (d *DataBase) DeleteConversationMsgs(ctx context.Context, conversationID string, msgIDs []string) error {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ return errs.WrapMsg(d.conn.WithContext(ctx).Table(utils.GetTableName(conversationID)).Where("client_msg_id IN ?", msgIDs).Delete(model_struct.LocalChatLog{}).Error, "DeleteConversationMsgs failed")
+}
+
+func (d *DataBase) DeleteConversationMsgsBySeqs(ctx context.Context, conversationID string, seqs []int64) error {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ return errs.WrapMsg(d.conn.WithContext(ctx).Table(utils.GetTableName(conversationID)).Where("seq IN ?", seqs).Delete(model_struct.LocalChatLog{}).Error, "DeleteConversationMsgs failed")
+}
+
+func (d *DataBase) SearchMessageByContentType(ctx context.Context, contentType []int, conversationID string, startTime, endTime int64, offset, count int) (result []*model_struct.LocalChatLog, err error) {
+ condition := fmt.Sprintf("send_time between %d and %d AND status <=%d And content_type IN ?", startTime, endTime, constant.MsgStatusSendFailed)
+ err = errs.WrapMsg(d.conn.WithContext(ctx).Table(utils.GetTableName(conversationID)).Where(condition, contentType).Order("send_time DESC").Offset(offset).Limit(count).Find(&result).Error, "SearchMessage failed")
+ return result, err
+}
+func (d *DataBase) SearchMessageByKeyword(ctx context.Context, contentType []int, keywordList []string, keywordListMatchType int, conversationID string, startTime, endTime int64, offset, count int) (result []*model_struct.LocalChatLog, err error) {
+ var condition string
+ var subCondition string
+ if keywordListMatchType == constant.KeywordMatchOr {
+ for i := 0; i < len(keywordList); i++ {
+ if i == 0 {
+ subCondition += "And ("
+ }
+ if i+1 >= len(keywordList) {
+ subCondition += "content like " + "'%" + keywordList[i] + "%') "
+ } else {
+ subCondition += "content like " + "'%" + keywordList[i] + "%' " + "or "
+
+ }
+ }
+ } else {
+ for i := 0; i < len(keywordList); i++ {
+ if i == 0 {
+ subCondition += "And ("
+ }
+ if i+1 >= len(keywordList) {
+ subCondition += "content like " + "'%" + keywordList[i] + "%') "
+ } else {
+ subCondition += "content like " + "'%" + keywordList[i] + "%' " + "and "
+ }
+ }
+ }
+ condition = fmt.Sprintf(" send_time between %d and %d AND status <=%d And content_type IN ? ", startTime, endTime, constant.MsgStatusSendFailed)
+ condition += subCondition
+ err = errs.WrapMsg(d.conn.WithContext(ctx).Table(utils.GetTableName(conversationID)).Where(condition, contentType).Order("send_time DESC").Offset(offset).Limit(count).Find(&result).Error, "InsertMessage failed")
+ return result, err
+} // SearchMessageByContentTypeAndKeyword searches for messages in the database that match specified content types and keywords within a given time range.
+func (d *DataBase) SearchMessageByContentTypeAndKeyword(ctx context.Context, contentType []int, conversationID string, keywordList []string, keywordListMatchType int, startTime, endTime int64) (result []*model_struct.LocalChatLog, err error) {
+ var condition string
+ var subCondition string
+
+ // Construct a sub-condition for SQL query based on keyword list and match type
+ if keywordListMatchType == constant.KeywordMatchOr {
+ // Use OR logic if keywordListMatchType is KeywordMatchOr
+ for i := 0; i < len(keywordList); i++ {
+ if i == 0 {
+ subCondition += "And ("
+ }
+ if i+1 >= len(keywordList) {
+ subCondition += "content like " + "'%" + keywordList[i] + "%') "
+ } else {
+ subCondition += "content like " + "'%" + keywordList[i] + "%' " + "or "
+ }
+ }
+ } else {
+ // Use AND logic for other keywordListMatchType
+ for i := 0; i < len(keywordList); i++ {
+ if i == 0 {
+ subCondition += "And ("
+ }
+ if i+1 >= len(keywordList) {
+ subCondition += "content like " + "'%" + keywordList[i] + "%') "
+ } else {
+ subCondition += "content like " + "'%" + keywordList[i] + "%' " + "and "
+ }
+ }
+ }
+
+ // Construct the main SQL condition string
+ condition = fmt.Sprintf("send_time between %d and %d AND status <=%d And content_type IN ? ", startTime, endTime, constant.MsgStatusSendFailed)
+ condition += subCondition
+
+ // Execute the query using the constructed condition and handle errors
+ err = errs.WrapMsg(d.conn.WithContext(ctx).Table(utils.GetTableName(conversationID)).Where(condition, contentType).Order("send_time DESC").Find(&result).Error, "SearchMessage failed")
+
+ return result, err
+}
+
+func (d *DataBase) UpdateMsgSenderFaceURLAndSenderNickname(ctx context.Context, conversationID, sendID, faceURL, nickname string) error {
+ return errs.WrapMsg(d.conn.WithContext(ctx).Table(utils.GetTableName(conversationID)).Model(model_struct.LocalChatLog{}).Where(
+ "send_id = ?", sendID).Updates(
+ map[string]interface{}{"sender_face_url": faceURL, "sender_nick_name": nickname}).Error, utils.GetSelfFuncName()+" failed")
+}
+
+func (d *DataBase) GetAlreadyExistSeqList(ctx context.Context, conversationID string, lostSeqList []int64) (seqList []int64, err error) {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ err = errs.WrapMsg(d.conn.WithContext(ctx).Table(utils.GetConversationTableName(conversationID)).Where("seq IN ?", lostSeqList).Pluck("seq", &seqList).Error, utils.GetSelfFuncName()+" failed")
+ if err != nil {
+ return nil, err
+ }
+ return seqList, nil
+}
+
+func (d *DataBase) UpdateColumnsMessage(ctx context.Context, conversationID, ClientMsgID string, args map[string]interface{}) error {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ c := model_struct.LocalChatLog{ClientMsgID: ClientMsgID}
+ t := d.conn.WithContext(ctx).Table(utils.GetConversationTableName(conversationID)).Model(&c).Updates(args)
+ if t.RowsAffected == 0 {
+ return errs.WrapMsg(errors.New("RowsAffected == 0"), "no update")
+ }
+ return errs.WrapMsg(t.Error, "UpdateColumnsConversation failed")
+}
+func (d *DataBase) SearchAllMessageByContentType(ctx context.Context, conversationID string, contentType int) (result []*model_struct.LocalChatLog, err error) {
+ err = d.conn.WithContext(ctx).Table(utils.GetTableName(conversationID)).Model(&model_struct.LocalChatLog{}).Where("content_type = ?", contentType).Find(&result).Error
+ return result, err
+}
+func (d *DataBase) GetUnreadMessage(ctx context.Context, conversationID string) (msgs []*model_struct.LocalChatLog, err error) {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ err = errs.WrapMsg(d.conn.WithContext(ctx).Table(utils.GetConversationTableName(conversationID)).Debug().Where("send_id != ? AND is_read = ?", d.loginUserID, constant.NotRead).Find(&msgs).Error, "GetMessageList failed")
+ return msgs, err
+}
+
+func (d *DataBase) MarkConversationMessageAsReadBySeqs(ctx context.Context, conversationID string, seqs []int64) (rowsAffected int64, err error) {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ t := d.conn.WithContext(ctx).Table(utils.GetConversationTableName(conversationID)).Where("seq in ? AND send_id != ?", seqs, d.loginUserID).Update("is_read", constant.HasRead)
+ if t.RowsAffected == 0 {
+ return 0, errs.WrapMsg(errors.New("RowsAffected == 0"), "no update")
+ }
+ return t.RowsAffected, errs.WrapMsg(t.Error, "UpdateMessageStatusBySourceID failed")
+}
+
+func (d *DataBase) MarkConversationMessageAsReadDB(ctx context.Context, conversationID string, msgIDs []string) (rowsAffected int64, err error) {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ var msgs []*model_struct.LocalChatLog
+ if err := d.conn.WithContext(ctx).Table(utils.GetConversationTableName(conversationID)).Where("client_msg_id in ? AND send_id != ?", msgIDs, d.loginUserID).Find(&msgs).Error; err != nil {
+ return 0, errs.WrapMsg(err, "MarkConversationMessageAsReadDB failed")
+ }
+ for _, msg := range msgs {
+ var attachedInfo sdk_struct.AttachedInfoElem
+ utils.JsonStringToStruct(msg.AttachedInfo, &attachedInfo)
+ attachedInfo.HasReadTime = utils.GetCurrentTimestampByMill()
+ msg.IsRead = true
+ msg.AttachedInfo = utils.StructToJsonString(attachedInfo)
+ if err := d.conn.WithContext(ctx).Table(utils.GetConversationTableName(conversationID)).Where("client_msg_id = ?", msg.ClientMsgID).Updates(msg).Error; err != nil {
+ log.ZError(ctx, "MarkConversationMessageAsReadDB failed", err, "msg", msg)
+ } else {
+ rowsAffected++
+ }
+ }
+ // t := d.conn.WithContext(ctx).Table(utils.GetConversationTableName(conversationID)).Where("client_msg_id in ? AND send_id != ?", msgIDs, d.loginUserID).Update("is_read", constant.HasRead)
+ // if t.RowsAffected == 0 {
+ // return 0, errs.WrapMsg(errors.New("RowsAffected == 0"), "no update")
+ // }
+ return rowsAffected, nil
+}
+
+func (d *DataBase) MarkConversationAllMessageAsRead(ctx context.Context, conversationID string) (rowsAffected int64, err error) {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ t := d.conn.WithContext(ctx).Table(utils.GetConversationTableName(conversationID)).Where("send_id != ? AND is_read == ?", d.loginUserID, false).Update("is_read", constant.HasRead)
+ if t.RowsAffected == 0 {
+ return 0, errs.WrapMsg(errors.New("RowsAffected == 0"), "no update")
+ }
+ return t.RowsAffected, errs.WrapMsg(t.Error, "UpdateMessageStatusBySourceID failed")
+}
+
+func (d *DataBase) GetMessagesByClientMsgIDs(ctx context.Context, conversationID string, msgIDs []string) (msgs []*model_struct.LocalChatLog, err error) {
+ err = errs.WrapMsg(d.conn.WithContext(ctx).Table(utils.GetConversationTableName(conversationID)).Where("client_msg_id IN ?", msgIDs).Order("send_time DESC").Find(&msgs).Error, "GetMessagesByClientMsgIDs error")
+ return msgs, err
+}
+
+func (d *DataBase) GetMessagesBySeqs(ctx context.Context, conversationID string, seqs []int64) (msgs []*model_struct.LocalChatLog, err error) {
+ err = errs.WrapMsg(d.conn.WithContext(ctx).Table(utils.GetConversationTableName(conversationID)).Where("seq IN ?", seqs).Order("send_time DESC").Find(&msgs).Error, "GetMessagesBySeqs error")
+ return msgs, err
+}
+
+func (d *DataBase) GetConversationNormalMsgSeq(ctx context.Context, conversationID string) (int64, error) {
+ d.initChatLog(ctx, conversationID)
+ var seq int64
+ err := d.conn.WithContext(ctx).Table(utils.GetConversationTableName(conversationID)).Select("IFNULL(max(seq),0)").Find(&seq).Error
+ return seq, errs.WrapMsg(err, "GetConversationNormalMsgSeq")
+}
+
+func (d *DataBase) GetConversationPeerNormalMsgSeq(ctx context.Context, conversationID string) (int64, error) {
+ var seq int64
+ err := d.conn.WithContext(ctx).Table(utils.GetConversationTableName(conversationID)).Select("IFNULL(max(seq),0)").Where("send_id != ?", d.loginUserID).Find(&seq).Error
+ return seq, errs.WrapMsg(err, "GetConversationPeerNormalMsgSeq")
+}
diff --git a/go/chao-sdk-core/pkg/db/chat_log_reaction_extension_model.go b/go/chao-sdk-core/pkg/db/chat_log_reaction_extension_model.go
new file mode 100644
index 0000000..56a4065
--- /dev/null
+++ b/go/chao-sdk-core/pkg/db/chat_log_reaction_extension_model.go
@@ -0,0 +1,120 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build !js
+// +build !js
+
+package db
+
+import (
+ "context"
+ "errors"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+)
+
+func (d *DataBase) GetMessageReactionExtension(ctx context.Context, msgID string) (result *model_struct.LocalChatLogReactionExtensions, err error) {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ var l model_struct.LocalChatLogReactionExtensions
+ return &l, utils.Wrap(d.conn.WithContext(ctx).Where("client_msg_id = ?",
+ msgID).Take(&l).Error, "GetMessageReactionExtension failed")
+}
+
+func (d *DataBase) InsertMessageReactionExtension(ctx context.Context, messageReactionExtension *model_struct.LocalChatLogReactionExtensions) error {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ return utils.Wrap(d.conn.WithContext(ctx).Create(messageReactionExtension).Error, "InsertMessageReactionExtension failed")
+}
+func (d *DataBase) UpdateMessageReactionExtension(ctx context.Context, c *model_struct.LocalChatLogReactionExtensions) error {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ t := d.conn.WithContext(ctx).Updates(c)
+ if t.RowsAffected == 0 {
+ return utils.Wrap(errors.New("RowsAffected == 0"), "no update")
+ }
+ return utils.Wrap(t.Error, "UpdateConversation failed")
+}
+
+// func (d *DataBase) GetAndUpdateMessageReactionExtension(ctx context.Context, msgID string, m map[string]*sdkws.KeyValue) error {
+// d.mRWMutex.Lock()
+// defer d.mRWMutex.Unlock()
+// var temp model_struct.LocalChatLogReactionExtensions
+// err := d.conn.WithContext(ctx).Where("client_msg_id = ?",
+// msgID).Take(&temp).Error
+// if err != nil {
+// temp.ClientMsgID = msgID
+// temp.LocalReactionExtensions = []byte(utils.StructToJsonString(m))
+// return d.conn.WithContext(ctx).Create(&temp).Error
+// } else {
+// oldKeyValue := make(map[string]*sdkws.KeyValue)
+// err = json.Unmarshal(temp.LocalReactionExtensions, &oldKeyValue)
+// if err != nil {
+// log.Error("special handle", err.Error())
+// }
+// log.Warn("special handle", oldKeyValue)
+// for k, newValue := range m {
+// oldKeyValue[k] = newValue
+// }
+// temp.LocalReactionExtensions = []byte(utils.StructToJsonString(oldKeyValue))
+// t := d.conn.WithContext(ctx).Updates(temp)
+// if t.RowsAffected == 0 {
+// return utils.Wrap(errors.New("RowsAffected == 0"), "no update")
+// }
+// }
+// return nil
+// }
+func (d *DataBase) DeleteMessageReactionExtension(ctx context.Context, msgID string) error {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ temp := model_struct.LocalChatLogReactionExtensions{ClientMsgID: msgID}
+ return d.conn.WithContext(ctx).Delete(&temp).Error
+
+}
+
+// func (d *DataBase) DeleteAndUpdateMessageReactionExtension(ctx context.Context, msgID string, m map[string]*sdkws.KeyValue) error {
+// d.mRWMutex.Lock()
+// defer d.mRWMutex.Unlock()
+// var temp model_struct.LocalChatLogReactionExtensions
+// err := d.conn.WithContext(ctx).Where("client_msg_id = ?",
+// msgID).Take(&temp).Error
+// if err != nil {
+// return err
+// } else {
+// oldKeyValue := make(map[string]*server_api_params.KeyValue)
+// _ = json.Unmarshal(temp.LocalReactionExtensions, &oldKeyValue)
+// for k := range m {
+// if _, ok := oldKeyValue[k]; ok {
+// delete(oldKeyValue, k)
+// }
+// }
+// temp.LocalReactionExtensions = []byte(utils.StructToJsonString(oldKeyValue))
+// t := d.conn.WithContext(ctx).Updates(temp)
+// if t.RowsAffected == 0 {
+// return utils.Wrap(errors.New("RowsAffected == 0"), "no update")
+// }
+// }
+// return nil
+// }
+// func (d *DataBase) GetMultipleMessageReactionExtension(ctx context.Context, msgIDList []string) (result []*model_struct.LocalChatLogReactionExtensions, err error) {
+// d.mRWMutex.Lock()
+// defer d.mRWMutex.Unlock()
+// var messageList []model_struct.LocalChatLogReactionExtensions
+// err = utils.Wrap(d.conn.WithContext(ctx).Where("client_msg_id IN ?", msgIDList).Find(&messageList).Error, "GetMultipleMessageReactionExtension failed")
+// for _, v := range messageList {
+// v1 := v
+// result = append(result, &v1)
+// }
+// return result, err
+// }
diff --git a/go/chao-sdk-core/pkg/db/conversation_model.go b/go/chao-sdk-core/pkg/db/conversation_model.go
new file mode 100644
index 0000000..1fcba2d
--- /dev/null
+++ b/go/chao-sdk-core/pkg/db/conversation_model.go
@@ -0,0 +1,383 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build !js
+// +build !js
+
+package db
+
+import (
+ "context"
+ "errors"
+ "fmt"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+
+ "github.com/openimsdk/tools/errs"
+ "github.com/openimsdk/tools/log"
+ "gorm.io/gorm"
+)
+
+func (d *DataBase) GetConversationByUserID(ctx context.Context, userID string) (*model_struct.LocalConversation, error) {
+ var conversation model_struct.LocalConversation
+ err := utils.Wrap(d.conn.WithContext(ctx).Where("user_id=?", userID).Find(&conversation).Error, "GetConversationByUserID error")
+ return &conversation, err
+}
+
+func (d *DataBase) GetAllConversationListDB(ctx context.Context) ([]*model_struct.LocalConversation, error) {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ var conversationList []*model_struct.LocalConversation
+ err := utils.Wrap(d.conn.WithContext(ctx).Where("latest_msg_send_time > ?", 0).Order("case when is_pinned=1 then 0 else 1 end,max(latest_msg_send_time,draft_text_time) DESC").Find(&conversationList).Error,
+ "GetAllConversationList failed")
+ if err != nil {
+ return nil, err
+ }
+ return conversationList, err
+}
+func (d *DataBase) FindAllConversationConversationID(ctx context.Context) (conversationIDs []string, err error) {
+ return conversationIDs, utils.Wrap(d.conn.WithContext(ctx).Model(&model_struct.LocalConversation{}).Where("latest_msg_send_time > ?", 0).Pluck("conversation_id", &conversationIDs).Error, "")
+}
+func (d *DataBase) GetHiddenConversationList(ctx context.Context) ([]*model_struct.LocalConversation, error) {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ var conversationList []model_struct.LocalConversation
+ err := utils.Wrap(d.conn.WithContext(ctx).Where("latest_msg_send_time = ?", 0).Find(&conversationList).Error,
+ "GetHiddenConversationList failed")
+ var transfer []*model_struct.LocalConversation
+ for _, v := range conversationList {
+ v1 := v
+ transfer = append(transfer, &v1)
+ }
+ return transfer, err
+}
+
+func (d *DataBase) GetAllConversations(ctx context.Context) ([]*model_struct.LocalConversation, error) {
+ var conversationList []*model_struct.LocalConversation
+ err := utils.Wrap(d.conn.WithContext(ctx).Find(&conversationList).Error, "GetAllConversations failed")
+ return conversationList, err
+}
+
+func (d *DataBase) GetAllConversationIDList(ctx context.Context) (result []string, err error) {
+ d.groupMtx.Lock()
+ defer d.groupMtx.Unlock()
+ var c model_struct.LocalConversation
+ err = d.conn.WithContext(ctx).Model(&c).Pluck("conversation_id", &result).Error
+ return result, utils.Wrap(err, "GetAllConversationIDList failed ")
+}
+
+func (d *DataBase) GetAllSingleConversationIDList(ctx context.Context) (result []string, err error) {
+ d.groupMtx.Lock()
+ defer d.groupMtx.Unlock()
+ var c model_struct.LocalConversation
+ err = d.conn.WithContext(ctx).Model(&c).Where("conversation_type = ?", constant.SingleChatType).Pluck("conversation_id", &result).Error
+ return result, utils.Wrap(err, "GetAllConversationIDList failed ")
+}
+
+func (d *DataBase) GetConversationListSplitDB(ctx context.Context, offset, count int) ([]*model_struct.LocalConversation, error) {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ var conversationList []model_struct.LocalConversation
+ err := utils.Wrap(d.conn.WithContext(ctx).Where("latest_msg_send_time > ?", 0).Order("case when is_pinned=1 then 0 else 1 end,max(latest_msg_send_time,draft_text_time) DESC").Offset(offset).Limit(count).Find(&conversationList).Error,
+ "GetFriendList failed")
+ var transfer []*model_struct.LocalConversation
+ for _, v := range conversationList {
+ v1 := v
+ transfer = append(transfer, &v1)
+ }
+ return transfer, err
+}
+func (d *DataBase) BatchInsertConversationList(ctx context.Context, conversationList []*model_struct.LocalConversation) error {
+ if conversationList == nil {
+ return nil
+ }
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+
+ return utils.Wrap(d.conn.WithContext(ctx).Create(conversationList).Error, "BatchInsertConversationList failed")
+}
+
+func (d *DataBase) UpdateOrCreateConversations(ctx context.Context, conversationList []*model_struct.LocalConversation) error {
+ var conversationIDs []string
+ if err := d.conn.WithContext(ctx).Model(&model_struct.LocalConversation{}).Pluck("conversation_id", &conversationIDs).Error; err != nil {
+ return err
+ }
+ var notExistConversations []*model_struct.LocalConversation
+ var existConversations []*model_struct.LocalConversation
+ for i, v := range conversationList {
+ if utils.IsContain(v.ConversationID, conversationIDs) {
+ existConversations = append(existConversations, v)
+ continue
+ } else {
+ notExistConversations = append(notExistConversations, conversationList[i])
+ }
+ }
+ if len(notExistConversations) > 0 {
+ if err := d.conn.WithContext(ctx).Create(notExistConversations).Error; err != nil {
+ return err
+ }
+ }
+ for _, v := range existConversations {
+ if err := d.conn.WithContext(ctx).Model(&model_struct.LocalConversation{}).Where("conversation_id = ?", v.ConversationID).Updates(map[string]interface{}{"unread_count": v.UnreadCount}).Error; err != nil {
+ return err
+ }
+ }
+ return nil
+}
+
+func (d *DataBase) InsertConversation(ctx context.Context, conversationList *model_struct.LocalConversation) error {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ return utils.Wrap(d.conn.WithContext(ctx).Create(conversationList).Error, "InsertConversation failed")
+}
+
+func (d *DataBase) DeleteConversation(ctx context.Context, conversationID string) error {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ return utils.Wrap(d.conn.WithContext(ctx).Where("conversation_id = ?", conversationID).Delete(&model_struct.LocalConversation{}).Error, "DeleteConversation failed")
+}
+
+func (d *DataBase) GetConversation(ctx context.Context, conversationID string) (*model_struct.LocalConversation, error) {
+ var c model_struct.LocalConversation
+ return &c, utils.Wrap(d.conn.WithContext(ctx).Where("conversation_id = ?",
+ conversationID).Take(&c).Error, "GetConversation failed, conversationID: "+conversationID)
+}
+
+func (d *DataBase) UpdateConversation(ctx context.Context, c *model_struct.LocalConversation) error {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ d.conn.WithContext(ctx).Logger.LogMode(6)
+ t := d.conn.WithContext(ctx).Updates(c)
+ if t.RowsAffected == 0 {
+ return utils.Wrap(errors.New("RowsAffected == 0"), "no update")
+ }
+ return utils.Wrap(t.Error, "UpdateConversation failed")
+}
+
+func (d *DataBase) UpdateConversationForSync(ctx context.Context, c *model_struct.LocalConversation) error {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ t := d.conn.WithContext(ctx).Model(&model_struct.LocalConversation{}).Where("conversation_id = ?", c.ConversationID).
+ Updates(map[string]interface{}{"recv_msg_opt": c.RecvMsgOpt, "is_pinned": c.IsPinned, "is_private_chat": c.IsPrivateChat,
+ "group_at_type": c.GroupAtType, "is_not_in_group": c.IsNotInGroup, "update_unread_count_time": c.UpdateUnreadCountTime, "ex": c.Ex, "attached_info": c.AttachedInfo,
+ "burn_duration": c.BurnDuration, "msg_destruct_time": c.MsgDestructTime, "is_msg_destruct": c.IsMsgDestruct})
+ if t.RowsAffected == 0 {
+ return utils.Wrap(errors.New("RowsAffected == 0"), "no update")
+ }
+ return utils.Wrap(t.Error, "UpdateConversation failed")
+}
+
+func (d *DataBase) BatchUpdateConversationList(ctx context.Context, conversationList []*model_struct.LocalConversation) error {
+ for _, v := range conversationList {
+ err := d.UpdateConversation(ctx, v)
+ if err != nil {
+ return utils.Wrap(err, "BatchUpdateConversationList failed")
+ }
+
+ }
+ return nil
+}
+func (d *DataBase) ConversationIfExists(ctx context.Context, conversationID string) (bool, error) {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ var count int64
+ t := d.conn.WithContext(ctx).Model(&model_struct.LocalConversation{}).Where("conversation_id = ?",
+ conversationID).Count(&count)
+ if t.Error != nil {
+ return false, utils.Wrap(t.Error, "ConversationIfExists get failed")
+ }
+ if count != 1 {
+ return false, nil
+ } else {
+ return true, nil
+ }
+}
+
+// Reset the conversation is equivalent to deleting the conversation,
+// and the GetAllConversation or GetConversationListSplit interface will no longer be obtained.
+func (d *DataBase) ResetConversation(ctx context.Context, conversationID string) error {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ c := model_struct.LocalConversation{ConversationID: conversationID, UnreadCount: 0, LatestMsg: "", LatestMsgSendTime: 0, DraftText: "", DraftTextTime: 0}
+ t := d.conn.WithContext(ctx).Select("unread_count", "latest_msg", "latest_msg_send_time", "draft_text", "draft_text_time").Updates(c)
+ if t.RowsAffected == 0 {
+ return utils.Wrap(errors.New("RowsAffected == 0"), "no update")
+ }
+ return utils.Wrap(t.Error, "ResetConversation failed")
+}
+
+// ResetAllConversation Reset ALL conversation is equivalent to deleting the conversation,
+// and the GetAllConversation or GetConversationListSplit interface will no longer be obtained.
+func (d *DataBase) ResetAllConversation(ctx context.Context) error {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ c := model_struct.LocalConversation{UnreadCount: 0, LatestMsg: "", LatestMsgSendTime: 0, DraftText: "", DraftTextTime: 0}
+ t := d.conn.WithContext(ctx).Session(&gorm.Session{AllowGlobalUpdate: true}).Select("unread_count", "latest_msg", "latest_msg_send_time", "draft_text", "draft_text_time").Updates(c)
+ if t.RowsAffected == 0 {
+ return utils.Wrap(errors.New("RowsAffected == 0"), "no update")
+ }
+ return utils.Wrap(t.Error, "ResetConversation failed")
+}
+
+// Clear the conversation, which is used to delete the conversation history message and clear the conversation at the same time.
+// The GetAllConversation or GetConversationListSplit interface can still be obtained,
+// but there is no latest message.
+func (d *DataBase) ClearConversation(ctx context.Context, conversationID string) error {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ c := model_struct.LocalConversation{ConversationID: conversationID, UnreadCount: 0, LatestMsg: "", DraftText: "", DraftTextTime: 0}
+ t := d.conn.WithContext(ctx).Select("unread_count", "latest_msg", "draft_text", "draft_text_time").Updates(c)
+ if t.RowsAffected == 0 {
+ return utils.Wrap(errors.New("RowsAffected == 0"), "no update")
+ }
+ return utils.Wrap(t.Error, "ClearConversation failed")
+}
+
+func (d *DataBase) SetConversationDraftDB(ctx context.Context, conversationID, draftText string) error {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ nowTime := utils.GetCurrentTimestampByMill()
+ t := d.conn.WithContext(ctx).Exec("update local_conversations set draft_text=?,draft_text_time=?,latest_msg_send_time=case when latest_msg_send_time=? then ? else latest_msg_send_time end where conversation_id=?",
+ draftText, nowTime, 0, nowTime, conversationID)
+ if t.RowsAffected == 0 {
+ return utils.Wrap(errors.New("RowsAffected == 0"), "no update")
+ }
+ return utils.Wrap(t.Error, "SetConversationDraft failed")
+}
+func (d *DataBase) RemoveConversationDraft(ctx context.Context, conversationID, draftText string) error {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ c := model_struct.LocalConversation{ConversationID: conversationID, DraftText: draftText, DraftTextTime: 0}
+ t := d.conn.WithContext(ctx).Select("draft_text", "draft_text_time").Updates(c)
+ if t.RowsAffected == 0 {
+ return utils.Wrap(errors.New("RowsAffected == 0"), "no update")
+ }
+ return utils.Wrap(t.Error, "RemoveConversationDraft failed")
+}
+func (d *DataBase) UnPinConversation(ctx context.Context, conversationID string, isPinned int) error {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ t := d.conn.WithContext(ctx).Exec("update local_conversations set is_pinned=?,draft_text_time=case when draft_text=? then ? else draft_text_time end where conversation_id=?",
+ isPinned, "", 0, conversationID)
+ if t.RowsAffected == 0 {
+ return utils.Wrap(errors.New("RowsAffected == 0"), "no update")
+ }
+ return utils.Wrap(t.Error, "UnPinConversation failed")
+}
+
+func (d *DataBase) UpdateColumnsConversation(ctx context.Context, conversationID string, args map[string]interface{}) error {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ t := d.conn.WithContext(ctx).Model(model_struct.LocalConversation{ConversationID: conversationID}).Updates(args)
+ if t.RowsAffected == 0 {
+ return utils.Wrap(errs.ErrRecordNotFound, "no update")
+ }
+ return utils.Wrap(t.Error, "UpdateColumnsConversation failed")
+}
+func (d *DataBase) UpdateAllConversation(ctx context.Context, conversation *model_struct.LocalConversation) error {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ if conversation.ConversationID != "" {
+ return utils.Wrap(errors.New("not update all conversation"), "UpdateAllConversation failed")
+ }
+ t := d.conn.WithContext(ctx).Model(conversation).Updates(conversation)
+ if t.RowsAffected == 0 {
+ return utils.Wrap(errors.New("RowsAffected == 0"), "no update")
+ }
+ return utils.Wrap(t.Error, "UpdateColumnsConversation failed")
+}
+func (d *DataBase) IncrConversationUnreadCount(ctx context.Context, conversationID string) error {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ c := model_struct.LocalConversation{ConversationID: conversationID}
+ t := d.conn.WithContext(ctx).Model(&c).Update("unread_count", gorm.Expr("unread_count+?", 1))
+ if t.RowsAffected == 0 {
+ return utils.Wrap(errors.New("RowsAffected == 0"), "no update")
+ }
+ return utils.Wrap(t.Error, "IncrConversationUnreadCount failed")
+}
+func (d *DataBase) GetTotalUnreadMsgCountDB(ctx context.Context) (totalUnreadCount int32, err error) {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ var result []int64
+ err = d.conn.WithContext(ctx).Model(&model_struct.LocalConversation{}).Where("recv_msg_opt < ? and latest_msg_send_time > ?", constant.ReceiveNotNotifyMessage, 0).Pluck("unread_count", &result).Error
+ if err != nil {
+ return totalUnreadCount, utils.Wrap(errors.New("GetTotalUnreadMsgCount err"), "GetTotalUnreadMsgCount err")
+ }
+ for _, v := range result {
+ totalUnreadCount += int32(v)
+ }
+ return totalUnreadCount, nil
+}
+
+func (d *DataBase) SetMultipleConversationRecvMsgOpt(ctx context.Context, conversationIDList []string, opt int) (err error) {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ t := d.conn.WithContext(ctx).Model(&model_struct.LocalConversation{}).Where("conversation_id IN ?", conversationIDList).Updates(map[string]interface{}{"recv_msg_opt": opt})
+ if t.RowsAffected == 0 {
+ return utils.Wrap(errors.New("RowsAffected == 0"), "no update")
+ }
+ return utils.Wrap(t.Error, "SetMultipleConversationRecvMsgOpt failed")
+}
+
+func (d *DataBase) GetMultipleConversationDB(ctx context.Context, conversationIDList []string) (result []*model_struct.LocalConversation, err error) {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ var conversationList []model_struct.LocalConversation
+ err = utils.Wrap(d.conn.WithContext(ctx).Where("conversation_id IN ?", conversationIDList).Find(&conversationList).Error, "GetMultipleConversation failed")
+ for _, v := range conversationList {
+ v1 := v
+ result = append(result, &v1)
+ }
+ return result, err
+}
+func (d *DataBase) DecrConversationUnreadCount(ctx context.Context, conversationID string, count int64) (err error) {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ tx := d.conn.WithContext(ctx).Begin()
+ c := model_struct.LocalConversation{ConversationID: conversationID}
+ t := tx.Model(&c).Update("unread_count", gorm.Expr("unread_count-?", count))
+ if t.Error != nil {
+ return utils.Wrap(errors.New("RowsAffected == 0"), "no update")
+ }
+ if err := tx.Where("conversation_id = ?",
+ conversationID).Take(&c).Error; err != nil {
+ tx.Rollback()
+ return utils.Wrap(errors.New("get conversation err"), "")
+ }
+ if c.UnreadCount < 0 {
+ log.ZWarn(ctx, "decr unread count < 0", nil, "conversationID", conversationID, "count", count)
+ if t = tx.Model(&c).Update("unread_count", 0); t.Error != nil {
+ tx.Rollback()
+ return utils.Wrap(errors.New("RowsAffected == 0"), "no update")
+ }
+ }
+ tx.Commit()
+ return nil
+}
+func (d *DataBase) SearchConversations(ctx context.Context, searchParam string) ([]*model_struct.LocalConversation, error) {
+ // Define the search condition based on the searchParam
+ condition := fmt.Sprintf("show_name like %q ", "%"+searchParam+"%")
+
+ var conversationList []model_struct.LocalConversation
+ err := d.conn.WithContext(ctx).Where(condition).Order("latest_msg_send_time DESC").Find(&conversationList).Error
+ var transfer []*model_struct.LocalConversation
+ for _, v := range conversationList {
+ v1 := v // Create a copy to avoid referencing the loop variable
+ transfer = append(transfer, &v1)
+ }
+
+ return transfer, utils.Wrap(err, "SearchConversation failed ")
+}
diff --git a/go/chao-sdk-core/pkg/db/conversation_unread_message_model.go b/go/chao-sdk-core/pkg/db/conversation_unread_message_model.go
new file mode 100644
index 0000000..33242cc
--- /dev/null
+++ b/go/chao-sdk-core/pkg/db/conversation_unread_message_model.go
@@ -0,0 +1,38 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build !js
+// +build !js
+
+package db
+
+import (
+ "context"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+)
+
+func (d *DataBase) BatchInsertConversationUnreadMessageList(ctx context.Context, messageList []*model_struct.LocalConversationUnreadMessage) error {
+ if messageList == nil {
+ return nil
+ }
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ return utils.Wrap(d.conn.WithContext(ctx).Create(messageList).Error, "BatchInsertConversationUnreadMessageList failed")
+}
+func (d *DataBase) DeleteConversationUnreadMessageList(ctx context.Context, conversationID string, sendTime int64) int64 {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ return d.conn.WithContext(ctx).Where("conversation_id = ? and send_time <= ?", conversationID, sendTime).Delete(&model_struct.LocalConversationUnreadMessage{}).RowsAffected
+}
diff --git a/go/chao-sdk-core/pkg/db/db_init.go b/go/chao-sdk-core/pkg/db/db_init.go
new file mode 100644
index 0000000..6f64d5b
--- /dev/null
+++ b/go/chao-sdk-core/pkg/db/db_init.go
@@ -0,0 +1,200 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build !js
+// +build !js
+
+package db
+
+import (
+ "context"
+ "errors"
+ "path/filepath"
+ "sync"
+ "time"
+
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/version"
+
+ "github.com/openimsdk/tools/errs"
+ "github.com/openimsdk/tools/log"
+ "gorm.io/driver/sqlite"
+ "gorm.io/gorm"
+ "gorm.io/gorm/logger"
+)
+
+type DataBase struct {
+ loginUserID string
+ dbDir string
+ conn *gorm.DB
+ mRWMutex sync.RWMutex
+ groupMtx sync.RWMutex
+ friendMtx sync.RWMutex
+ userMtx sync.RWMutex
+ versionMtx sync.RWMutex
+ superGroupMtx sync.RWMutex
+}
+
+func (d *DataBase) GetMultipleMessageReactionExtension(ctx context.Context, msgIDList []string) (result []*model_struct.LocalChatLogReactionExtensions, err error) {
+ // TODO implement me
+ panic("implement me")
+}
+
+func (d *DataBase) InitSuperLocalErrChatLog(ctx context.Context, groupID string) {
+ panic("implement me")
+}
+
+func (d *DataBase) InitSuperLocalChatLog(ctx context.Context, groupID string) {
+ panic("implement me")
+}
+
+func (d *DataBase) SetChatLogFailedStatus(ctx context.Context) {
+ panic("implement me")
+}
+
+func (d *DataBase) InitDB(ctx context.Context, userID string, dataDir string) error {
+ panic("implement me")
+}
+
+func (d *DataBase) Close(ctx context.Context) error {
+ dbConn, err := d.conn.WithContext(ctx).DB()
+ if err != nil {
+ return err
+ } else {
+ if dbConn != nil {
+ err := dbConn.Close()
+ if err != nil {
+ return err
+ }
+ }
+ }
+ return nil
+}
+
+func NewDataBase(ctx context.Context, loginUserID string, dbDir string, logLevel int) (*DataBase, error) {
+ dataBase := &DataBase{loginUserID: loginUserID, dbDir: dbDir}
+ err := dataBase.initDB(ctx, logLevel)
+ if err != nil {
+ return dataBase, utils.Wrap(err, "initDB failed "+dbDir)
+ }
+ return dataBase, nil
+}
+
+func (d *DataBase) initDB(ctx context.Context, logLevel int) error {
+ var zLogLevel logger.LogLevel
+ if d.loginUserID == "" {
+ return errors.New("no uid")
+ }
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+
+ path := d.dbDir + "/OpenIM_" + constant.BigVersion + "_" + d.loginUserID + ".db"
+ dbFileName, err := filepath.Abs(path)
+ if err != nil {
+ return err
+ }
+ log.ZInfo(ctx, "sqlite", "path", dbFileName)
+ // slowThreshold := 500
+ // sqlLogger := log.NewSqlLogger(logger.LogLevel(sdk_struct.SvrConf.LogLevel), true, time.Duration(slowThreshold)*time.Millisecond)
+ if logLevel > 5 {
+ zLogLevel = logger.Info
+ } else {
+ zLogLevel = logger.Silent
+ }
+ db, err := gorm.Open(sqlite.Open(dbFileName), &gorm.Config{Logger: log.NewSqlLogger(zLogLevel, false, time.Millisecond*200)})
+ if err != nil {
+ return utils.Wrap(err, "open db failed "+dbFileName)
+ }
+ log.ZDebug(ctx, "open db success", "db", db, "dbFileName", dbFileName)
+ sqlDB, err := db.DB()
+ if err != nil {
+ return utils.Wrap(err, "get sql db failed")
+ }
+
+ sqlDB.SetConnMaxLifetime(time.Hour * 1)
+ sqlDB.SetMaxOpenConns(3)
+ sqlDB.SetMaxIdleConns(2)
+ sqlDB.SetConnMaxIdleTime(time.Minute * 10)
+ d.conn = db
+
+ // base
+ if err = db.AutoMigrate(&model_struct.LocalAppSDKVersion{}); err != nil {
+ return err
+ }
+
+ if err = d.versionDataMigrate(ctx); err != nil {
+ return err
+ }
+
+ //if err := db.Table(constant.SuperGroupTableName).AutoMigrate(superGroup); err != nil {
+ // return err
+ //}
+
+ return nil
+}
+
+func (d *DataBase) versionDataMigrate(ctx context.Context) error {
+ verModel, err := d.GetAppSDKVersion(ctx)
+ if errs.Unwrap(err) == gorm.ErrRecordNotFound {
+ err = d.conn.AutoMigrate(
+ &model_struct.LocalAppSDKVersion{},
+ &model_struct.LocalFriend{},
+ &model_struct.LocalFriendRequest{},
+ &model_struct.LocalGroup{},
+ &model_struct.LocalGroupMember{},
+ &model_struct.LocalGroupRequest{},
+ &model_struct.LocalErrChatLog{},
+ &model_struct.LocalUser{},
+ &model_struct.LocalBlack{},
+ &model_struct.LocalConversation{},
+ &model_struct.NotificationSeqs{},
+ &model_struct.LocalChatLog{},
+ &model_struct.LocalAdminGroupRequest{},
+ &model_struct.LocalWorkMomentsNotification{},
+ &model_struct.LocalWorkMomentsNotificationUnreadCount{},
+ &model_struct.TempCacheLocalChatLog{},
+ &model_struct.LocalChatLogReactionExtensions{},
+ &model_struct.LocalUpload{},
+ &model_struct.LocalStranger{},
+ &model_struct.LocalSendingMessages{},
+ &model_struct.LocalUserCommand{},
+ &model_struct.LocalVersionSync{},
+ )
+ if err != nil {
+ return err
+ }
+ err = d.SetAppSDKVersion(ctx, &model_struct.LocalAppSDKVersion{Version: version.Version})
+ if err != nil {
+ return err
+ }
+
+ return nil
+ } else if err != nil {
+ return err
+ }
+ if verModel.Version != version.Version {
+ switch version.Version {
+ case "3.8.0":
+ d.conn.AutoMigrate(&model_struct.LocalAppSDKVersion{})
+ }
+ err = d.SetAppSDKVersion(ctx, &model_struct.LocalAppSDKVersion{Version: version.Version})
+ if err != nil {
+ return err
+ }
+ }
+
+ return nil
+}
diff --git a/go/chao-sdk-core/pkg/db/db_interface/databse.go b/go/chao-sdk-core/pkg/db/db_interface/databse.go
new file mode 100644
index 0000000..c2b9dd2
--- /dev/null
+++ b/go/chao-sdk-core/pkg/db/db_interface/databse.go
@@ -0,0 +1,304 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package db_interface
+
+import (
+ "context"
+
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/sdk_struct"
+)
+
+type GroupModel interface {
+ InsertGroup(ctx context.Context, groupInfo *model_struct.LocalGroup) error
+ DeleteGroup(ctx context.Context, groupID string) error
+ UpdateGroup(ctx context.Context, groupInfo *model_struct.LocalGroup) error
+ BatchInsertGroup(ctx context.Context, groupList []*model_struct.LocalGroup) error
+ DeleteAllGroup(ctx context.Context) error
+ GetJoinedGroupListDB(ctx context.Context) ([]*model_struct.LocalGroup, error)
+ GetGroups(ctx context.Context, groupIDs []string) ([]*model_struct.LocalGroup, error)
+ GetGroupInfoByGroupID(ctx context.Context, groupID string) (*model_struct.LocalGroup, error)
+ GetAllGroupInfoByGroupIDOrGroupName(ctx context.Context, keyword string, isSearchGroupID bool, isSearchGroupName bool) ([]*model_struct.LocalGroup, error)
+ AddMemberCount(ctx context.Context, groupID string) error
+ SubtractMemberCount(ctx context.Context, groupID string) error
+ GetJoinedWorkingGroupIDList(ctx context.Context) ([]string, error)
+ GetJoinedWorkingGroupList(ctx context.Context) ([]*model_struct.LocalGroup, error)
+ GetUserJoinedGroupIDs(ctx context.Context, userID string) ([]string, error)
+
+ InsertAdminGroupRequest(ctx context.Context, groupRequest *model_struct.LocalAdminGroupRequest) error
+ DeleteAdminGroupRequest(ctx context.Context, groupID, userID string) error
+ UpdateAdminGroupRequest(ctx context.Context, groupRequest *model_struct.LocalAdminGroupRequest) error
+ GetAdminGroupApplication(ctx context.Context) ([]*model_struct.LocalAdminGroupRequest, error)
+ InsertGroupRequest(ctx context.Context, groupRequest *model_struct.LocalGroupRequest) error
+ DeleteGroupRequest(ctx context.Context, groupID, userID string) error
+ UpdateGroupRequest(ctx context.Context, groupRequest *model_struct.LocalGroupRequest) error
+ GetSendGroupApplication(ctx context.Context) ([]*model_struct.LocalGroupRequest, error)
+ InsertSuperGroup(ctx context.Context, groupInfo *model_struct.LocalGroup) error
+ DeleteAllSuperGroup(ctx context.Context) error
+ GetSuperGroupInfoByGroupID(ctx context.Context, groupID string) (*model_struct.LocalGroup, error)
+ UpdateSuperGroup(ctx context.Context, groupInfo *model_struct.LocalGroup) error
+ DeleteSuperGroup(ctx context.Context, groupID string) error
+ GetGroupMemberInfoByGroupIDUserID(ctx context.Context, groupID, userID string) (*model_struct.LocalGroupMember, error)
+ GetAllGroupMemberList(ctx context.Context) ([]model_struct.LocalGroupMember, error)
+ GetAllGroupMemberUserIDList(ctx context.Context) ([]model_struct.LocalGroupMember, error)
+ GetGroupMemberCount(ctx context.Context, groupID string) (int32, error)
+ GetGroupSomeMemberInfo(ctx context.Context, groupID string, userIDList []string) ([]*model_struct.LocalGroupMember, error)
+ GetGroupAdminID(ctx context.Context, groupID string) ([]string, error)
+ GetGroupMemberListByGroupID(ctx context.Context, groupID string) ([]*model_struct.LocalGroupMember, error)
+ GetGroupMemberListSplit(ctx context.Context, groupID string, filter int32, offset, count int) ([]*model_struct.LocalGroupMember, error)
+ GetGroupMemberListByUserIDs(ctx context.Context, groupID string, filter int32, userIDs []string) ([]*model_struct.LocalGroupMember, error)
+ GetGroupMemberOwnerAndAdminDB(ctx context.Context, groupID string) ([]*model_struct.LocalGroupMember, error)
+ GetGroupMemberOwner(ctx context.Context, groupID string) (*model_struct.LocalGroupMember, error)
+ GetGroupMemberListSplitByJoinTimeFilter(ctx context.Context, groupID string, offset, count int, joinTimeBegin, joinTimeEnd int64, userIDList []string) ([]*model_struct.LocalGroupMember, error)
+ GetGroupOwnerAndAdminByGroupID(ctx context.Context, groupID string) ([]*model_struct.LocalGroupMember, error)
+ GetGroupMemberUIDListByGroupID(ctx context.Context, groupID string) (result []string, err error)
+ GetGroupMemberAllGroupIDs(ctx context.Context) ([]string, error)
+ InsertGroupMember(ctx context.Context, groupMember *model_struct.LocalGroupMember) error
+ BatchInsertGroupMember(ctx context.Context, groupMemberList []*model_struct.LocalGroupMember) error
+ DeleteGroupMember(ctx context.Context, groupID, userID string) error
+ DeleteGroupAllMembers(ctx context.Context, groupID string) error
+ UpdateGroupMember(ctx context.Context, groupMember *model_struct.LocalGroupMember) error
+ UpdateGroupMemberField(ctx context.Context, groupID, userID string, args map[string]interface{}) error
+ GetGroupMemberInfoIfOwnerOrAdmin(ctx context.Context) ([]*model_struct.LocalGroupMember, error)
+ SearchGroupMembersDB(ctx context.Context, keyword string, groupID string, isSearchMemberNickname, isSearchUserID bool, offset, count int) (result []*model_struct.LocalGroupMember, err error)
+}
+
+type MessageModel interface {
+ BatchInsertMessageList(ctx context.Context, conversationID string, MessageList []*model_struct.LocalChatLog) error
+ // BatchInsertMessageListController(ctx context.Context, MessageList []*model_struct.LocalChatLog) error
+ InsertMessage(ctx context.Context, conversationID string, Message *model_struct.LocalChatLog) error
+ // InsertMessageController(ctx context.Context, message *model_struct.LocalChatLog) error
+ SearchMessageByKeyword(ctx context.Context, contentType []int, keywordList []string, keywordListMatchType int, conversationID string, startTime, endTime int64, offset, count int) (result []*model_struct.LocalChatLog, err error)
+ // SearchMessageByKeywordController(ctx context.Context, contentType []int, keywordList []string, keywordListMatchType int, sourceID string, startTime, endTime int64, sessionType, offset, count int) (result []*model_struct.LocalChatLog, err error)
+ SearchMessageByContentType(ctx context.Context, contentType []int, conversationID string, startTime, endTime int64, offset, count int) (result []*model_struct.LocalChatLog, err error)
+ // SearchMessageByContentTypeController(ctx context.Context, contentType []int, sourceID string, startTime, endTime int64, sessionType, offset, count int) (result []*model_struct.LocalChatLog, err error)
+ SearchMessageByContentTypeAndKeyword(ctx context.Context, contentType []int, conversationID string, keywordList []string, keywordListMatchType int, startTime, endTime int64) (result []*model_struct.LocalChatLog, err error)
+ MessageIfExists(ctx context.Context, ClientMsgID string) (bool, error)
+ IsExistsInErrChatLogBySeq(ctx context.Context, seq int64) bool
+ MessageIfExistsBySeq(ctx context.Context, seq int64) (bool, error)
+ GetMessage(ctx context.Context, conversationID, clientMsgID string) (*model_struct.LocalChatLog, error)
+ GetMessageBySeq(ctx context.Context, conversationID string, seq int64) (*model_struct.LocalChatLog, error)
+ // GetMessageController(ctx context.Context, conversationID, clientMsgID string) (*model_struct.LocalChatLog, error)
+ UpdateColumnsMessageList(ctx context.Context, clientMsgIDList []string, args map[string]interface{}) error
+ UpdateColumnsMessage(ctx context.Context, conversationID string, ClientMsgID string, args map[string]interface{}) error
+ // UpdateColumnsMessageController(ctx context.Context, ClientMsgID string, groupID string, sessionType int32, args map[string]interface{}) error
+ UpdateMessage(ctx context.Context, conversationID string, c *model_struct.LocalChatLog) error
+ UpdateMessageBySeq(ctx context.Context, conversationID string, c *model_struct.LocalChatLog) error
+ // UpdateMessageController(ctx context.Context, c *model_struct.LocalChatLog) error
+ DeleteAllMessage(ctx context.Context) error
+ UpdateMessageStatusBySourceID(ctx context.Context, sourceID string, status, sessionType int32) error
+ // UpdateMessageStatusBySourceIDController(ctx context.Context, sourceID string, status, sessionType int32) error
+ UpdateMessageTimeAndStatus(ctx context.Context, conversationID, clientMsgID string, serverMsgID string, sendTime int64, status int32) error
+ // UpdateMessageTimeAndStatusController(ctx context.Context, msg *sdk_struct.MsgStruct) error
+ GetMessageList(ctx context.Context, conversationID string, count int, startTime int64, isReverse bool) (result []*model_struct.LocalChatLog, err error)
+ // GetMessageListController(ctx context.Context, sourceID string, sessionType, count int, startTime int64, isReverse bool) (result []*model_struct.LocalChatLog, err error)
+ GetMessageListNoTime(ctx context.Context, conversationID string, count int, isReverse bool) (result []*model_struct.LocalChatLog, err error)
+ // GetMessageListNoTimeController(ctx context.Context, sourceID string, sessionType, count int, isReverse bool) (result []*model_struct.LocalChatLog, err error)
+ MarkConversationMessageAsReadDB(ctx context.Context, conversationID string, msgIDs []string) (rowsAffected int64, err error)
+ MarkConversationMessageAsReadBySeqs(ctx context.Context, conversationID string, seqs []int64) (rowsAffected int64, err error)
+ GetUnreadMessage(ctx context.Context, conversationID string) (result []*model_struct.LocalChatLog, err error)
+ MarkConversationAllMessageAsRead(ctx context.Context, conversationID string) (rowsAffected int64, err error)
+ GetMessagesByClientMsgIDs(ctx context.Context, conversationID string, msgIDs []string) (result []*model_struct.LocalChatLog, err error)
+ GetMessagesBySeqs(ctx context.Context, conversationID string, seqs []int64) (result []*model_struct.LocalChatLog, err error)
+ GetConversationNormalMsgSeq(ctx context.Context, conversationID string) (int64, error)
+ GetConversationPeerNormalMsgSeq(ctx context.Context, conversationID string) (int64, error)
+
+ GetTestMessage(ctx context.Context, seq uint32) (*model_struct.LocalChatLog, error)
+ UpdateMsgSenderNickname(ctx context.Context, sendID, nickname string, sType int) error
+ UpdateMsgSenderFaceURL(ctx context.Context, sendID, faceURL string, sType int) error
+ // UpdateMsgSenderFaceURLAndSenderNicknameController(ctx context.Context, sendID, faceURL, nickname string, sessionType int) error
+ UpdateMsgSenderFaceURLAndSenderNickname(ctx context.Context, conversationID, sendID, faceURL, nickname string) error
+ GetMsgSeqByClientMsgID(ctx context.Context, clientMsgID string) (uint32, error)
+ // GetMsgSeqByClientMsgIDController(ctx context.Context, m *sdk_struct.MsgStruct) (uint32, error)
+ GetMsgSeqListByGroupID(ctx context.Context, groupID string) ([]uint32, error)
+ GetMsgSeqListByPeerUserID(ctx context.Context, userID string) ([]uint32, error)
+ GetMsgSeqListBySelfUserID(ctx context.Context, userID string) ([]uint32, error)
+ InitSuperLocalErrChatLog(ctx context.Context, groupID string)
+ SuperBatchInsertExceptionMsg(ctx context.Context, MessageList []*model_struct.LocalErrChatLog, groupID string) error
+ GetAbnormalMsgSeq(ctx context.Context) (int64, error)
+ GetAbnormalMsgSeqList(ctx context.Context) ([]int64, error)
+ BatchInsertExceptionMsg(ctx context.Context, MessageList []*model_struct.LocalErrChatLog) error
+ GetConversationAbnormalMsgSeq(ctx context.Context, groupID string) (int64, error)
+ BatchInsertTempCacheMessageList(ctx context.Context, MessageList []*model_struct.TempCacheLocalChatLog) error
+ InsertTempCacheMessage(ctx context.Context, Message *model_struct.TempCacheLocalChatLog) error
+ InitSuperLocalChatLog(ctx context.Context, groupID string)
+ SuperGroupBatchInsertMessageList(ctx context.Context, MessageList []*model_struct.LocalChatLog, groupID string) error
+ SuperGroupInsertMessage(ctx context.Context, Message *model_struct.LocalChatLog, groupID string) error
+ SuperGroupDeleteAllMessage(ctx context.Context, groupID string) error
+ DeleteConversationAllMessages(ctx context.Context, conversationID string) error
+ MarkDeleteConversationAllMessages(ctx context.Context, conversationID string) error
+ SuperGroupSearchMessageByKeyword(ctx context.Context, contentType []int, keywordList []string, keywordListMatchType int, sourceID string, startTime, endTime int64, sessionType, offset, count int) (result []*model_struct.LocalChatLog, err error)
+ // SuperGroupSearchMessageByContentType(ctx context.Context, contentType []int, sourceID string, startTime, endTime int64, sessionType, offset, count int) (result []*model_struct.LocalChatLog, err error)
+ SuperGroupSearchMessageByContentTypeAndKeyword(ctx context.Context, contentType []int, keywordList []string, keywordListMatchType int, startTime, endTime int64, groupID string) (result []*model_struct.LocalChatLog, err error)
+
+ SuperGroupBatchUpdateMessageList(ctx context.Context, MessageList []*model_struct.LocalChatLog) error
+ SuperGroupMessageIfExists(ctx context.Context, ClientMsgID string) (bool, error)
+ SuperGroupIsExistsInErrChatLogBySeq(ctx context.Context, seq int64) bool
+ SuperGroupMessageIfExistsBySeq(ctx context.Context, seq int64) (bool, error)
+ SuperGroupGetMessage(ctx context.Context, msg *sdk_struct.MsgStruct) (*model_struct.LocalChatLog, error)
+ SuperGroupGetAllUnDeleteMessageSeqList(ctx context.Context) ([]uint32, error)
+ SuperGroupUpdateColumnsMessage(ctx context.Context, ClientMsgID, groupID string, args map[string]interface{}) error
+ SuperGroupUpdateMessage(ctx context.Context, c *model_struct.LocalChatLog) error
+ SuperGroupUpdateMessageStatusBySourceID(ctx context.Context, sourceID string, status, sessionType int32) error
+ SuperGroupUpdateMessageTimeAndStatus(ctx context.Context, msg *sdk_struct.MsgStruct) error
+ SuperGroupGetMessageList(ctx context.Context, sourceID string, sessionType, count int, startTime int64, isReverse bool) (result []*model_struct.LocalChatLog, err error)
+ SuperGroupGetMessageListNoTime(ctx context.Context, sourceID string, sessionType, count int, isReverse bool) (result []*model_struct.LocalChatLog, err error)
+ SuperGroupGetSendingMessageList(ctx context.Context, groupID string) (result []*model_struct.LocalChatLog, err error)
+ SuperGroupUpdateGroupMessageHasRead(ctx context.Context, msgIDList []string, groupID string) error
+ // SuperGroupUpdateGroupMessageFields(ctx context.Context, msgIDList []string, groupID string, args map[string]interface{}) error
+
+ SuperGroupUpdateMsgSenderNickname(ctx context.Context, sendID, nickname string, sType int) error
+ SuperGroupUpdateMsgSenderFaceURL(ctx context.Context, sendID, faceURL string, sType int) error
+ SuperGroupUpdateMsgSenderFaceURLAndSenderNickname(ctx context.Context, sendID, faceURL, nickname string, sessionType int, groupID string) error
+ SuperGroupGetMsgSeqByClientMsgID(ctx context.Context, clientMsgID string, groupID string) (uint32, error)
+ SuperGroupGetMsgSeqListByGroupID(ctx context.Context, groupID string) ([]uint32, error)
+ SuperGroupGetMsgSeqListByPeerUserID(ctx context.Context, userID string) ([]uint32, error)
+ SuperGroupGetMsgSeqListBySelfUserID(ctx context.Context, userID string) ([]uint32, error)
+ GetAlreadyExistSeqList(ctx context.Context, conversationID string, lostSeqList []int64) (seqList []int64, err error)
+
+ BatchInsertConversationUnreadMessageList(ctx context.Context, messageList []*model_struct.LocalConversationUnreadMessage) error
+ DeleteConversationUnreadMessageList(ctx context.Context, conversationID string, sendTime int64) int64
+ DeleteConversationMsgs(ctx context.Context, conversationID string, msgIDs []string) error
+ // DeleteConversationMsgsBySeqs(ctx context.Context, conversationID string, seqs []int64) error
+ SetNotificationSeq(ctx context.Context, conversationID string, seq int64) error
+ GetNotificationAllSeqs(ctx context.Context) ([]*model_struct.NotificationSeqs, error)
+}
+
+type ConversationModel interface {
+ GetConversationByUserID(ctx context.Context, userID string) (*model_struct.LocalConversation, error)
+ GetAllConversationListDB(ctx context.Context) ([]*model_struct.LocalConversation, error)
+ GetHiddenConversationList(ctx context.Context) ([]*model_struct.LocalConversation, error)
+ GetAllConversations(ctx context.Context) ([]*model_struct.LocalConversation, error)
+ GetAllSingleConversationIDList(ctx context.Context) (result []string, err error)
+ GetAllConversationIDList(ctx context.Context) (result []string, err error)
+ GetConversationListSplitDB(ctx context.Context, offset, count int) ([]*model_struct.LocalConversation, error)
+ BatchInsertConversationList(ctx context.Context, conversationList []*model_struct.LocalConversation) error
+ UpdateOrCreateConversations(ctx context.Context, conversationList []*model_struct.LocalConversation) error
+ InsertConversation(ctx context.Context, conversationList *model_struct.LocalConversation) error
+ DeleteConversation(ctx context.Context, conversationID string) error
+ GetConversation(ctx context.Context, conversationID string) (*model_struct.LocalConversation, error)
+ UpdateConversation(ctx context.Context, c *model_struct.LocalConversation) error
+ UpdateConversationForSync(ctx context.Context, c *model_struct.LocalConversation) error
+ BatchUpdateConversationList(ctx context.Context, conversationList []*model_struct.LocalConversation) error
+ ConversationIfExists(ctx context.Context, conversationID string) (bool, error)
+ ResetConversation(ctx context.Context, conversationID string) error
+ ResetAllConversation(ctx context.Context) error
+ ClearConversation(ctx context.Context, conversationID string) error
+ SetConversationDraftDB(ctx context.Context, conversationID, draftText string) error
+ RemoveConversationDraft(ctx context.Context, conversationID, draftText string) error
+ UnPinConversation(ctx context.Context, conversationID string, isPinned int) error
+ UpdateColumnsConversation(ctx context.Context, conversationID string, args map[string]interface{}) error
+ UpdateAllConversation(ctx context.Context, conversation *model_struct.LocalConversation) error
+ IncrConversationUnreadCount(ctx context.Context, conversationID string) error
+ DecrConversationUnreadCount(ctx context.Context, conversationID string, count int64) (err error)
+ GetTotalUnreadMsgCountDB(ctx context.Context) (totalUnreadCount int32, err error)
+ SetMultipleConversationRecvMsgOpt(ctx context.Context, conversationIDList []string, opt int) (err error)
+ GetMultipleConversationDB(ctx context.Context, conversationIDList []string) (result []*model_struct.LocalConversation, err error)
+ SearchAllMessageByContentType(ctx context.Context, conversationID string, contentType int) ([]*model_struct.LocalChatLog, error)
+ SuperGroupSearchAllMessageByContentType(ctx context.Context, superGroupID string, contentType int32) ([]*model_struct.LocalChatLog, error)
+ SearchConversations(ctx context.Context, searchParam string) ([]*model_struct.LocalConversation, error)
+}
+
+type UserModel interface {
+ GetLoginUser(ctx context.Context, userID string) (*model_struct.LocalUser, error)
+ UpdateLoginUser(ctx context.Context, user *model_struct.LocalUser) error
+ UpdateLoginUserByMap(ctx context.Context, user *model_struct.LocalUser, args map[string]interface{}) error
+ InsertLoginUser(ctx context.Context, user *model_struct.LocalUser) error
+ GetStrangerInfo(ctx context.Context, userIDs []string) ([]*model_struct.LocalStranger, error)
+ SetStrangerInfo(ctx context.Context, localStrangerList []*model_struct.LocalStranger) error
+ ProcessUserCommandAdd(ctx context.Context, command *model_struct.LocalUserCommand) error
+ ProcessUserCommandUpdate(ctx context.Context, command *model_struct.LocalUserCommand) error
+ ProcessUserCommandDelete(ctx context.Context, command *model_struct.LocalUserCommand) error
+ ProcessUserCommandGetAll(ctx context.Context) ([]*model_struct.LocalUserCommand, error)
+}
+
+type FriendModel interface {
+ InsertFriend(ctx context.Context, friend *model_struct.LocalFriend) error
+ DeleteFriendDB(ctx context.Context, friendUserID string) error
+ GetFriendListCount(ctx context.Context) (int64, error)
+ UpdateFriend(ctx context.Context, friend *model_struct.LocalFriend) error
+ GetAllFriendList(ctx context.Context) ([]*model_struct.LocalFriend, error)
+ GetPageFriendList(ctx context.Context, offset, count int) ([]*model_struct.LocalFriend, error)
+ BatchInsertFriend(ctx context.Context, friendList []*model_struct.LocalFriend) error
+ DeleteAllFriend(ctx context.Context) error
+
+ SearchFriendList(ctx context.Context, keyword string, isSearchUserID, isSearchNickname, isSearchRemark bool) ([]*model_struct.LocalFriend, error)
+ GetFriendInfoByFriendUserID(ctx context.Context, FriendUserID string) (*model_struct.LocalFriend, error)
+ GetFriendInfoList(ctx context.Context, friendUserIDList []string) ([]*model_struct.LocalFriend, error)
+ InsertFriendRequest(ctx context.Context, friendRequest *model_struct.LocalFriendRequest) error
+ DeleteFriendRequestBothUserID(ctx context.Context, fromUserID, toUserID string) error
+ UpdateFriendRequest(ctx context.Context, friendRequest *model_struct.LocalFriendRequest) error
+ GetRecvFriendApplication(ctx context.Context) ([]*model_struct.LocalFriendRequest, error)
+ GetSendFriendApplication(ctx context.Context) ([]*model_struct.LocalFriendRequest, error)
+ GetFriendApplicationByBothID(ctx context.Context, fromUserID, toUserID string) (*model_struct.LocalFriendRequest, error)
+ GetBothFriendReq(ctx context.Context, fromUserID, toUserID string) ([]*model_struct.LocalFriendRequest, error)
+ UpdateColumnsFriend(ctx context.Context, friendIDs []string, args map[string]interface{}) error
+
+ GetBlackListDB(ctx context.Context) ([]*model_struct.LocalBlack, error)
+ GetBlackListUserID(ctx context.Context) (blackListUid []string, err error)
+ GetBlackInfoByBlockUserID(ctx context.Context, blockUserID string) (*model_struct.LocalBlack, error)
+ GetBlackInfoList(ctx context.Context, blockUserIDList []string) ([]*model_struct.LocalBlack, error)
+ InsertBlack(ctx context.Context, black *model_struct.LocalBlack) error
+ UpdateBlack(ctx context.Context, black *model_struct.LocalBlack) error
+ DeleteBlack(ctx context.Context, blockUserID string) error
+}
+
+type ReactionModel interface {
+ GetMessageReactionExtension(ctx context.Context, msgID string) (result *model_struct.LocalChatLogReactionExtensions, err error)
+ InsertMessageReactionExtension(ctx context.Context, messageReactionExtension *model_struct.LocalChatLogReactionExtensions) error
+ UpdateMessageReactionExtension(ctx context.Context, c *model_struct.LocalChatLogReactionExtensions) error
+ // GetAndUpdateMessageReactionExtension(ctx context.Context, msgID string, m map[string]*sdkws.KeyValue) error
+ // DeleteAndUpdateMessageReactionExtension(ctx context.Context, msgID string, m map[string]*sdkws.KeyValue) error
+ GetMultipleMessageReactionExtension(ctx context.Context, msgIDList []string) (result []*model_struct.LocalChatLogReactionExtensions, err error)
+ DeleteMessageReactionExtension(ctx context.Context, msgID string) error
+}
+
+type S3Model interface {
+ GetUpload(ctx context.Context, partHash string) (*model_struct.LocalUpload, error)
+ InsertUpload(ctx context.Context, upload *model_struct.LocalUpload) error
+ DeleteUpload(ctx context.Context, partHash string) error
+ UpdateUpload(ctx context.Context, upload *model_struct.LocalUpload) error
+ DeleteExpireUpload(ctx context.Context) error
+}
+type SendingMessagesModel interface {
+ InsertSendingMessage(ctx context.Context, message *model_struct.LocalSendingMessages) error
+ DeleteSendingMessage(ctx context.Context, conversationID, clientMsgID string) error
+ GetAllSendingMessages(ctx context.Context) (friendRequests []*model_struct.LocalSendingMessages, err error)
+}
+
+type VersionSyncModel interface {
+ GetVersionSync(ctx context.Context, tableName, entityID string) (*model_struct.LocalVersionSync, error)
+ SetVersionSync(ctx context.Context, version *model_struct.LocalVersionSync) error
+ DeleteVersionSync(ctx context.Context, tableName, entityID string) error
+}
+type AppSDKVersion interface {
+ GetAppSDKVersion(ctx context.Context) (*model_struct.LocalAppSDKVersion, error)
+ SetAppSDKVersion(ctx context.Context, version *model_struct.LocalAppSDKVersion) error
+}
+
+type DataBase interface {
+ Close(ctx context.Context) error
+ InitDB(ctx context.Context, userID string, dataDir string) error
+ GroupModel
+ MessageModel
+ ConversationModel
+ UserModel
+ FriendModel
+ ReactionModel
+ S3Model
+ SendingMessagesModel
+ VersionSyncModel
+ AppSDKVersion
+}
diff --git a/go/chao-sdk-core/pkg/db/db_js.go b/go/chao-sdk-core/pkg/db/db_js.go
new file mode 100644
index 0000000..772e319
--- /dev/null
+++ b/go/chao-sdk-core/pkg/db/db_js.go
@@ -0,0 +1,87 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package db
+
+import (
+ "context"
+ "errors"
+ "github.com/openimsdk/openim-sdk-core/v3/wasm/exec"
+ "github.com/openimsdk/openim-sdk-core/v3/wasm/indexdb"
+)
+
+var ErrType = errors.New("from javascript data type err")
+
+type IndexDB struct {
+ *indexdb.LocalUsers
+ *indexdb.LocalConversations
+ *indexdb.LocalChatLogs
+ *indexdb.LocalSuperGroupChatLogs
+ *indexdb.LocalSuperGroup
+ *indexdb.LocalConversationUnreadMessages
+ *indexdb.LocalGroups
+ *indexdb.LocalGroupMember
+ *indexdb.LocalCacheMessage
+ *indexdb.FriendRequest
+ *indexdb.Black
+ *indexdb.Friend
+ *indexdb.LocalGroupRequest
+ *indexdb.LocalChatLogReactionExtensions
+ *indexdb.NotificationSeqs
+ *indexdb.LocalUpload
+ *indexdb.LocalStrangers
+ *indexdb.LocalSendingMessages
+ *indexdb.LocalUserCommand
+ loginUserID string
+}
+
+func (i IndexDB) Close(ctx context.Context) error {
+ _, err := exec.Exec()
+ return err
+}
+
+func (i IndexDB) InitDB(ctx context.Context, userID string, dataDir string) error {
+ _, err := exec.Exec(userID, dataDir)
+ return err
+}
+
+func NewDataBase(ctx context.Context, loginUserID string, dbDir string, logLevel int) (*IndexDB, error) {
+ i := &IndexDB{
+ LocalUsers: indexdb.NewLocalUsers(),
+ LocalConversations: indexdb.NewLocalConversations(),
+ LocalChatLogs: indexdb.NewLocalChatLogs(loginUserID),
+ LocalSuperGroupChatLogs: indexdb.NewLocalSuperGroupChatLogs(),
+ LocalSuperGroup: indexdb.NewLocalSuperGroup(),
+ LocalConversationUnreadMessages: indexdb.NewLocalConversationUnreadMessages(),
+ LocalGroups: indexdb.NewLocalGroups(),
+ LocalGroupMember: indexdb.NewLocalGroupMember(),
+ LocalCacheMessage: indexdb.NewLocalCacheMessage(),
+ FriendRequest: indexdb.NewFriendRequest(loginUserID),
+ Black: indexdb.NewBlack(loginUserID),
+ Friend: indexdb.NewFriend(loginUserID),
+ LocalGroupRequest: indexdb.NewLocalGroupRequest(),
+ LocalChatLogReactionExtensions: indexdb.NewLocalChatLogReactionExtensions(),
+ NotificationSeqs: indexdb.NewNotificationSeqs(),
+ LocalUpload: indexdb.NewLocalUpload(),
+ LocalStrangers: indexdb.NewLocalStrangers(),
+ LocalSendingMessages: indexdb.NewLocalSendingMessages(),
+ LocalUserCommand: indexdb.NewLocalUserCommand(),
+ loginUserID: loginUserID,
+ }
+ err := i.InitDB(ctx, loginUserID, dbDir)
+ if err != nil {
+ return nil, err
+ }
+ return i, nil
+}
diff --git a/go/chao-sdk-core/pkg/db/err_chat_log_model.go b/go/chao-sdk-core/pkg/db/err_chat_log_model.go
new file mode 100644
index 0000000..47d39c8
--- /dev/null
+++ b/go/chao-sdk-core/pkg/db/err_chat_log_model.go
@@ -0,0 +1,77 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build !js
+// +build !js
+
+package db
+
+import (
+ "context"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+)
+
+func (d *DataBase) initSuperLocalErrChatLog(ctx context.Context, groupID string) {
+ if !d.conn.WithContext(ctx).Migrator().HasTable(utils.GetErrTableName(groupID)) {
+ d.conn.WithContext(ctx).Table(utils.GetErrTableName(groupID)).AutoMigrate(&model_struct.LocalErrChatLog{})
+ }
+}
+func (d *DataBase) SuperBatchInsertExceptionMsg(ctx context.Context, MessageList []*model_struct.LocalErrChatLog, groupID string) error {
+ if MessageList == nil {
+ return nil
+ }
+ d.initSuperLocalErrChatLog(ctx, groupID)
+ return utils.Wrap(d.conn.WithContext(ctx).Table(utils.GetConversationTableName(groupID)).Create(MessageList).Error, "BatchInsertMessageList failed")
+}
+func (d *DataBase) GetAbnormalMsgSeq(ctx context.Context) (int64, error) {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ var seq int64
+ err := d.conn.WithContext(ctx).Model(model_struct.LocalErrChatLog{}).Select("IFNULL(max(seq),0)").Find(&seq).Error
+ return seq, utils.Wrap(err, "GetAbnormalMsgSeq")
+}
+func (d *DataBase) GetAbnormalMsgSeqList(ctx context.Context) ([]int64, error) {
+ var seqList []int64
+ err := d.conn.WithContext(ctx).Model(model_struct.LocalErrChatLog{}).Select("seq").Find(&seqList).Error
+ return seqList, utils.Wrap(err, "GetAbnormalMsgSeqList")
+}
+func (d *DataBase) BatchInsertExceptionMsg(ctx context.Context, messageList []*model_struct.LocalErrChatLog) error {
+ if messageList == nil {
+ return nil
+ }
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ return utils.Wrap(d.conn.WithContext(ctx).Create(messageList).Error, "BatchInsertMessageList failed")
+}
+func (d *DataBase) BatchInsertExceptionMsgController(ctx context.Context, messageList []*model_struct.LocalErrChatLog) error {
+ if len(messageList) == 0 {
+ return nil
+ }
+ switch messageList[len(messageList)-1].SessionType {
+ case constant.SuperGroupChatType:
+ return d.SuperBatchInsertExceptionMsg(ctx, messageList, messageList[len(messageList)-1].RecvID)
+ default:
+ return d.BatchInsertExceptionMsg(ctx, messageList)
+ }
+}
+func (d *DataBase) GetConversationAbnormalMsgSeq(ctx context.Context, conversationID string) (int64, error) {
+ var seq int64
+ if !d.conn.WithContext(ctx).Migrator().HasTable(utils.GetErrTableName(conversationID)) {
+ return 0, nil
+ }
+ err := d.conn.WithContext(ctx).Table(utils.GetErrTableName(conversationID)).Select("IFNULL(max(seq),0)").Find(&seq).Error
+ return seq, utils.Wrap(err, "GetConversationNormalMsgSeq")
+}
diff --git a/go/chao-sdk-core/pkg/db/friend_model.go b/go/chao-sdk-core/pkg/db/friend_model.go
new file mode 100644
index 0000000..f43c638
--- /dev/null
+++ b/go/chao-sdk-core/pkg/db/friend_model.go
@@ -0,0 +1,139 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build !js
+// +build !js
+
+package db
+
+import (
+ "context"
+ "errors"
+ "fmt"
+
+ "gorm.io/gorm"
+
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/tools/errs"
+)
+
+func (d *DataBase) InsertFriend(ctx context.Context, friend *model_struct.LocalFriend) error {
+ d.friendMtx.Lock()
+ defer d.friendMtx.Unlock()
+ return errs.WrapMsg(d.conn.WithContext(ctx).Create(friend).Error, "InsertFriend failed")
+}
+
+func (d *DataBase) DeleteFriendDB(ctx context.Context, friendUserID string) error {
+ d.friendMtx.Lock()
+ defer d.friendMtx.Unlock()
+ return errs.WrapMsg(d.conn.WithContext(ctx).Where("owner_user_id=? and friend_user_id=?", d.loginUserID, friendUserID).Delete(&model_struct.LocalFriend{}).Error, "DeleteFriend failed")
+}
+
+func (d *DataBase) GetFriendListCount(ctx context.Context) (int64, error) {
+ d.friendMtx.Lock()
+ defer d.friendMtx.Unlock()
+ var count int64
+ return count, errs.WrapMsg(d.conn.WithContext(ctx).Model(&model_struct.LocalFriend{}).Count(&count).Error, "GetFriendListCount failed")
+}
+
+func (d *DataBase) UpdateFriend(ctx context.Context, friend *model_struct.LocalFriend) error {
+ d.friendMtx.Lock()
+ defer d.friendMtx.Unlock()
+
+ t := d.conn.WithContext(ctx).Model(friend).Select("*").Updates(*friend)
+ if t.RowsAffected == 0 {
+ return errs.WrapMsg(errors.New("RowsAffected == 0"), "no update")
+ }
+ return errs.Wrap(t.Error)
+
+}
+func (d *DataBase) GetAllFriendList(ctx context.Context) ([]*model_struct.LocalFriend, error) {
+ d.friendMtx.Lock()
+ defer d.friendMtx.Unlock()
+ var friendList []*model_struct.LocalFriend
+ return friendList, errs.WrapMsg(d.conn.WithContext(ctx).Where("owner_user_id = ?", d.loginUserID).Find(&friendList).Error,
+ "GetFriendList failed")
+}
+
+func (d *DataBase) GetPageFriendList(ctx context.Context, offset, count int) ([]*model_struct.LocalFriend, error) {
+ d.friendMtx.Lock()
+ defer d.friendMtx.Unlock()
+ var friendList []*model_struct.LocalFriend
+ err := errs.WrapMsg(d.conn.WithContext(ctx).Where("owner_user_id = ?", d.loginUserID).Offset(offset).Limit(count).Order("name").Find(&friendList).Error,
+ "GetFriendList failed")
+ return friendList, err
+}
+
+func (d *DataBase) BatchInsertFriend(ctx context.Context, friendList []*model_struct.LocalFriend) error {
+ d.friendMtx.Lock()
+ defer d.friendMtx.Unlock()
+ if friendList == nil {
+ return errs.New("nil").Wrap()
+ }
+ return errs.WrapMsg(d.conn.WithContext(ctx).Create(friendList).Error, "BatchInsertFriendList failed")
+}
+
+func (d *DataBase) DeleteAllFriend(ctx context.Context) error {
+ d.friendMtx.Lock()
+ defer d.friendMtx.Unlock()
+ return errs.WrapMsg(d.conn.WithContext(ctx).Session(&gorm.Session{AllowGlobalUpdate: true}).Delete(&model_struct.LocalFriend{}).Error, "DeleteAllFriend failed")
+}
+
+func (d *DataBase) SearchFriendList(ctx context.Context, keyword string, isSearchUserID, isSearchNickname, isSearchRemark bool) ([]*model_struct.LocalFriend, error) {
+ d.friendMtx.Lock()
+ defer d.friendMtx.Unlock()
+ var count int
+ var friendList []*model_struct.LocalFriend
+ var condition string
+ if isSearchUserID {
+ condition = fmt.Sprintf("friend_user_id like %q ", "%"+keyword+"%")
+ count++
+ }
+ if isSearchNickname {
+ if count > 0 {
+ condition += "or "
+ }
+ condition += fmt.Sprintf("name like %q ", "%"+keyword+"%")
+ count++
+ }
+ if isSearchRemark {
+ if count > 0 {
+ condition += "or "
+ }
+ condition += fmt.Sprintf("remark like %q ", "%"+keyword+"%")
+ }
+ err := d.conn.WithContext(ctx).Where(condition).Order("create_time DESC").Find(&friendList).Error
+ return friendList, errs.WrapMsg(err, "SearchFriendList failed")
+}
+
+func (d *DataBase) GetFriendInfoByFriendUserID(ctx context.Context, FriendUserID string) (*model_struct.LocalFriend, error) {
+ d.friendMtx.Lock()
+ defer d.friendMtx.Unlock()
+ var friend model_struct.LocalFriend
+ return &friend, errs.WrapMsg(d.conn.WithContext(ctx).Where("owner_user_id = ? AND friend_user_id = ?",
+ d.loginUserID, FriendUserID).Take(&friend).Error, "GetFriendInfoByFriendUserID failed")
+}
+
+func (d *DataBase) GetFriendInfoList(ctx context.Context, friendUserIDList []string) ([]*model_struct.LocalFriend, error) {
+ d.friendMtx.Lock()
+ defer d.friendMtx.Unlock()
+ var friendList []*model_struct.LocalFriend
+ err := errs.WrapMsg(d.conn.WithContext(ctx).Where("friend_user_id IN ?", friendUserIDList).Find(&friendList).Error, "GetFriendInfoListByFriendUserID failed")
+ return friendList, err
+}
+func (d *DataBase) UpdateColumnsFriend(ctx context.Context, friendIDs []string, args map[string]interface{}) error {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ return errs.WrapMsg(d.conn.WithContext(ctx).Model(&model_struct.LocalFriend{}).Where("friend_user_id IN ?", friendIDs).Updates(args).Error, "UpdateColumnsFriend failed")
+}
diff --git a/go/chao-sdk-core/pkg/db/friend_request_model.go b/go/chao-sdk-core/pkg/db/friend_request_model.go
new file mode 100644
index 0000000..2bf0dbb
--- /dev/null
+++ b/go/chao-sdk-core/pkg/db/friend_request_model.go
@@ -0,0 +1,76 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build !js
+// +build !js
+
+package db
+
+import (
+ "context"
+ "errors"
+
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/tools/errs"
+)
+
+func (d *DataBase) InsertFriendRequest(ctx context.Context, friendRequest *model_struct.LocalFriendRequest) error {
+ d.friendMtx.Lock()
+ defer d.friendMtx.Unlock()
+ return errs.WrapMsg(d.conn.WithContext(ctx).Create(friendRequest).Error, "InsertFriendRequest failed")
+}
+
+func (d *DataBase) DeleteFriendRequestBothUserID(ctx context.Context, fromUserID, toUserID string) error {
+ d.friendMtx.Lock()
+ defer d.friendMtx.Unlock()
+ return errs.WrapMsg(d.conn.WithContext(ctx).Where("from_user_id=? and to_user_id=?", fromUserID, toUserID).Delete(&model_struct.LocalFriendRequest{}).Error, "DeleteFriendRequestBothUserID failed")
+}
+
+func (d *DataBase) UpdateFriendRequest(ctx context.Context, friendRequest *model_struct.LocalFriendRequest) error {
+ d.friendMtx.Lock()
+ defer d.friendMtx.Unlock()
+ t := d.conn.WithContext(ctx).Model(friendRequest).Select("*").Updates(*friendRequest)
+ if t.RowsAffected == 0 {
+ return errs.WrapMsg(errors.New("RowsAffected == 0"), "no update")
+ }
+ return errs.Wrap(t.Error)
+}
+
+func (d *DataBase) GetRecvFriendApplication(ctx context.Context) ([]*model_struct.LocalFriendRequest, error) {
+ d.friendMtx.Lock()
+ defer d.friendMtx.Unlock()
+ var friendRequestList []*model_struct.LocalFriendRequest
+
+ return friendRequestList, errs.WrapMsg(d.conn.WithContext(ctx).Where("to_user_id = ?", d.loginUserID).Order("create_time DESC").Find(&friendRequestList).Error, "GetRecvFriendApplication failed")
+}
+
+func (d *DataBase) GetSendFriendApplication(ctx context.Context) ([]*model_struct.LocalFriendRequest, error) {
+ d.friendMtx.Lock()
+ defer d.friendMtx.Unlock()
+ var friendRequestList []*model_struct.LocalFriendRequest
+ return friendRequestList, errs.WrapMsg(d.conn.WithContext(ctx).Where("from_user_id = ?", d.loginUserID).Order("create_time DESC").Find(&friendRequestList).Error, "GetSendFriendApplication failed")
+}
+
+func (d *DataBase) GetFriendApplicationByBothID(ctx context.Context, fromUserID, toUserID string) (*model_struct.LocalFriendRequest, error) {
+ d.friendMtx.Lock()
+ defer d.friendMtx.Unlock()
+ var friendRequest model_struct.LocalFriendRequest
+ return &friendRequest, errs.WrapMsg(d.conn.WithContext(ctx).Where("from_user_id = ? AND to_user_id = ?", fromUserID, toUserID).Take(&friendRequest).Error, "GetFriendApplicationByBothID failed")
+}
+
+func (d *DataBase) GetBothFriendReq(ctx context.Context, fromUserID, toUserID string) (friendRequests []*model_struct.LocalFriendRequest, err error) {
+ d.friendMtx.Lock()
+ defer d.friendMtx.Unlock()
+ return friendRequests, errs.WrapMsg(d.conn.WithContext(ctx).Where("(from_user_id = ? AND to_user_id = ?) OR (from_user_id = ? AND to_user_id = ?)", fromUserID, toUserID, toUserID, fromUserID).Find(&friendRequests).Error, "GetFriendApplicationByBothID failed")
+}
diff --git a/go/chao-sdk-core/pkg/db/group_member_model.go b/go/chao-sdk-core/pkg/db/group_member_model.go
new file mode 100644
index 0000000..4af2ba3
--- /dev/null
+++ b/go/chao-sdk-core/pkg/db/group_member_model.go
@@ -0,0 +1,307 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build !js
+// +build !js
+
+package db
+
+import (
+ "context"
+ "errors"
+ "fmt"
+
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/tools/errs"
+)
+
+func (d *DataBase) GetGroupMemberInfoByGroupIDUserID(ctx context.Context, groupID, userID string) (*model_struct.LocalGroupMember, error) {
+ d.groupMtx.Lock()
+ defer d.groupMtx.Unlock()
+ var groupMember model_struct.LocalGroupMember
+ return &groupMember, errs.WrapMsg(d.conn.WithContext(ctx).Where("group_id = ? AND user_id = ?",
+ groupID, userID).Take(&groupMember).Error, "GetGroupMemberInfoByGroupIDUserID failed")
+}
+
+func (d *DataBase) GetAllGroupMemberList(ctx context.Context) ([]model_struct.LocalGroupMember, error) {
+ d.groupMtx.Lock()
+ defer d.groupMtx.Unlock()
+ var groupMemberList []model_struct.LocalGroupMember
+ return groupMemberList, errs.WrapMsg(d.conn.WithContext(ctx).Find(&groupMemberList).Error, "GetAllGroupMemberList failed")
+}
+func (d *DataBase) GetAllGroupMemberUserIDList(ctx context.Context) ([]model_struct.LocalGroupMember, error) {
+ d.groupMtx.Lock()
+ defer d.groupMtx.Unlock()
+ var groupMemberList []model_struct.LocalGroupMember
+ return groupMemberList, errs.WrapMsg(d.conn.WithContext(ctx).Find(&groupMemberList).Error, "GetAllGroupMemberList failed")
+}
+
+func (d *DataBase) GetGroupMemberCount(ctx context.Context, groupID string) (int32, error) {
+ d.groupMtx.Lock()
+ defer d.groupMtx.Unlock()
+ var count int64
+ err := d.conn.WithContext(ctx).Model(&model_struct.LocalGroupMember{}).Where("group_id = ? ", groupID).Count(&count).Error
+ return int32(count), errs.WrapMsg(err, "GetGroupMemberCount failed")
+}
+
+func (d *DataBase) GetGroupSomeMemberInfo(ctx context.Context, groupID string, userIDList []string) ([]*model_struct.LocalGroupMember, error) {
+ d.groupMtx.Lock()
+ defer d.groupMtx.Unlock()
+ var groupMemberList []*model_struct.LocalGroupMember
+ err := d.conn.WithContext(ctx).Where("group_id = ? And user_id IN ? ", groupID, userIDList).Find(&groupMemberList).Error
+ return groupMemberList, errs.WrapMsg(err, "GetGroupMemberListByGroupID failed ")
+}
+func (d *DataBase) GetGroupAdminID(ctx context.Context, groupID string) ([]string, error) {
+ d.groupMtx.Lock()
+ defer d.groupMtx.Unlock()
+ var adminIDList []string
+ return adminIDList, errs.WrapMsg(d.conn.WithContext(ctx).Model(&model_struct.LocalGroupMember{}).Select("user_id").Where("group_id = ? And role_level = ?", groupID, constant.GroupAdmin).Find(&adminIDList).Error, "")
+}
+
+func (d *DataBase) GetGroupMemberListByGroupID(ctx context.Context, groupID string) ([]*model_struct.LocalGroupMember, error) {
+ d.groupMtx.Lock()
+ defer d.groupMtx.Unlock()
+ var groupMemberList []*model_struct.LocalGroupMember
+ err := d.conn.WithContext(ctx).Where("group_id = ? ", groupID).Find(&groupMemberList).Error
+ return groupMemberList, errs.WrapMsg(err, "GetGroupMemberListByGroupID failed ")
+}
+
+func (d *DataBase) GetGroupMemberListByUserIDs(ctx context.Context, groupID string, filter int32, userIDs []string) ([]*model_struct.LocalGroupMember, error) {
+ d.groupMtx.Lock()
+ defer d.groupMtx.Unlock()
+ var groupMemberList []*model_struct.LocalGroupMember
+ var err error
+ switch filter {
+ case constant.GroupFilterAll:
+ err = d.conn.WithContext(ctx).Where("group_id = ? AND user_id IN ?", groupID, userIDs).Order("role_level DESC, join_time ASC").Find(&groupMemberList).Error
+ case constant.GroupFilterOwner:
+ err = d.conn.WithContext(ctx).Where("group_id = ? AND role_level = ? AND user_id IN ?", groupID, constant.GroupOwner, userIDs).Find(&groupMemberList).Error
+ case constant.GroupFilterAdmin:
+ err = d.conn.WithContext(ctx).Where("group_id = ? AND role_level = ? AND user_id IN ?", groupID, constant.GroupAdmin, userIDs).Find(&groupMemberList).Error
+ case constant.GroupFilterOrdinaryUsers:
+ err = d.conn.WithContext(ctx).Where("group_id = ? AND role_level = ? AND user_id IN ?", groupID, constant.GroupOrdinaryUsers, userIDs).Find(&groupMemberList).Error
+ case constant.GroupFilterAdminAndOrdinaryUsers:
+ err = d.conn.WithContext(ctx).Where("group_id = ? AND (role_level = ? OR role_level = ?) AND user_id IN ?", groupID, constant.GroupAdmin, constant.GroupOrdinaryUsers, userIDs).Find(&groupMemberList).Error
+ case constant.GroupFilterOwnerAndAdmin:
+ err = d.conn.WithContext(ctx).Where("group_id = ? AND (role_level = ? OR role_level = ?) AND user_id IN ?", groupID, constant.GroupOwner, constant.GroupAdmin, userIDs).Find(&groupMemberList).Error
+ default:
+ return nil, errs.New("filter args failed.", "filter", filter).Wrap()
+ }
+
+ return groupMemberList, errs.Wrap(err)
+
+}
+
+func (d *DataBase) GetGroupMemberListSplit(ctx context.Context, groupID string, filter int32, offset, count int) ([]*model_struct.LocalGroupMember, error) {
+ d.groupMtx.Lock()
+ defer d.groupMtx.Unlock()
+ var groupMemberList []*model_struct.LocalGroupMember
+ var err error
+ switch filter {
+ case constant.GroupFilterAll:
+ err = d.conn.WithContext(ctx).Where("group_id = ?", groupID).Order("role_level DESC,join_time ASC").Offset(offset).Limit(count).Find(&groupMemberList).Error
+ case constant.GroupFilterOwner:
+ err = d.conn.WithContext(ctx).Where("group_id = ? And role_level = ?", groupID, constant.GroupOwner).Offset(offset).Limit(count).Find(&groupMemberList).Error
+ case constant.GroupFilterAdmin:
+ err = d.conn.WithContext(ctx).Where("group_id = ? And role_level = ?", groupID, constant.GroupAdmin).Order("join_time ASC").Offset(offset).Limit(count).Find(&groupMemberList).Error
+ case constant.GroupFilterOrdinaryUsers:
+ err = d.conn.WithContext(ctx).Where("group_id = ? And role_level = ?", groupID, constant.GroupOrdinaryUsers).Order("join_time ASC").Offset(offset).Limit(count).Find(&groupMemberList).Error
+ case constant.GroupFilterAdminAndOrdinaryUsers:
+ err = d.conn.WithContext(ctx).Where("group_id = ? And (role_level = ? or role_level = ?)", groupID, constant.GroupAdmin, constant.GroupOrdinaryUsers).Order("role_level DESC,join_time ASC").Offset(offset).Limit(count).Find(&groupMemberList).Error
+ case constant.GroupFilterOwnerAndAdmin:
+ err = d.conn.WithContext(ctx).Where("group_id = ? And (role_level = ? or role_level = ?)", groupID, constant.GroupOwner, constant.GroupAdmin).Order("role_level DESC,join_time ASC").Offset(offset).Limit(count).Find(&groupMemberList).Error
+ default:
+ return nil, errs.New("filter args failed", "filter", filter).Wrap()
+ }
+
+ return groupMemberList, errs.WrapMsg(err, "GetGroupMemberListSplit failed ")
+}
+
+func (d *DataBase) GetGroupMemberOwnerAndAdminDB(ctx context.Context, groupID string) ([]*model_struct.LocalGroupMember, error) {
+ d.groupMtx.Lock()
+ defer d.groupMtx.Unlock()
+ var groupMemberList []*model_struct.LocalGroupMember
+ err := d.conn.WithContext(ctx).Where("group_id = ? And (role_level = ? OR role_level = ?)", groupID, constant.GroupOwner, constant.GroupAdmin).Order("join_time DESC").Find(&groupMemberList).Error
+
+ return groupMemberList, errs.WrapMsg(err, "GetGroupMemberListSplit failed ")
+}
+
+func (d *DataBase) GetGroupMemberOwner(ctx context.Context, groupID string) (*model_struct.LocalGroupMember, error) {
+ d.groupMtx.Lock()
+ defer d.groupMtx.Unlock()
+ var groupMember model_struct.LocalGroupMember
+ err := d.conn.WithContext(ctx).Where("group_id = ? And role_level = ?", groupID, constant.GroupOwner).Find(&groupMember).Error
+ return &groupMember, errs.WrapMsg(err, "GetGroupMemberListSplit failed ")
+}
+
+func (d *DataBase) GetGroupMemberListSplitByJoinTimeFilter(ctx context.Context, groupID string, offset, count int, joinTimeBegin, joinTimeEnd int64, userIDList []string) ([]*model_struct.LocalGroupMember, error) {
+ d.groupMtx.Lock()
+ defer d.groupMtx.Unlock()
+ var groupMemberList []*model_struct.LocalGroupMember
+ var err error
+ if len(userIDList) == 0 {
+ err = d.conn.WithContext(ctx).Where("group_id = ? And join_time between ? and ? ", groupID, joinTimeBegin, joinTimeEnd).Order("join_time DESC").Offset(offset).Limit(count).Find(&groupMemberList).Error
+ } else {
+ err = d.conn.WithContext(ctx).Where("group_id = ? And join_time between ? and ? And user_id NOT IN ?", groupID, joinTimeBegin, joinTimeEnd, userIDList).Order("join_time DESC").Offset(offset).Limit(count).Find(&groupMemberList).Error
+ }
+ return groupMemberList, errs.WrapMsg(err, "GetGroupMemberListSplitByJoinTimeFilter failed ")
+}
+
+func (d *DataBase) GetGroupOwnerAndAdminByGroupID(ctx context.Context, groupID string) ([]*model_struct.LocalGroupMember, error) {
+ d.groupMtx.Lock()
+ defer d.groupMtx.Unlock()
+ var groupMemberList []*model_struct.LocalGroupMember
+ err := d.conn.WithContext(ctx).Where("group_id = ? AND (role_level = ? Or role_level = ?)", groupID, constant.GroupOwner, constant.GroupAdmin).Find(&groupMemberList).Error
+ return groupMemberList, errs.WrapMsg(err, "GetGroupMemberListByGroupID failed ")
+}
+
+func (d *DataBase) GetGroupMemberUIDListByGroupID(ctx context.Context, groupID string) (result []string, err error) {
+ d.groupMtx.Lock()
+ defer d.groupMtx.Unlock()
+ var g model_struct.LocalGroupMember
+ g.GroupID = groupID
+ err = d.conn.WithContext(ctx).Model(&g).Where("group_id = ?", groupID).Pluck("user_id", &result).Error
+ return result, errs.WrapMsg(err, "GetGroupMemberListByGroupID failed ")
+}
+
+func (d *DataBase) InsertGroupMember(ctx context.Context, groupMember *model_struct.LocalGroupMember) error {
+ d.groupMtx.Lock()
+ defer d.groupMtx.Unlock()
+ return errs.WrapMsg(d.conn.WithContext(ctx).Create(groupMember).Error, "")
+}
+
+//funcation (d *DataBase) BatchInsertMessageList(ctx context.Context, MessageList []*model_struct.LocalChatLog) error {
+// if MessageList == nil {
+// return nil
+// }
+// d.mRWMutex.Lock()
+// defer d.mRWMutex.Unlock()
+// return errs.WrapMsg(d.conn.WithContext(ctx).Create(MessageList).Error, "BatchInsertMessageList failed")
+//}
+
+func (d *DataBase) BatchInsertGroupMember(ctx context.Context, groupMemberList []*model_struct.LocalGroupMember) error {
+ d.groupMtx.Lock()
+ defer d.groupMtx.Unlock()
+ if groupMemberList == nil {
+ return errors.New("nil")
+ }
+ return errs.WrapMsg(d.conn.WithContext(ctx).Create(groupMemberList).Error, "BatchInsertMessageList failed")
+}
+
+func (d *DataBase) DeleteGroupMember(ctx context.Context, groupID, userID string) error {
+ d.groupMtx.Lock()
+ defer d.groupMtx.Unlock()
+ var groupMember model_struct.LocalGroupMember
+ return d.conn.WithContext(ctx).Where("group_id=? and user_id=?", groupID, userID).Delete(&groupMember).Error
+}
+
+func (d *DataBase) DeleteGroupAllMembers(ctx context.Context, groupID string) error {
+ d.groupMtx.Lock()
+ defer d.groupMtx.Unlock()
+ var groupMember model_struct.LocalGroupMember
+ return d.conn.WithContext(ctx).Where("group_id=? ", groupID).Delete(&groupMember).Error
+}
+
+func (d *DataBase) UpdateGroupMember(ctx context.Context, groupMember *model_struct.LocalGroupMember) error {
+ d.groupMtx.Lock()
+ defer d.groupMtx.Unlock()
+ t := d.conn.WithContext(ctx).Model(groupMember).Select("*").Updates(*groupMember)
+ if t.RowsAffected == 0 {
+ return errs.WrapMsg(errors.New("RowsAffected == 0"), "no update")
+ }
+ return errs.WrapMsg(t.Error, "")
+}
+
+func (d *DataBase) UpdateGroupMemberField(ctx context.Context, groupID, userID string, args map[string]interface{}) error {
+ d.groupMtx.Lock()
+ defer d.groupMtx.Unlock()
+ c := model_struct.LocalGroupMember{GroupID: groupID, UserID: userID}
+ t := d.conn.WithContext(ctx).Model(&c).Updates(args)
+ if t.RowsAffected == 0 {
+ return errs.WrapMsg(errors.New("RowsAffected == 0"), "no update")
+ }
+ return errs.WrapMsg(t.Error, "UpdateGroupMemberField failed")
+}
+
+func (d *DataBase) GetGroupMemberInfoIfOwnerOrAdmin(ctx context.Context) ([]*model_struct.LocalGroupMember, error) {
+ var ownerAndAdminList []*model_struct.LocalGroupMember
+ groupList, err := d.GetJoinedGroupListDB(ctx)
+ if err != nil {
+ return nil, errs.Wrap(err)
+ }
+ for _, v := range groupList {
+ memberList, err := d.GetGroupOwnerAndAdminByGroupID(ctx, v.GroupID)
+ if err != nil {
+ return nil, errs.Wrap(err)
+ }
+ ownerAndAdminList = append(ownerAndAdminList, memberList...)
+ }
+ return ownerAndAdminList, nil
+}
+
+func (d *DataBase) SearchGroupMembersDB(ctx context.Context, keyword string, groupID string, isSearchMemberNickname, isSearchUserID bool, offset, count int) (result []*model_struct.LocalGroupMember, err error) {
+ d.groupMtx.Lock()
+ defer d.groupMtx.Unlock()
+ if !isSearchMemberNickname && !isSearchUserID {
+ return nil, errors.New("args failed")
+ }
+
+ var countCon int
+ var condition string
+ if isSearchUserID {
+ condition = fmt.Sprintf("user_id like %q ", "%"+keyword+"%")
+ countCon++
+ }
+ if isSearchMemberNickname {
+ if countCon > 0 {
+ condition += "or "
+ }
+ condition += fmt.Sprintf("nickname like %q ", "%"+keyword+"%")
+ }
+
+ var groupMemberList []model_struct.LocalGroupMember
+ if groupID != "" {
+ condition = "( " + condition + " ) "
+ condition += " and group_id IN ? "
+ err = d.conn.WithContext(ctx).Where(condition, []string{groupID}).Order("role_level DESC,join_time ASC").Offset(offset).Limit(count).Find(&groupMemberList).Error
+ } else {
+ err = d.conn.WithContext(ctx).Where(condition).Order("role_level DESC,join_time ASC").Offset(offset).Limit(count).Find(&groupMemberList).Error
+
+ }
+
+ for _, v := range groupMemberList {
+ v1 := v
+ result = append(result, &v1)
+ }
+ return result, err
+}
+
+func (d *DataBase) GetGroupMemberAllGroupIDs(ctx context.Context) ([]string, error) {
+ d.groupMtx.Lock()
+ defer d.groupMtx.Unlock()
+ // SELECT DISTINCT group_id FROM local_group_members;
+ var groupIDs []string
+ err := d.conn.WithContext(ctx).Select("DISTINCT group_id").Model(&model_struct.LocalGroupMember{}).Pluck("group_id", &groupIDs).Error
+ if err != nil {
+ return nil, err
+ }
+ return groupIDs, nil
+}
+
+func (d *DataBase) GetUserJoinedGroupIDs(ctx context.Context, userID string) (groupIDs []string, err error) {
+ d.groupMtx.Lock()
+ defer d.groupMtx.Unlock()
+ return groupIDs, d.conn.WithContext(ctx).Model(&model_struct.LocalGroupMember{}).Where("user_id = ?", userID).Pluck("group_id", &groupIDs).Error
+}
diff --git a/go/chao-sdk-core/pkg/db/group_model.go b/go/chao-sdk-core/pkg/db/group_model.go
new file mode 100644
index 0000000..4153c26
--- /dev/null
+++ b/go/chao-sdk-core/pkg/db/group_model.go
@@ -0,0 +1,117 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build !js
+// +build !js
+
+package db
+
+import (
+ "context"
+ "errors"
+ "fmt"
+
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/tools/errs"
+
+ "gorm.io/gorm"
+)
+
+func (d *DataBase) InsertGroup(ctx context.Context, groupInfo *model_struct.LocalGroup) error {
+ d.groupMtx.Lock()
+ defer d.groupMtx.Unlock()
+ return errs.WrapMsg(d.conn.WithContext(ctx).Create(groupInfo).Error, "InsertGroup failed")
+}
+func (d *DataBase) DeleteGroup(ctx context.Context, groupID string) error {
+ d.groupMtx.Lock()
+ defer d.groupMtx.Unlock()
+ localGroup := model_struct.LocalGroup{GroupID: groupID}
+ return errs.WrapMsg(d.conn.WithContext(ctx).Delete(&localGroup).Error, "DeleteGroup failed")
+}
+func (d *DataBase) UpdateGroup(ctx context.Context, groupInfo *model_struct.LocalGroup) error {
+ d.groupMtx.Lock()
+ defer d.groupMtx.Unlock()
+
+ t := d.conn.WithContext(ctx).Model(groupInfo).Select("*").Updates(*groupInfo)
+ if t.RowsAffected == 0 {
+ return errs.WrapMsg(errors.New("RowsAffected == 0"), "no update")
+ }
+ return errs.Wrap(t.Error)
+}
+func (d *DataBase) BatchInsertGroup(ctx context.Context, groupList []*model_struct.LocalGroup) error {
+ d.groupMtx.Lock()
+ defer d.groupMtx.Unlock()
+ return errs.WrapMsg(d.conn.WithContext(ctx).Create(groupList).Error, "BatchInsertGroup failed")
+}
+
+func (d *DataBase) DeleteAllGroup(ctx context.Context) error {
+ d.groupMtx.Lock()
+ defer d.groupMtx.Unlock()
+ return errs.WrapMsg(d.conn.WithContext(ctx).Session(&gorm.Session{AllowGlobalUpdate: true}).Delete(&model_struct.LocalGroup{}).Error, "DeleteAllGroup failed")
+}
+
+func (d *DataBase) GetJoinedGroupListDB(ctx context.Context) ([]*model_struct.LocalGroup, error) {
+ d.groupMtx.Lock()
+ defer d.groupMtx.Unlock()
+ var groupList []*model_struct.LocalGroup
+ err := d.conn.WithContext(ctx).Find(&groupList).Error
+ return groupList, errs.WrapMsg(err, "GetJoinedGroupList failed ")
+}
+
+func (d *DataBase) GetGroups(ctx context.Context, groupIDs []string) ([]*model_struct.LocalGroup, error) {
+ d.groupMtx.Lock()
+ defer d.groupMtx.Unlock()
+ var groupList []*model_struct.LocalGroup
+ err := d.conn.WithContext(ctx).Where("group_id in (?)", groupIDs).Find(&groupList).Error
+ return groupList, errs.WrapMsg(err, "GetGroups failed ")
+}
+
+func (d *DataBase) GetGroupInfoByGroupID(ctx context.Context, groupID string) (*model_struct.LocalGroup, error) {
+ d.groupMtx.Lock()
+ defer d.groupMtx.Unlock()
+ var g model_struct.LocalGroup
+ return &g, errs.WrapMsg(d.conn.WithContext(ctx).Where("group_id = ?", groupID).Take(&g).Error, "GetGroupList failed")
+}
+func (d *DataBase) GetAllGroupInfoByGroupIDOrGroupName(ctx context.Context, keyword string, isSearchGroupID bool, isSearchGroupName bool) ([]*model_struct.LocalGroup, error) {
+ d.groupMtx.Lock()
+ defer d.groupMtx.Unlock()
+
+ var groupList []*model_struct.LocalGroup
+ var condition string
+ if isSearchGroupID {
+ if isSearchGroupName {
+ condition = fmt.Sprintf("group_id like %q or name like %q", "%"+keyword+"%", "%"+keyword+"%")
+ } else {
+ condition = fmt.Sprintf("group_id like %q ", "%"+keyword+"%")
+ }
+ } else {
+ condition = fmt.Sprintf("name like %q ", "%"+keyword+"%")
+ }
+ err := d.conn.WithContext(ctx).Where(condition).Order("create_time DESC").Find(&groupList).Error
+ return groupList, errs.WrapMsg(err, "GetAllGroupInfoByGroupIDOrGroupName failed ")
+}
+
+func (d *DataBase) AddMemberCount(ctx context.Context, groupID string) error {
+ d.groupMtx.Lock()
+ defer d.groupMtx.Unlock()
+ group := model_struct.LocalGroup{GroupID: groupID}
+ return errs.WrapMsg(d.conn.WithContext(ctx).Model(&group).Updates(map[string]interface{}{"member_count": gorm.Expr("member_count+1")}).Error, "")
+}
+
+func (d *DataBase) SubtractMemberCount(ctx context.Context, groupID string) error {
+ d.groupMtx.Lock()
+ defer d.groupMtx.Unlock()
+ group := model_struct.LocalGroup{GroupID: groupID}
+ return errs.WrapMsg(d.conn.WithContext(ctx).Model(&group).Updates(map[string]interface{}{"member_count": gorm.Expr("member_count-1")}).Error, "")
+}
diff --git a/go/chao-sdk-core/pkg/db/group_request_model.go b/go/chao-sdk-core/pkg/db/group_request_model.go
new file mode 100644
index 0000000..856175f
--- /dev/null
+++ b/go/chao-sdk-core/pkg/db/group_request_model.go
@@ -0,0 +1,53 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build !js
+// +build !js
+
+package db
+
+import (
+ "context"
+ "errors"
+
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/tools/errs"
+)
+
+func (d *DataBase) InsertGroupRequest(ctx context.Context, groupRequest *model_struct.LocalGroupRequest) error {
+ d.groupMtx.Lock()
+ defer d.groupMtx.Unlock()
+ return errs.WrapMsg(d.conn.WithContext(ctx).Create(groupRequest).Error, "InsertGroupRequest failed")
+}
+func (d *DataBase) DeleteGroupRequest(ctx context.Context, groupID, userID string) error {
+ d.groupMtx.Lock()
+ defer d.groupMtx.Unlock()
+ return errs.WrapMsg(d.conn.WithContext(ctx).Where("group_id=? and user_id=?", groupID, userID).Delete(&model_struct.LocalGroupRequest{}).Error, "DeleteGroupRequest failed")
+}
+func (d *DataBase) UpdateGroupRequest(ctx context.Context, groupRequest *model_struct.LocalGroupRequest) error {
+ d.groupMtx.Lock()
+ defer d.groupMtx.Unlock()
+ t := d.conn.WithContext(ctx).Model(groupRequest).Select("*").Updates(*groupRequest)
+ if t.RowsAffected == 0 {
+ return errs.WrapMsg(errors.New("RowsAffected == 0"), "no update")
+ }
+ return errs.Wrap(t.Error)
+}
+
+func (d *DataBase) GetSendGroupApplication(ctx context.Context) ([]*model_struct.LocalGroupRequest, error) {
+ d.groupMtx.Lock()
+ defer d.groupMtx.Unlock()
+ var groupRequestList []*model_struct.LocalGroupRequest
+ return groupRequestList, errs.Wrap(d.conn.WithContext(ctx).Order("create_time DESC").Find(&groupRequestList).Error)
+}
diff --git a/go/chao-sdk-core/pkg/db/model_struct/data_model_struct.go b/go/chao-sdk-core/pkg/db/model_struct/data_model_struct.go
new file mode 100644
index 0000000..300d00f
--- /dev/null
+++ b/go/chao-sdk-core/pkg/db/model_struct/data_model_struct.go
@@ -0,0 +1,587 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package model_struct
+
+import (
+ "database/sql/driver"
+ "encoding/json"
+
+ "github.com/openimsdk/tools/errs"
+)
+
+//
+//message FriendInfo{
+//string OwnerUserID = 1;
+//string Remark = 2;
+//int64 CreateTime = 3;
+//UserInfo FriendUser = 4;
+//int32 AddSource = 5;
+//string OperatorUserID = 6;
+//string Ex = 7;
+//}
+//open_im_sdk.FriendInfo(FriendUser) != imdb.Friend(FriendUserID)
+// table = ` CREATE TABLE IF NOT EXISTS friends(
+// owner_user_id CHAR (64) NOT NULL,
+// friend_user_id CHAR (64) NOT NULL ,
+// name varchar(64) DEFAULT NULL ,
+// face_url varchar(100) DEFAULT NULL ,
+// remark varchar(255) DEFAULT NULL,
+// gender int DEFAULT NULL ,
+// phone_number varchar(32) DEFAULT NULL ,
+// birth INTEGER DEFAULT NULL ,
+// email varchar(64) DEFAULT NULL ,
+// create_time INTEGER DEFAULT NULL ,
+// add_source int DEFAULT NULL ,
+// operator_user_id CHAR(64) DEFAULT NULL,
+// ex varchar(1024) DEFAULT NULL,
+// PRIMARY KEY (owner_user_id,friend_user_id)
+// )`
+
+type LocalFriend struct {
+ OwnerUserID string `gorm:"column:owner_user_id;primary_key;type:varchar(64)" json:"ownerUserID"`
+ FriendUserID string `gorm:"column:friend_user_id;primary_key;type:varchar(64)" json:"userID"`
+ Remark string `gorm:"column:remark;type:varchar(255)" json:"remark"`
+ CreateTime int64 `gorm:"column:create_time" json:"createTime"`
+ AddSource int32 `gorm:"column:add_source" json:"addSource"`
+ OperatorUserID string `gorm:"column:operator_user_id;type:varchar(64)" json:"operatorUserID"`
+ Nickname string `gorm:"column:name;type:varchar;type:varchar(255)" json:"nickname"`
+ FaceURL string `gorm:"column:face_url;type:varchar;type:varchar(255)" json:"faceURL"`
+ Ex string `gorm:"column:ex;type:varchar(1024)" json:"ex"`
+ AttachedInfo string `gorm:"column:attached_info;type:varchar(1024)" json:"attachedInfo"`
+ IsPinned bool `gorm:"column:is_pinned;" json:"isPinned"`
+}
+
+func (LocalFriend) TableName() string {
+ return "local_friends"
+}
+
+// message FriendRequest{
+// string FromUserID = 1;
+// string ToUserID = 2;
+// int32 HandleResult = 3;
+// string ReqMsg = 4;
+// int64 CreateTime = 5;
+// string HandlerUserID = 6;
+// string HandleMsg = 7;
+// int64 HandleTime = 8;
+// string Ex = 9;
+// }
+// open_im_sdk.FriendRequest == imdb.FriendRequest
+type LocalFriendRequest struct {
+ FromUserID string `gorm:"column:from_user_id;primary_key;type:varchar(64)" json:"fromUserID"`
+ FromNickname string `gorm:"column:from_nickname;type:varchar;type:varchar(255)" json:"fromNickname"`
+ FromFaceURL string `gorm:"column:from_face_url;type:varchar;type:varchar(255)" json:"fromFaceURL"`
+ // FromGender int32 `gorm:"column:from_gender" json:"fromGender"`
+
+ ToUserID string `gorm:"column:to_user_id;primary_key;type:varchar(64)" json:"toUserID"`
+ ToNickname string `gorm:"column:to_nickname;type:varchar;type:varchar(255)" json:"toNickname"`
+ ToFaceURL string `gorm:"column:to_face_url;type:varchar;type:varchar(255)" json:"toFaceURL"`
+ // ToGender int32 `gorm:"column:to_gender" json:"toGender"`
+
+ HandleResult int32 `gorm:"column:handle_result" json:"handleResult"`
+ ReqMsg string `gorm:"column:req_msg;type:varchar(255)" json:"reqMsg"`
+ CreateTime int64 `gorm:"column:create_time" json:"createTime"`
+ HandlerUserID string `gorm:"column:handler_user_id;type:varchar(64)" json:"handlerUserID"`
+ HandleMsg string `gorm:"column:handle_msg;type:varchar(255)" json:"handleMsg"`
+ HandleTime int64 `gorm:"column:handle_time" json:"handleTime"`
+ Ex string `gorm:"column:ex;type:varchar(1024)" json:"ex"`
+
+ AttachedInfo string `gorm:"column:attached_info;type:varchar(1024)" json:"attachedInfo"`
+}
+
+//message GroupInfo{
+// string GroupID = 1;
+// string GroupName = 2;
+// string NotificationCmd = 3;
+// string Introduction = 4;
+// string FaceUrl = 5;
+// string OwnerUserID = 6;
+// uint32 MemberCount = 8;
+// int64 CreateTime = 7;
+// string Ex = 9;
+// int32 Status = 10;
+// string CreatorUserID = 11;
+// int32 GroupType = 12;
+//}
+// open_im_sdk.GroupInfo (OwnerUserID , MemberCount )> imdb.Group
+// group_id char(64) NOT NULL,
+// name varchar(64) DEFAULT NULL ,
+// introduction varchar(255) DEFAULT NULL,
+// notification varchar(255) DEFAULT NULL,
+// face_url varchar(100) DEFAULT NULL,
+// group_type int DEFAULT NULL,
+// status int DEFAULT NULL,
+// creator_user_id char(64) DEFAULT NULL,
+// create_time INTEGER DEFAULT NULL,
+// ex varchar(1024) DEFAULT NULL,
+// PRIMARY KEY (group_id)
+// )`
+
+type LocalGroup struct {
+ GroupID string `gorm:"column:group_id;primary_key;type:varchar(64)" json:"groupID" binding:"required"`
+ GroupName string `gorm:"column:name;size:255" json:"groupName"`
+ Notification string `gorm:"column:notification;type:varchar(255)" json:"notification"`
+ Introduction string `gorm:"column:introduction;type:varchar(255)" json:"introduction"`
+ FaceURL string `gorm:"column:face_url;type:varchar(255)" json:"faceURL"`
+ CreateTime int64 `gorm:"column:create_time" json:"createTime"`
+ Status int32 `gorm:"column:status" json:"status"`
+ CreatorUserID string `gorm:"column:creator_user_id;type:varchar(64)" json:"creatorUserID"`
+ GroupType int32 `gorm:"column:group_type" json:"groupType"`
+ OwnerUserID string `gorm:"column:owner_user_id;type:varchar(64)" json:"ownerUserID"`
+ MemberCount int32 `gorm:"column:member_count" json:"memberCount"`
+ Ex string `gorm:"column:ex;type:varchar(1024)" json:"ex"`
+ AttachedInfo string `gorm:"column:attached_info;type:varchar(1024)" json:"attachedInfo"`
+ NeedVerification int32 `gorm:"column:need_verification" json:"needVerification"`
+ LookMemberInfo int32 `gorm:"column:look_member_info" json:"lookMemberInfo"`
+ ApplyMemberFriend int32 `gorm:"column:apply_member_friend" json:"applyMemberFriend"`
+ NotificationUpdateTime int64 `gorm:"column:notification_update_time" json:"notificationUpdateTime"`
+ NotificationUserID string `gorm:"column:notification_user_id;size:64" json:"notificationUserID"`
+}
+
+func (LocalGroup) TableName() string {
+ return "local_groups"
+}
+
+//message GroupMemberFullInfo {
+//string GroupID = 1 ;
+//string UserID = 2 ;
+//int32 roleLevel = 3;
+//int64 JoinTime = 4;
+//string NickName = 5;
+//string FaceUrl = 6;
+//int32 JoinSource = 8;
+//string OperatorUserID = 9;
+//string Ex = 10;
+//int32 AppMangerLevel = 7; //if >0
+//} open_im_sdk.GroupMemberFullInfo(AppMangerLevel) > imdb.GroupMember
+// group_id char(64) NOT NULL,
+// user_id char(64) NOT NULL,
+// nickname varchar(64) DEFAULT NULL,
+// user_group_face_url varchar(64) DEFAULT NULL,
+// role_level int DEFAULT NULL,
+// join_time INTEGER DEFAULT NULL,
+// join_source int DEFAULT NULL,
+// operator_user_id char(64) NOT NULL,
+
+type LocalGroupMember struct {
+ GroupID string `gorm:"column:group_id;primary_key;type:varchar(64)" json:"groupID"`
+ UserID string `gorm:"column:user_id;primary_key;type:varchar(64)" json:"userID"`
+ Nickname string `gorm:"column:nickname;type:varchar(255)" json:"nickname"`
+ FaceURL string `gorm:"column:user_group_face_url;type:varchar(255)" json:"faceURL"`
+ RoleLevel int32 `gorm:"column:role_level;index:index_role_level;" json:"roleLevel"`
+ JoinTime int64 `gorm:"column:join_time;index:index_join_time;" json:"joinTime"`
+ JoinSource int32 `gorm:"column:join_source" json:"joinSource"`
+ InviterUserID string `gorm:"column:inviter_user_id;size:64" json:"inviterUserID"`
+ MuteEndTime int64 `gorm:"column:mute_end_time;default:0" json:"muteEndTime"`
+ OperatorUserID string `gorm:"column:operator_user_id;type:varchar(64)" json:"operatorUserID"`
+ Ex string `gorm:"column:ex;type:varchar(1024)" json:"ex"`
+ AttachedInfo string `gorm:"column:attached_info;type:varchar(1024)" json:"attachedInfo"`
+}
+
+func (LocalGroupMember) TableName() string {
+ return "local_group_members"
+}
+
+// message GroupRequest{
+// string UserID = 1;
+// string GroupID = 2;
+// string HandleResult = 3;
+// string ReqMsg = 4;
+// string HandleMsg = 5;
+// int64 ReqTime = 6;
+// string HandleUserID = 7;
+// int64 HandleTime = 8;
+// string Ex = 9;
+// }open_im_sdk.GroupRequest == imdb.GroupRequest
+type LocalGroupRequest struct {
+ GroupID string `gorm:"column:group_id;primary_key;type:varchar(64)" json:"groupID"`
+ GroupName string `gorm:"column:group_name;size:255" json:"groupName"`
+ Notification string `gorm:"column:notification;type:varchar(255)" json:"notification"`
+ Introduction string `gorm:"column:introduction;type:varchar(255)" json:"introduction"`
+ GroupFaceURL string `gorm:"column:face_url;type:varchar(255)" json:"groupFaceURL"`
+ CreateTime int64 `gorm:"column:create_time" json:"createTime"`
+ Status int32 `gorm:"column:status" json:"status"`
+ CreatorUserID string `gorm:"column:creator_user_id;type:varchar(64)" json:"creatorUserID"`
+ GroupType int32 `gorm:"column:group_type" json:"groupType"`
+ OwnerUserID string `gorm:"column:owner_user_id;type:varchar(64)" json:"ownerUserID"`
+ MemberCount int32 `gorm:"column:member_count" json:"memberCount"`
+
+ UserID string `gorm:"column:user_id;primary_key;type:varchar(64)" json:"userID"`
+ Nickname string `gorm:"column:nickname;type:varchar(255)" json:"nickname"`
+ UserFaceURL string `gorm:"column:user_face_url;type:varchar(255)" json:"userFaceURL"`
+ // Gender int32 `gorm:"column:gender" json:"gender"`
+
+ HandleResult int32 `gorm:"column:handle_result" json:"handleResult"`
+ ReqMsg string `gorm:"column:req_msg;type:varchar(255)" json:"reqMsg"`
+ HandledMsg string `gorm:"column:handle_msg;type:varchar(255)" json:"handledMsg"`
+ ReqTime int64 `gorm:"column:req_time" json:"reqTime"`
+ HandleUserID string `gorm:"column:handle_user_id;type:varchar(64)" json:"handleUserID"`
+ HandledTime int64 `gorm:"column:handle_time" json:"handledTime"`
+ Ex string `gorm:"column:ex;type:varchar(1024)" json:"ex"`
+ AttachedInfo string `gorm:"column:attached_info;type:varchar(1024)" json:"attachedInfo"`
+ JoinSource int32 `gorm:"column:join_source" json:"joinSource"`
+ InviterUserID string `gorm:"column:inviter_user_id;size:64" json:"inviterUserID"`
+}
+
+// string UserID = 1;
+// string Nickname = 2;
+// string FaceUrl = 3;
+// int32 Gender = 4;
+// string PhoneNumber = 5;
+// string Birth = 6;
+// string Email = 7;
+// string Ex = 8;
+// int64 CreateTime = 9;
+// int32 AppMangerLevel = 10;
+// open_im_sdk.User == imdb.User
+type LocalUser struct {
+ UserID string `gorm:"column:user_id;primary_key;type:varchar(64)" json:"userID"`
+ Nickname string `gorm:"column:name;type:varchar(255)" json:"nickname"`
+ FaceURL string `gorm:"column:face_url;type:varchar(255)" json:"faceURL"`
+ CreateTime int64 `gorm:"column:create_time" json:"createTime"`
+ AppMangerLevel int32 `gorm:"column:app_manger_level" json:"-"`
+ Ex string `gorm:"column:ex;type:varchar(1024)" json:"ex"`
+ AttachedInfo string `gorm:"column:attached_info;type:varchar(1024)" json:"attachedInfo"`
+ GlobalRecvMsgOpt int32 `gorm:"column:global_recv_msg_opt" json:"globalRecvMsgOpt"`
+}
+
+// message BlackInfo{
+// string OwnerUserID = 1;
+// int64 CreateTime = 2;
+// PublicUserInfo BlackUserInfo = 4;
+// int32 AddSource = 5;
+// string OperatorUserID = 6;
+// string Ex = 7;
+// }
+// open_im_sdk.BlackInfo(BlackUserInfo) != imdb.Black (BlockUserID)
+type LocalBlack struct {
+ OwnerUserID string `gorm:"column:owner_user_id;primary_key;type:varchar(64)" json:"ownerUserID"`
+ BlockUserID string `gorm:"column:block_user_id;primary_key;type:varchar(64)" json:"userID"`
+ Nickname string `gorm:"column:nickname;type:varchar(255)" json:"nickname"`
+ FaceURL string `gorm:"column:face_url;type:varchar(255)" json:"faceURL"`
+ // Gender int32 `gorm:"column:gender" json:"gender"`
+ CreateTime int64 `gorm:"column:create_time" json:"createTime"`
+ AddSource int32 `gorm:"column:add_source" json:"addSource"`
+ OperatorUserID string `gorm:"column:operator_user_id;type:varchar(64)" json:"operatorUserID"`
+ Ex string `gorm:"column:ex;type:varchar(1024)" json:"ex"`
+ AttachedInfo string `gorm:"column:attached_info;type:varchar(1024)" json:"attachedInfo"`
+}
+
+type LocalSeqData struct {
+ UserID string `gorm:"column:user_id;primary_key;type:varchar(64)"`
+ Seq uint32 `gorm:"column:seq"`
+}
+
+type LocalSeq struct {
+ ID string `gorm:"column:id;primary_key;type:varchar(64)"`
+ MinSeq uint32 `gorm:"column:min_seq"`
+}
+
+// `create table if not exists chat_log (
+//
+// client_msg_id char(64) NOT NULL,
+// server_msg_id char(64) DEFAULT NULL,
+// send_id char(64) NOT NULL ,
+// is_read int NOT NULL ,
+// seq INTEGER DEFAULT NULL ,
+// status int NOT NULL ,
+// session_type int NOT NULL ,
+// recv_id char(64) NOT NULL ,
+// content_type int NOT NULL ,
+// sender_face_url varchar(100) DEFAULT NULL,
+// sender_nick_name varchar(64) DEFAULT NULL,
+// msg_from int NOT NULL ,
+// content varchar(1000) NOT NULL ,
+// sender_platform_id int NOT NULL ,
+// send_time INTEGER DEFAULT NULL ,
+// create_time INTEGER DEFAULT NULL,
+// ex varchar(1024) DEFAULT NULL,
+// PRIMARY KEY (client_msg_id)
+// )`
+
+// å é¤äŧč¯īŧå¯čŊäŧ蝿˛Ąæ
+// įĄŽčŽ¤å é¤īŧåč¯äŧč¯ ID
+// æ¸
įŠēčå¤ŠčŽ°åŊįåīŧäŧ蝿īŧäŊæ¯čå¤ŠčŽ°åŊæ˛Ąæ
+// DeleteMlessageFromlocalAndSvr
+// db
+
+// ä¸åįäŧ蝿Ŧå°æä¸ä¸ĒåįŦį襨īŧå
ļä¸åčįč¯äšæ¯čŋæ ˇīŧæä¸ä¸Ēåčį襨
+
+// å é¤įč¯īŧå
å é¤čĄ¨īŧå¨å 餿Ŧå°į seq īŧæåæ¸
æĨčŋä¸Ē襨ã
+// å 餿æįæļæ¯įč¯īŧå
¨é¨éŊæ¯æåĄå¨æĨåīŧč°į¨æĨåŖīŧįļååŽĸæˇį̝æļå°åč°īŧįļåå 餿Ŧå°įææįäŋĄæ¯ã
+// å é¤ä¸æĄäŋĄæ¯īŧå 餿æ°įč¯īŧäŧč¯ä¸æä¸æĄææ°įæļæ¯īŧå é¤čŋæĄæļæ¯īŧäŧč¯ä¸å°ąæ˛Ąææļæ¯äēīŧæ¤æļæžį¤ē῝įŦŦäēæĄã
+// å垎äŋĄä¸æ ˇīŧæäģŦ Go get error 忝īŧįļåč°į¨ææ°į APi
+
+type LocalChatLog struct {
+ ClientMsgID string `gorm:"column:client_msg_id;primary_key;type:char(64)" json:"clientMsgID"`
+ ServerMsgID string `gorm:"column:server_msg_id;type:char(64)" json:"serverMsgID"`
+ SendID string `gorm:"column:send_id;type:char(64)" json:"sendID"`
+ RecvID string `gorm:"column:recv_id;index:index_recv_id;type:char(64)" json:"recvID"`
+ SenderPlatformID int32 `gorm:"column:sender_platform_id" json:"senderPlatformID"`
+ SenderNickname string `gorm:"column:sender_nick_name;type:varchar(255)" json:"senderNickname"`
+ SenderFaceURL string `gorm:"column:sender_face_url;type:varchar(255)" json:"senderFaceURL"`
+ SessionType int32 `gorm:"column:session_type" json:"sessionType"`
+ MsgFrom int32 `gorm:"column:msg_from" json:"msgFrom"`
+ ContentType int32 `gorm:"column:content_type;index:content_type_alone" json:"contentType"`
+ Content string `gorm:"column:content;type:varchar(1000)" json:"content"`
+ IsRead bool `gorm:"column:is_read" json:"isRead"`
+ Status int32 `gorm:"column:status" json:"status"`
+ Seq int64 `gorm:"column:seq;index:index_seq;default:0" json:"seq"`
+ SendTime int64 `gorm:"column:send_time;index:index_send_time;" json:"sendTime"`
+ CreateTime int64 `gorm:"column:create_time" json:"createTime"`
+ AttachedInfo string `gorm:"column:attached_info;type:varchar(1024)" json:"attachedInfo"`
+ Ex string `gorm:"column:ex;type:varchar(1024)" json:"ex"`
+ LocalEx string `gorm:"column:local_ex;type:varchar(1024)" json:"localEx"`
+ IsReact bool `gorm:"column:is_react" json:"isReact"`
+ IsExternalExtensions bool `gorm:"column:is_external_extensions" json:"isExternalExtensions"`
+ MsgFirstModifyTime int64 `gorm:"column:msg_first_modify_time" json:"msgFirstModifyTime"`
+}
+
+type LocalErrChatLog struct {
+ Seq int64 `gorm:"column:seq;primary_key" json:"seq"`
+ ClientMsgID string `gorm:"column:client_msg_id;type:char(64)" json:"clientMsgID"`
+ ServerMsgID string `gorm:"column:server_msg_id;type:char(64)" json:"serverMsgID"`
+ SendID string `gorm:"column:send_id;type:char(64)" json:"sendID"`
+ RecvID string `gorm:"column:recv_id;type:char(64)" json:"recvID"`
+ SenderPlatformID int32 `gorm:"column:sender_platform_id" json:"senderPlatformID"`
+ SenderNickname string `gorm:"column:sender_nick_name;type:varchar(255)" json:"senderNickname"`
+ SenderFaceURL string `gorm:"column:sender_face_url;type:varchar(255)" json:"senderFaceURL"`
+ SessionType int32 `gorm:"column:session_type" json:"sessionType"`
+ MsgFrom int32 `gorm:"column:msg_from" json:"msgFrom"`
+ ContentType int32 `gorm:"column:content_type" json:"contentType"`
+ Content string `gorm:"column:content;type:varchar(1000)" json:"content"`
+ IsRead bool `gorm:"column:is_read" json:"isRead"`
+ Status int32 `gorm:"column:status" json:"status"`
+ SendTime int64 `gorm:"column:send_time" json:"sendTime"`
+ CreateTime int64 `gorm:"column:create_time" json:"createTime"`
+ AttachedInfo string `gorm:"column:attached_info;type:varchar(1024)" json:"attachedInfo"`
+ Ex string `gorm:"column:ex;type:varchar(1024)" json:"ex"`
+}
+type TempCacheLocalChatLog struct {
+ ClientMsgID string `gorm:"column:client_msg_id;primary_key;type:char(64)" json:"clientMsgID"`
+ ServerMsgID string `gorm:"column:server_msg_id;type:char(64)" json:"serverMsgID"`
+ SendID string `gorm:"column:send_id;type:char(64)" json:"sendID"`
+ RecvID string `gorm:"column:recv_id;type:char(64)" json:"recvID"`
+ SenderPlatformID int32 `gorm:"column:sender_platform_id" json:"senderPlatformID"`
+ SenderNickname string `gorm:"column:sender_nick_name;type:varchar(255)" json:"senderNickname"`
+ SenderFaceURL string `gorm:"column:sender_face_url;type:varchar(255)" json:"senderFaceURL"`
+ SessionType int32 `gorm:"column:session_type" json:"sessionType"`
+ MsgFrom int32 `gorm:"column:msg_from" json:"msgFrom"`
+ ContentType int32 `gorm:"column:content_type" json:"contentType"`
+ Content string `gorm:"column:content;type:varchar(1000)" json:"content"`
+ IsRead bool `gorm:"column:is_read" json:"isRead"`
+ Status int32 `gorm:"column:status" json:"status"`
+ Seq int64 `gorm:"column:seq;default:0" json:"seq"`
+ SendTime int64 `gorm:"column:send_time;" json:"sendTime"`
+ CreateTime int64 `gorm:"column:create_time" json:"createTime"`
+ AttachedInfo string `gorm:"column:attached_info;type:varchar(1024)" json:"attachedInfo"`
+ Ex string `gorm:"column:ex;type:varchar(1024)" json:"ex"`
+}
+
+// `create table if not exists conversation (
+//
+// conversation_id char(128) NOT NULL,
+// conversation_type int(11) NOT NULL,
+// user_id varchar(128) DEFAULT NULL,
+// group_id varchar(128) DEFAULT NULL,
+// show_name varchar(128) NOT NULL,
+// face_url varchar(128) NOT NULL,
+// recv_msg_opt int(11) NOT NULL ,
+// unread_count int(11) NOT NULL ,
+// latest_msg varchar(255) NOT NULL ,
+// latest_msg_send_time INTEGER(255) NOT NULL ,
+// draft_text varchar(255) DEFAULT NULL ,
+// draft_timestamp INTEGER(255) DEFAULT NULL ,
+// is_pinned int(10) NOT NULL ,
+// PRIMARY KEY (conversation_id)
+//
+// )
+type LocalConversation struct {
+ ConversationID string `gorm:"column:conversation_id;primary_key;type:char(128)" json:"conversationID"`
+ ConversationType int32 `gorm:"column:conversation_type" json:"conversationType"`
+ UserID string `gorm:"column:user_id;type:char(64)" json:"userID"`
+ GroupID string `gorm:"column:group_id;type:char(128)" json:"groupID"`
+ ShowName string `gorm:"column:show_name;type:varchar(255)" json:"showName"`
+ FaceURL string `gorm:"column:face_url;type:varchar(255)" json:"faceURL"`
+ RecvMsgOpt int32 `gorm:"column:recv_msg_opt" json:"recvMsgOpt"`
+ UnreadCount int32 `gorm:"column:unread_count" json:"unreadCount"`
+ GroupAtType int32 `gorm:"column:group_at_type" json:"groupAtType"`
+ LatestMsg string `gorm:"column:latest_msg;type:varchar(1000)" json:"latestMsg"`
+ LatestMsgSendTime int64 `gorm:"column:latest_msg_send_time;index:index_latest_msg_send_time" json:"latestMsgSendTime"`
+ DraftText string `gorm:"column:draft_text" json:"draftText"`
+ DraftTextTime int64 `gorm:"column:draft_text_time" json:"draftTextTime"`
+ IsPinned bool `gorm:"column:is_pinned" json:"isPinned"`
+ IsPrivateChat bool `gorm:"column:is_private_chat" json:"isPrivateChat"`
+ BurnDuration int32 `gorm:"column:burn_duration;default:30" json:"burnDuration"`
+ IsNotInGroup bool `gorm:"column:is_not_in_group" json:"isNotInGroup"`
+ UpdateUnreadCountTime int64 `gorm:"column:update_unread_count_time" json:"updateUnreadCountTime"`
+ AttachedInfo string `gorm:"column:attached_info;type:varchar(1024)" json:"attachedInfo"`
+ Ex string `gorm:"column:ex;type:varchar(1024)" json:"ex"`
+ MaxSeq int64 `gorm:"column:max_seq" json:"maxSeq"`
+ MinSeq int64 `gorm:"column:min_seq" json:"minSeq"`
+ HasReadSeq int64 `gorm:"column:has_read_seq" json:"hasReadSeq"`
+ MsgDestructTime int64 `gorm:"column:msg_destruct_time;default:604800" json:"msgDestructTime"`
+ IsMsgDestruct bool `gorm:"column:is_msg_destruct;default:false" json:"isMsgDestruct"`
+}
+type LocalConversationUnreadMessage struct {
+ ConversationID string `gorm:"column:conversation_id;primary_key;type:char(128)" json:"conversationID"`
+ ClientMsgID string `gorm:"column:client_msg_id;primary_key;type:char(64)" json:"clientMsgID"`
+ SendTime int64 `gorm:"column:send_time" json:"sendTime"`
+ Ex string `gorm:"column:ex;type:varchar(1024)" json:"ex"`
+}
+
+// message GroupRequest{
+// string UserID = 1;
+// string GroupID = 2;
+// string HandleResult = 3;
+// string ReqMsg = 4;
+// string HandleMsg = 5;
+// int64 ReqTime = 6;
+// string HandleUserID = 7;
+// int64 HandleTime = 8;
+// string Ex = 9;
+// }open_im_sdk.GroupRequest == imdb.GroupRequest
+type LocalAdminGroupRequest struct {
+ LocalGroupRequest
+}
+
+type LocalChatLogReactionExtensions struct {
+ ClientMsgID string `gorm:"column:client_msg_id;primary_key;type:char(64)" json:"clientMsgID"`
+ LocalReactionExtensions []byte `gorm:"column:local_reaction_extensions" json:"localReactionExtensions"`
+}
+type LocalWorkMomentsNotification struct {
+ JsonDetail string `gorm:"column:json_detail"`
+ CreateTime int64 `gorm:"create_time"`
+}
+
+type WorkMomentNotificationMsg struct {
+ NotificationMsgType int32 `json:"notificationMsgType"`
+ ReplyUserName string `json:"replyUserName"`
+ ReplyUserID string `json:"replyUserID"`
+ Content string `json:"content"`
+ ContentID string `json:"contentID"`
+ WorkMomentID string `json:"workMomentID"`
+ UserID string `json:"userID"`
+ UserName string `json:"userName"`
+ FaceURL string `json:"faceURL"`
+ WorkMomentContent string `json:"workMomentContent"`
+ CreateTime int32 `json:"createTime"`
+}
+
+func (LocalWorkMomentsNotification) TableName() string {
+ return "local_work_moments_notification"
+}
+
+type LocalWorkMomentsNotificationUnreadCount struct {
+ UnreadCount int `gorm:"unread_count" json:"unreadCount"`
+}
+
+func (LocalWorkMomentsNotificationUnreadCount) TableName() string {
+ return "local_work_moments_notification_unread_count"
+}
+
+type NotificationSeqs struct {
+ ConversationID string `gorm:"column:conversation_id;primary_key;type:char(128)" json:"conversationID"`
+ Seq int64 `gorm:"column:seq" json:"seq"`
+}
+
+func (NotificationSeqs) TableName() string {
+ return "local_notification_seqs"
+}
+
+type LocalUpload struct {
+ PartHash string `gorm:"column:part_hash;primary_key" json:"partHash"`
+ UploadID string `gorm:"column:upload_id;type:varchar(1000)" json:"uploadID"`
+ UploadInfo string `gorm:"column:upload_info;type:varchar(2000)" json:"uploadInfo"`
+ ExpireTime int64 `gorm:"column:expire_time" json:"expireTime"`
+ CreateTime int64 `gorm:"column:create_time" json:"createTime"`
+}
+
+func (LocalUpload) TableName() string {
+ return "local_uploads"
+}
+
+type LocalStranger struct {
+ UserID string `gorm:"column:user_id;primary_key;type:varchar(64)" json:"userID"`
+ Nickname string `gorm:"column:name;type:varchar(255)" json:"nickname"`
+ FaceURL string `gorm:"column:face_url;type:varchar(255)" json:"faceURL"`
+ CreateTime int64 `gorm:"column:create_time" json:"createTime"`
+ AppMangerLevel int32 `gorm:"column:app_manger_level" json:"-"`
+ Ex string `gorm:"column:ex;type:varchar(1024)" json:"ex"`
+ AttachedInfo string `gorm:"column:attached_info;type:varchar(1024)" json:"attachedInfo"`
+ GlobalRecvMsgOpt int32 `gorm:"column:global_recv_msg_opt" json:"globalRecvMsgOpt"`
+}
+
+func (LocalStranger) TableName() string {
+ return "local_stranger"
+}
+
+type LocalSendingMessages struct {
+ ConversationID string `gorm:"column:conversation_id;primary_key;type:char(128)" json:"conversationID"`
+ ClientMsgID string `gorm:"column:client_msg_id;primary_key;type:char(64)" json:"clientMsgID"`
+ Ex string `gorm:"column:ex;type:varchar(1024)" json:"ex"`
+}
+
+func (LocalSendingMessages) TableName() string {
+ return "local_sending_messages"
+}
+
+type LocalUserCommand struct {
+ UserID string `gorm:"column:user_id;type:char(128);primary_key" json:"userID"`
+ Type int32 `gorm:"column:type;primary_key" json:"type"`
+ Uuid string `gorm:"column:uuid;type:varchar(255);primary_key" json:"uuid"`
+ CreateTime int64 `gorm:"column:create_time" json:"createTime"`
+ Value string `gorm:"column:value;type:varchar(255)" json:"value"`
+ Ex string `gorm:"column:ex;type:varchar(1024)" json:"ex"`
+}
+
+func (LocalUserCommand) TableName() string {
+ return "local_user_command"
+}
+
+type StringArray []string
+
+func (a StringArray) Value() (driver.Value, error) {
+ return json.Marshal(a)
+}
+
+func (a *StringArray) Scan(value interface{}) error {
+ b, ok := value.([]byte)
+ if !ok {
+ return errs.New("type assertion to []byte failed").Wrap()
+ }
+ return json.Unmarshal(b, &a)
+}
+
+type LocalVersionSync struct {
+ Table string `gorm:"column:table;type:varchar(255);primary_key" json:"table"`
+ EntityID string `gorm:"column:entity_id;type:varchar(255);primary_key" json:"entityID"`
+ VersionID string `gorm:"column:version_id" json:"versionID"`
+ Version uint64 `gorm:"column:version" json:"version"`
+ CreateTime int64 `gorm:"column:create_time" json:"createTime"`
+ UIDList StringArray `gorm:"column:id_list;type:text" json:"uidList"`
+}
+
+func (LocalVersionSync) TableName() string {
+ return "local_sync_version"
+}
+
+type LocalAppSDKVersion struct {
+ Version string `gorm:"column:version;type:varchar(255);primary_key" json:"version"`
+}
+
+func (LocalAppSDKVersion) TableName() string {
+ return "local_app_sdk_version"
+}
diff --git a/go/chao-sdk-core/pkg/db/notification_model.go b/go/chao-sdk-core/pkg/db/notification_model.go
new file mode 100644
index 0000000..70fc138
--- /dev/null
+++ b/go/chao-sdk-core/pkg/db/notification_model.go
@@ -0,0 +1,44 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build !js
+// +build !js
+
+package db
+
+import (
+ "context"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+)
+
+func (d *DataBase) SetNotificationSeq(ctx context.Context, conversationID string, seq int64) error {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ cursor := d.conn.WithContext(ctx).Model(&model_struct.NotificationSeqs{}).Where("conversation_id = ?", conversationID).Updates(map[string]interface{}{"seq": seq})
+ if cursor.Error != nil {
+ return utils.Wrap(cursor.Error, "Updates failed")
+ }
+ if cursor.RowsAffected == 0 {
+ return utils.Wrap(d.conn.WithContext(ctx).Create(&model_struct.NotificationSeqs{ConversationID: conversationID, Seq: seq}).Error, "Create failed")
+ }
+ return nil
+}
+
+func (d *DataBase) GetNotificationAllSeqs(ctx context.Context) ([]*model_struct.NotificationSeqs, error) {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ var seqs []*model_struct.NotificationSeqs
+ return seqs, utils.Wrap(d.conn.WithContext(ctx).Where("1=1").Find(&seqs).Error, "GetNotificationAllSeqs failed")
+}
diff --git a/go/chao-sdk-core/pkg/db/sending_messages_model.go b/go/chao-sdk-core/pkg/db/sending_messages_model.go
new file mode 100644
index 0000000..5065622
--- /dev/null
+++ b/go/chao-sdk-core/pkg/db/sending_messages_model.go
@@ -0,0 +1,43 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build !js
+// +build !js
+
+package db
+
+import (
+ "context"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+)
+
+func (d *DataBase) InsertSendingMessage(ctx context.Context, message *model_struct.LocalSendingMessages) error {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ return utils.Wrap(d.conn.WithContext(ctx).Create(message).Error, "InsertSendingMessage failed")
+}
+
+func (d *DataBase) DeleteSendingMessage(ctx context.Context, conversationID, clientMsgID string) error {
+ d.groupMtx.Lock()
+ defer d.groupMtx.Unlock()
+ localSendingMessage := model_struct.LocalSendingMessages{ConversationID: conversationID, ClientMsgID: clientMsgID}
+ return utils.Wrap(d.conn.WithContext(ctx).Delete(&localSendingMessage).Error, "DeleteSendingMessage failed")
+}
+func (d *DataBase) GetAllSendingMessages(ctx context.Context) (friendRequests []*model_struct.LocalSendingMessages, err error) {
+ d.friendMtx.Lock()
+ defer d.friendMtx.Unlock()
+ err = utils.Wrap(d.conn.WithContext(ctx).Find(&friendRequests).Error, "GetAllSendingMessages failed")
+ return friendRequests, utils.Wrap(err, "GetAllSendingMessages failed")
+}
diff --git a/go/chao-sdk-core/pkg/db/seq_data_model.go b/go/chao-sdk-core/pkg/db/seq_data_model.go
new file mode 100644
index 0000000..2e35611
--- /dev/null
+++ b/go/chao-sdk-core/pkg/db/seq_data_model.go
@@ -0,0 +1,47 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build !js
+// +build !js
+
+package db
+
+import (
+ "context"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+)
+
+func (d *DataBase) GetMinSeq(ctx context.Context, ID string) (uint32, error) {
+ var seqData model_struct.LocalSeq
+ return seqData.MinSeq, utils.Wrap(d.conn.WithContext(ctx).First(&seqData).Error, "GetMinSeq failed")
+}
+
+func (d *DataBase) SetMinSeq(ctx context.Context, ID string, minSeq uint32) error {
+ seqData := model_struct.LocalSeq{ID: ID, MinSeq: minSeq}
+ t := d.conn.WithContext(ctx).Updates(&seqData)
+ if t.RowsAffected == 0 {
+ return utils.Wrap(d.conn.WithContext(ctx).Create(seqData).Error, "Updates failed")
+ } else {
+ return utils.Wrap(t.Error, "SetMinSeq failed")
+ }
+}
+
+func (d *DataBase) GetUserMinSeq(ctx context.Context) (uint32, error) {
+ return 0, nil
+}
+
+func (d *DataBase) GetGroupMinSeq(ctx context.Context, groupID string) (uint32, error) {
+ return 0, nil
+}
diff --git a/go/chao-sdk-core/pkg/db/stranger_model.go b/go/chao-sdk-core/pkg/db/stranger_model.go
new file mode 100644
index 0000000..b56b667
--- /dev/null
+++ b/go/chao-sdk-core/pkg/db/stranger_model.go
@@ -0,0 +1,58 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build !js
+// +build !js
+
+package db
+
+import (
+ "context"
+ "errors"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "gorm.io/gorm"
+)
+
+func (d *DataBase) GetStrangerInfo(ctx context.Context, userIDs []string) ([]*model_struct.LocalStranger, error) {
+ d.friendMtx.Lock()
+ defer d.friendMtx.Unlock()
+ var friendList []model_struct.LocalStranger
+ err := utils.Wrap(d.conn.WithContext(ctx).Where("user_id IN ?", userIDs).Find(&friendList).Error, "GetFriendInfoListByFriendUserID failed")
+ var transfer []*model_struct.LocalStranger
+ for _, v := range friendList {
+ v1 := v
+ transfer = append(transfer, &v1)
+ }
+ return transfer, err
+}
+
+func (d *DataBase) SetStrangerInfo(ctx context.Context, localStrangerList []*model_struct.LocalStranger) error {
+ //TODO Can be optimized into two chan batch update or insert operations
+ for _, existingData := range localStrangerList {
+ result := d.conn.First(&existingData, "user_id = ?", existingData.UserID)
+ if errors.Is(result.Error, gorm.ErrRecordNotFound) {
+ // Data does not exist, perform insert operation
+ err := d.conn.Create(&existingData).Error
+ return err
+ } else if result.Error != nil {
+ return result.Error
+ }
+ err := d.conn.Save(&existingData).Error
+ if err != nil {
+ return err
+ }
+ }
+ return nil
+}
diff --git a/go/chao-sdk-core/pkg/db/super_group_chat_log_model.go b/go/chao-sdk-core/pkg/db/super_group_chat_log_model.go
new file mode 100644
index 0000000..ac80e29
--- /dev/null
+++ b/go/chao-sdk-core/pkg/db/super_group_chat_log_model.go
@@ -0,0 +1,423 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build !js
+// +build !js
+
+package db
+
+import (
+ "context"
+ "errors"
+ "fmt"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/sdk_struct"
+
+ "gorm.io/gorm"
+)
+
+func (d *DataBase) initSuperLocalChatLog(ctx context.Context, groupID string) {
+ if !d.conn.WithContext(ctx).Migrator().HasTable(utils.GetConversationTableName(groupID)) {
+ d.conn.WithContext(ctx).Table(utils.GetConversationTableName(groupID)).AutoMigrate(&model_struct.LocalChatLog{})
+ }
+}
+func (d *DataBase) SuperGroupBatchInsertMessageList(ctx context.Context, MessageList []*model_struct.LocalChatLog, groupID string) error {
+ if MessageList == nil {
+ return nil
+ }
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ return utils.Wrap(d.conn.WithContext(ctx).Table(utils.GetConversationTableName(groupID)).Create(MessageList).Error, "SuperGroupBatchInsertMessageList failed")
+}
+func (d *DataBase) SuperGroupInsertMessage(ctx context.Context, Message *model_struct.LocalChatLog, groupID string) error {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ return utils.Wrap(d.conn.WithContext(ctx).Table(utils.GetConversationTableName(groupID)).Create(Message).Error, "SuperGroupInsertMessage failed")
+}
+func (d *DataBase) SuperGroupDeleteAllMessage(ctx context.Context, groupID string) error {
+ return utils.Wrap(d.conn.WithContext(ctx).Session(&gorm.Session{AllowGlobalUpdate: true}).Table(utils.GetConversationTableName(groupID)).Delete(&model_struct.LocalChatLog{}).Error, "SuperGroupDeleteAllMessage failed")
+}
+func (d *DataBase) SuperGroupSearchMessageByKeyword(ctx context.Context, contentType []int, keywordList []string, keywordListMatchType int, sourceID string, startTime, endTime int64, sessionType, offset, count int) (result []*model_struct.LocalChatLog, err error) {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ var messageList []model_struct.LocalChatLog
+ var condition string
+ var subCondition string
+ if keywordListMatchType == constant.KeywordMatchOr {
+ for i := 0; i < len(keywordList); i++ {
+ if i == 0 {
+ subCondition += "And ("
+ }
+ if i+1 >= len(keywordList) {
+ subCondition += "content like " + "'%" + keywordList[i] + "%') "
+ } else {
+ subCondition += "content like " + "'%" + keywordList[i] + "%' " + "or "
+
+ }
+ }
+ } else {
+ for i := 0; i < len(keywordList); i++ {
+ if i == 0 {
+ subCondition += "And ("
+ }
+ if i+1 >= len(keywordList) {
+ subCondition += "content like " + "'%" + keywordList[i] + "%') "
+ } else {
+ subCondition += "content like " + "'%" + keywordList[i] + "%' " + "and "
+ }
+ }
+ }
+ condition = fmt.Sprintf("recv_id=%q And send_time between %d and %d AND status <=%d And content_type IN ? ", sourceID, startTime, endTime, constant.MsgStatusSendFailed)
+
+ condition += subCondition
+ err = utils.Wrap(d.conn.WithContext(ctx).Table(utils.GetConversationTableName(sourceID)).Where(condition, contentType).Order("send_time DESC").Offset(offset).Limit(count).Find(&messageList).Error, "InsertMessage failed")
+
+ for _, v := range messageList {
+ v1 := v
+ result = append(result, &v1)
+ }
+ return result, err
+}
+
+func (d *DataBase) SuperGroupSearchAllMessageByContentType(ctx context.Context, groupID string, contentType int32) (result []*model_struct.LocalChatLog, err error) {
+ err = d.conn.WithContext(ctx).Table(utils.GetConversationTableName(groupID)).Where("content_type = ?", contentType).Find(&result).Error
+ return result, err
+}
+
+func (d *DataBase) SuperGroupSearchMessageByContentType(ctx context.Context, contentType []int, sourceID string, startTime, endTime int64, sessionType, offset, count int) (result []*model_struct.LocalChatLog, err error) {
+ var messageList []model_struct.LocalChatLog
+ var condition string
+ condition = fmt.Sprintf("session_type=%d And recv_id==%q And send_time between %d and %d AND status <=%d And content_type IN ?", sessionType, sourceID, startTime, endTime, constant.MsgStatusSendFailed)
+
+ err = utils.Wrap(d.conn.WithContext(ctx).Table(utils.GetConversationTableName(sourceID)).Where(condition, contentType).Order("send_time DESC").Offset(offset).Limit(count).Find(&messageList).Error, "SearchMessage failed")
+ for _, v := range messageList {
+ v1 := v
+ result = append(result, &v1)
+ }
+ return result, err
+}
+
+func (d *DataBase) SuperGroupSearchMessageByContentTypeAndKeyword(ctx context.Context, contentType []int, keywordList []string, keywordListMatchType int, startTime, endTime int64, groupID string) (result []*model_struct.LocalChatLog, err error) {
+ var messageList []model_struct.LocalChatLog
+ var condition string
+ var subCondition string
+ if keywordListMatchType == constant.KeywordMatchOr {
+ for i := 0; i < len(keywordList); i++ {
+ if i == 0 {
+ subCondition += "And ("
+ }
+ if i+1 >= len(keywordList) {
+ subCondition += "content like " + "'%" + keywordList[i] + "%') "
+ } else {
+ subCondition += "content like " + "'%" + keywordList[i] + "%' " + "or "
+
+ }
+ }
+ } else {
+ for i := 0; i < len(keywordList); i++ {
+ if i == 0 {
+ subCondition += "And ("
+ }
+ if i+1 >= len(keywordList) {
+ subCondition += "content like " + "'%" + keywordList[i] + "%') "
+ } else {
+ subCondition += "content like " + "'%" + keywordList[i] + "%' " + "and "
+ }
+ }
+ }
+ condition = fmt.Sprintf("send_time between %d and %d AND status <=%d And content_type IN ? ", startTime, endTime, constant.MsgStatusSendFailed)
+ condition += subCondition
+ err = utils.Wrap(d.conn.WithContext(ctx).Table(utils.GetConversationTableName(groupID)).Where(condition, contentType).Order("send_time DESC").Find(&messageList).Error, "SearchMessage failed")
+ for _, v := range messageList {
+ v1 := v
+ result = append(result, &v1)
+ }
+ return result, err
+}
+func (d *DataBase) SuperGroupBatchUpdateMessageList(ctx context.Context, MessageList []*model_struct.LocalChatLog) error {
+ if MessageList == nil {
+ return nil
+ }
+
+ for _, v := range MessageList {
+ v1 := new(model_struct.LocalChatLog)
+ v1.ClientMsgID = v.ClientMsgID
+ v1.Seq = v.Seq
+ v1.Status = v.Status
+ err := d.SuperGroupUpdateMessage(ctx, v1)
+ if err != nil {
+ return utils.Wrap(err, "BatchUpdateMessageList failed")
+ }
+
+ }
+ return nil
+}
+
+func (d *DataBase) SuperGroupMessageIfExists(ctx context.Context, ClientMsgID string) (bool, error) {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ var count int64
+ t := d.conn.WithContext(ctx).Model(&model_struct.LocalChatLog{}).Where("client_msg_id = ?",
+ ClientMsgID).Count(&count)
+ if t.Error != nil {
+ return false, utils.Wrap(t.Error, "MessageIfExists get failed")
+ }
+ if count != 1 {
+ return false, nil
+ } else {
+ return true, nil
+ }
+}
+func (d *DataBase) SuperGroupIsExistsInErrChatLogBySeq(ctx context.Context, seq int64) bool {
+ return true
+}
+func (d *DataBase) SuperGroupMessageIfExistsBySeq(ctx context.Context, seq int64) (bool, error) {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ var count int64
+ t := d.conn.WithContext(ctx).Model(&model_struct.LocalChatLog{}).Where("seq = ?",
+ seq).Count(&count)
+ if t.Error != nil {
+ return false, utils.Wrap(t.Error, "MessageIfExistsBySeq get failed")
+ }
+ if count != 1 {
+ return false, nil
+ } else {
+ return true, nil
+ }
+}
+func (d *DataBase) SuperGroupGetMessage(ctx context.Context, msg *sdk_struct.MsgStruct) (*model_struct.LocalChatLog, error) {
+ d.initSuperLocalChatLog(ctx, msg.GroupID)
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ var c model_struct.LocalChatLog
+ return &c, utils.Wrap(d.conn.WithContext(ctx).Table(utils.GetConversationTableName(msg.GroupID)).Where("client_msg_id = ?",
+ msg.ClientMsgID).Take(&c).Error, "GetMessage failed")
+}
+
+func (d *DataBase) SuperGroupGetAllUnDeleteMessageSeqList(ctx context.Context) ([]uint32, error) {
+ var seqList []uint32
+ return seqList, utils.Wrap(d.conn.WithContext(ctx).Model(&model_struct.LocalChatLog{}).Where("status != 4").Select("seq").Find(&seqList).Error, "")
+}
+
+func (d *DataBase) SuperGroupUpdateColumnsMessage(ctx context.Context, ClientMsgID, groupID string, args map[string]interface{}) error {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ t := d.conn.WithContext(ctx).Table(utils.GetConversationTableName(groupID)).Where(
+ "client_msg_id = ? ", ClientMsgID).Updates(args)
+ if t.RowsAffected == 0 {
+ return utils.Wrap(errors.New("RowsAffected == 0"), "no update")
+ }
+ return utils.Wrap(t.Error, "UpdateColumnsConversation failed")
+}
+func (d *DataBase) SuperGroupUpdateMessage(ctx context.Context, c *model_struct.LocalChatLog) error {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ t := d.conn.WithContext(ctx).Table(utils.GetConversationTableName(c.RecvID)).Updates(c)
+ if t.RowsAffected == 0 {
+ return utils.Wrap(errors.New("RowsAffected == 0"), "no update")
+ }
+ return utils.Wrap(t.Error, "UpdateMessage failed")
+}
+func (d *DataBase) SuperGroupUpdateSpecificContentTypeMessage(ctx context.Context, contentType int, groupID string, args map[string]interface{}) error {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ t := d.conn.WithContext(ctx).Table(utils.GetConversationTableName(groupID)).Where("content_type = ?", contentType).Updates(args)
+ if t.RowsAffected == 0 {
+ return utils.Wrap(errors.New("RowsAffected == 0"), "no update")
+ }
+ return utils.Wrap(t.Error, "UpdateMessage failed")
+}
+
+//funcation (d *DataBase) SuperGroupDeleteAllMessage(ctx context.Context, ) error {
+// d.mRWMutex.Lock()
+// defer d.mRWMutex.Unlock()
+// err := d.conn.WithContext(ctx).Model(&model_struct.LocalChatLog{}).Exec("update local_chat_logs set status = ?,content = ? ", constant.MsgStatusHasDeleted, "").Error
+// return utils.Wrap(err, "delete all message error")
+//}
+
+func (d *DataBase) SuperGroupUpdateMessageStatusBySourceID(ctx context.Context, sourceID string, status, sessionType int32) error {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ var condition string
+ if sourceID == d.loginUserID && sessionType == constant.SingleChatType {
+ condition = "send_id=? And recv_id=? AND session_type=?"
+ } else {
+ condition = "(send_id=? or recv_id=?)AND session_type=?"
+ }
+ t := d.conn.WithContext(ctx).Table(utils.GetConversationTableName(sourceID)).Where(condition, sourceID, sourceID, sessionType).Updates(model_struct.LocalChatLog{Status: status})
+ if t.RowsAffected == 0 {
+ return utils.Wrap(errors.New("RowsAffected == 0"), "no update")
+ }
+ return utils.Wrap(t.Error, "UpdateMessageStatusBySourceID failed")
+}
+func (d *DataBase) SuperGroupUpdateMessageTimeAndStatus(ctx context.Context, msg *sdk_struct.MsgStruct) error {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ t := d.conn.WithContext(ctx).Table(utils.GetConversationTableName(msg.GroupID)).Where("client_msg_id=? And seq=?", msg.ClientMsgID, 0).Updates(model_struct.LocalChatLog{Status: msg.Status, SendTime: msg.SendTime, ServerMsgID: msg.ServerMsgID})
+ if t.RowsAffected == 0 {
+ return utils.Wrap(errors.New("RowsAffected == 0"), "no update")
+ }
+ return utils.Wrap(t.Error, "SuperGroupUpdateMessageTimeAndStatus failed")
+}
+
+func (d *DataBase) SuperGroupGetMessageList(ctx context.Context, sourceID string, sessionType, count int, startTime int64, isReverse bool) (result []*model_struct.LocalChatLog, err error) {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ var messageList []model_struct.LocalChatLog
+ var condition, timeOrder, timeSymbol string
+ if isReverse {
+ timeOrder = "send_time ASC"
+ timeSymbol = ">"
+ } else {
+ timeOrder = "send_time DESC"
+ timeSymbol = "<"
+ }
+ condition = " recv_id = ? AND status <=? And session_type = ? And send_time " + timeSymbol + " ?"
+
+ err = utils.Wrap(d.conn.WithContext(ctx).Table(utils.GetConversationTableName(sourceID)).Where(condition, sourceID, constant.MsgStatusSendFailed, sessionType, startTime).
+ Order(timeOrder).Offset(0).Limit(count).Find(&messageList).Error, "GetMessageList failed")
+ for _, v := range messageList {
+ v1 := v
+ result = append(result, &v1)
+ }
+ return result, err
+}
+func (d *DataBase) SuperGroupGetMessageListNoTime(ctx context.Context, sourceID string, sessionType, count int, isReverse bool) (result []*model_struct.LocalChatLog, err error) {
+ d.initSuperLocalChatLog(ctx, sourceID)
+ var messageList []model_struct.LocalChatLog
+ var condition, timeOrder string
+ if isReverse {
+ timeOrder = "send_time ASC"
+ } else {
+ timeOrder = "send_time DESC"
+ }
+ condition = "recv_id = ? AND status <=? And session_type = ? "
+
+ err = utils.Wrap(d.conn.WithContext(ctx).Table(utils.GetConversationTableName(sourceID)).Where(condition, sourceID, constant.MsgStatusSendFailed, sessionType).
+ Order(timeOrder).Offset(0).Limit(count).Find(&messageList).Error, "GetMessageList failed")
+ for _, v := range messageList {
+ v1 := v
+ result = append(result, &v1)
+ }
+ return result, err
+}
+
+func (d *DataBase) SuperGroupGetSendingMessageList(ctx context.Context, groupID string) (result []*model_struct.LocalChatLog, err error) {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ var messageList []model_struct.LocalChatLog
+ err = utils.Wrap(d.conn.WithContext(ctx).Table(utils.GetConversationTableName(groupID)).Where("status = ?", constant.MsgStatusSending).Find(&messageList).Error, "GetMessageList failed")
+ for _, v := range messageList {
+ v1 := v
+ result = append(result, &v1)
+ }
+ return result, err
+}
+
+func (d *DataBase) SuperGroupUpdateGroupMessageHasRead(ctx context.Context, msgIDList []string, groupID string) error {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ t := d.conn.WithContext(ctx).Table(utils.GetConversationTableName(groupID)).Where(" client_msg_id in ?", msgIDList).Update("is_read", constant.HasRead)
+ if t.RowsAffected == 0 {
+ return utils.Wrap(errors.New("RowsAffected == 0"), "no update")
+ }
+ return utils.Wrap(t.Error, "UpdateMessageStatusBySourceID failed")
+}
+func (d *DataBase) SuperGroupUpdateGroupMessageFields(ctx context.Context, msgIDList []string, groupID string, args map[string]interface{}) error {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ t := d.conn.WithContext(ctx).Table(utils.GetConversationTableName(groupID)).Where(" client_msg_id in ?", msgIDList).Updates(args)
+ if t.RowsAffected == 0 {
+ return utils.Wrap(errors.New("RowsAffected == 0"), "no update")
+ }
+ return utils.Wrap(t.Error, "UpdateMessageStatusBySourceID failed")
+}
+
+func (d *DataBase) SuperGroupGetNormalMsgSeq(ctx context.Context) (int64, error) {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ var seq int64
+ err := d.conn.WithContext(ctx).Model(model_struct.LocalChatLog{}).Select("IFNULL(max(seq),0)").Find(&seq).Error
+ return seq, utils.Wrap(err, "GetNormalMsgSeq")
+}
+func (d *DataBase) SuperGroupGetNormalMinSeq(ctx context.Context, groupID string) (int64, error) {
+ var seq int64
+ err := d.conn.WithContext(ctx).Table(utils.GetConversationTableName(groupID)).Select("IFNULL(min(seq),0)").Where("seq >?", 0).Find(&seq).Error
+ return seq, utils.Wrap(err, "SuperGroupGetNormalMinSeq")
+}
+func (d *DataBase) SuperGroupGetTestMessage(ctx context.Context, seq int64) (*model_struct.LocalChatLog, error) {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ var c model_struct.LocalChatLog
+ return &c, utils.Wrap(d.conn.WithContext(ctx).Where("seq = ?",
+ seq).Find(&c).Error, "GetTestMessage failed")
+}
+
+func (d *DataBase) SuperGroupUpdateMsgSenderNickname(ctx context.Context, sendID, nickname string, sType int) error {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ return utils.Wrap(d.conn.WithContext(ctx).Model(model_struct.LocalChatLog{}).Where(
+ "send_id = ? and session_type = ? and sender_nick_name != ? ", sendID, sType, nickname).Updates(
+ map[string]interface{}{"sender_nick_name": nickname}).Error, utils.GetSelfFuncName()+" failed")
+}
+
+func (d *DataBase) SuperGroupUpdateMsgSenderFaceURL(ctx context.Context, sendID, faceURL string, sType int) error {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ return utils.Wrap(d.conn.WithContext(ctx).Model(model_struct.LocalChatLog{}).Where(
+ "send_id = ? and session_type = ? and sender_face_url != ? ", sendID, sType, faceURL).Updates(
+ map[string]interface{}{"sender_face_url": faceURL}).Error, utils.GetSelfFuncName()+" failed")
+}
+func (d *DataBase) SuperGroupUpdateMsgSenderFaceURLAndSenderNickname(ctx context.Context, sendID, faceURL, nickname string, sessionType int, groupID string) error {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ return utils.Wrap(d.conn.WithContext(ctx).Table(utils.GetConversationTableName(groupID)).Where(
+ "send_id = ? and session_type = ?", sendID, sessionType).Updates(
+ map[string]interface{}{"sender_face_url": faceURL, "sender_nick_name": nickname}).Error, utils.GetSelfFuncName()+" failed")
+}
+
+func (d *DataBase) SuperGroupGetMsgSeqByClientMsgID(ctx context.Context, clientMsgID string, groupID string) (uint32, error) {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ var seq uint32
+ err := utils.Wrap(d.conn.WithContext(ctx).Table(utils.GetConversationTableName(groupID)).Select("seq").Where("client_msg_id=?", clientMsgID).Take(&seq).Error, utils.GetSelfFuncName()+" failed")
+ return seq, err
+}
+
+func (d *DataBase) SuperGroupGetMsgSeqListByGroupID(ctx context.Context, groupID string) ([]uint32, error) {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ var seqList []uint32
+ err := utils.Wrap(d.conn.WithContext(ctx).Model(model_struct.LocalChatLog{}).Select("seq").Where("recv_id=?", groupID).Find(&seqList).Error, utils.GetSelfFuncName()+" failed")
+ return seqList, err
+}
+
+func (d *DataBase) SuperGroupGetMsgSeqListByPeerUserID(ctx context.Context, userID string) ([]uint32, error) {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ var seqList []uint32
+ err := utils.Wrap(d.conn.WithContext(ctx).Model(model_struct.LocalChatLog{}).Select("seq").Where("recv_id=? or send_id=?", userID, userID).Find(&seqList).Error, utils.GetSelfFuncName()+" failed")
+ return seqList, err
+}
+
+func (d *DataBase) SuperGroupGetMsgSeqListBySelfUserID(ctx context.Context, userID string) ([]uint32, error) {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ var seqList []uint32
+ err := utils.Wrap(d.conn.WithContext(ctx).Model(model_struct.LocalChatLog{}).Select("seq").Where("recv_id=? and send_id=?", userID, userID).Find(&seqList).Error, utils.GetSelfFuncName()+" failed")
+ return seqList, err
+}
diff --git a/go/chao-sdk-core/pkg/db/super_group_model.go b/go/chao-sdk-core/pkg/db/super_group_model.go
new file mode 100644
index 0000000..811a7ca
--- /dev/null
+++ b/go/chao-sdk-core/pkg/db/super_group_model.go
@@ -0,0 +1,63 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build !js
+// +build !js
+
+package db
+
+import (
+ "context"
+ "errors"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+)
+
+func (d *DataBase) InsertSuperGroup(ctx context.Context, groupInfo *model_struct.LocalGroup) error {
+ d.superGroupMtx.Lock()
+ defer d.superGroupMtx.Unlock()
+ return utils.Wrap(d.conn.WithContext(ctx).Table(constant.SuperGroupTableName).Create(groupInfo).Error, "InsertSuperGroup failed")
+}
+
+func (d *DataBase) DeleteAllSuperGroup(ctx context.Context) error {
+ d.superGroupMtx.Lock()
+ defer d.superGroupMtx.Unlock()
+ return utils.Wrap(d.conn.WithContext(ctx).Table(constant.SuperGroupTableName).Delete(&model_struct.LocalGroup{}).Error, "DeleteAllSuperGroup failed")
+}
+
+func (d *DataBase) GetSuperGroupInfoByGroupID(ctx context.Context, groupID string) (*model_struct.LocalGroup, error) {
+ d.superGroupMtx.Lock()
+ defer d.superGroupMtx.Unlock()
+ var g model_struct.LocalGroup
+ return &g, utils.Wrap(d.conn.WithContext(ctx).Table(constant.SuperGroupTableName).Where("group_id = ?", groupID).Take(&g).Error, "GetGroupList failed")
+}
+
+func (d *DataBase) UpdateSuperGroup(ctx context.Context, groupInfo *model_struct.LocalGroup) error {
+ d.superGroupMtx.Lock()
+ defer d.superGroupMtx.Unlock()
+
+ t := d.conn.WithContext(ctx).Table(constant.SuperGroupTableName).Select("*").Updates(*groupInfo)
+ if t.RowsAffected == 0 {
+ return utils.Wrap(errors.New("RowsAffected == 0"), "no update")
+ }
+ return utils.Wrap(t.Error, "")
+}
+
+func (d *DataBase) DeleteSuperGroup(ctx context.Context, groupID string) error {
+ d.superGroupMtx.Lock()
+ defer d.superGroupMtx.Unlock()
+ localGroup := model_struct.LocalGroup{GroupID: groupID}
+ return utils.Wrap(d.conn.WithContext(ctx).Table(constant.SuperGroupTableName).Delete(&localGroup).Error, "DeleteSuperGroup failed")
+}
diff --git a/go/chao-sdk-core/pkg/db/temp_cache_chat_log_model.go b/go/chao-sdk-core/pkg/db/temp_cache_chat_log_model.go
new file mode 100644
index 0000000..b837b96
--- /dev/null
+++ b/go/chao-sdk-core/pkg/db/temp_cache_chat_log_model.go
@@ -0,0 +1,36 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build !js
+// +build !js
+
+package db
+
+import (
+ "context"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+)
+
+func (d *DataBase) BatchInsertTempCacheMessageList(ctx context.Context, MessageList []*model_struct.TempCacheLocalChatLog) error {
+ if MessageList == nil {
+ return nil
+ }
+ return utils.Wrap(d.conn.WithContext(ctx).Create(MessageList).Error, "BatchInsertTempCacheMessageList failed")
+}
+func (d *DataBase) InsertTempCacheMessage(ctx context.Context, Message *model_struct.TempCacheLocalChatLog) error {
+
+ return utils.Wrap(d.conn.WithContext(ctx).Create(Message).Error, "InsertTempCacheMessage failed")
+
+}
diff --git a/go/chao-sdk-core/pkg/db/upload_model.go b/go/chao-sdk-core/pkg/db/upload_model.go
new file mode 100644
index 0000000..986c128
--- /dev/null
+++ b/go/chao-sdk-core/pkg/db/upload_model.go
@@ -0,0 +1,75 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build !js
+// +build !js
+
+package db
+
+import (
+ "context"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "time"
+
+ "github.com/openimsdk/tools/errs"
+)
+
+func (d *DataBase) GetUpload(ctx context.Context, partHash string) (*model_struct.LocalUpload, error) {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ var upload model_struct.LocalUpload
+ err := d.conn.WithContext(ctx).Where("part_hash = ?", partHash).Take(&upload).Error
+ if err != nil {
+ return nil, errs.Wrap(err)
+ }
+ return &upload, nil
+}
+
+func (d *DataBase) InsertUpload(ctx context.Context, upload *model_struct.LocalUpload) error {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ return errs.Wrap(d.conn.WithContext(ctx).Create(upload).Error)
+}
+
+func (d *DataBase) deleteUpload(ctx context.Context, partHash string) error {
+ return errs.Wrap(d.conn.WithContext(ctx).Where("part_hash = ?", partHash).Delete(&model_struct.LocalUpload{}).Error)
+}
+
+func (d *DataBase) UpdateUpload(ctx context.Context, upload *model_struct.LocalUpload) error {
+ d.groupMtx.Lock()
+ defer d.groupMtx.Unlock()
+ return errs.Wrap(d.conn.WithContext(ctx).Updates(upload).Error)
+}
+
+func (d *DataBase) DeleteUpload(ctx context.Context, partHash string) error {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ return d.deleteUpload(ctx, partHash)
+}
+
+func (d *DataBase) DeleteExpireUpload(ctx context.Context) error {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ var uploads []*model_struct.LocalUpload
+ err := d.conn.WithContext(ctx).Where("expire_time <= ?", time.Now().UnixMilli()).Find(&uploads).Error
+ if err != nil {
+ return errs.Wrap(err)
+ }
+ for _, upload := range uploads {
+ if err := d.deleteUpload(ctx, upload.PartHash); err != nil {
+ return err
+ }
+ }
+ return nil
+}
diff --git a/go/chao-sdk-core/pkg/db/user_command.go b/go/chao-sdk-core/pkg/db/user_command.go
new file mode 100644
index 0000000..ae60570
--- /dev/null
+++ b/go/chao-sdk-core/pkg/db/user_command.go
@@ -0,0 +1,74 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build !js
+// +build !js
+
+package db
+
+import (
+ "context"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/pkg/errors"
+)
+
+// ProcessUserCommandAdd adds a new user command to the database.
+func (d *DataBase) ProcessUserCommandAdd(ctx context.Context, command *model_struct.LocalUserCommand) error {
+ d.userMtx.Lock()
+ defer d.userMtx.Unlock()
+
+ userCommand := model_struct.LocalUserCommand{
+ UserID: command.UserID,
+ CreateTime: command.CreateTime,
+ Type: command.Type,
+ Uuid: command.Uuid,
+ Value: command.Value,
+ Ex: command.Ex,
+ }
+
+ return utils.Wrap(d.conn.WithContext(ctx).Create(&userCommand).Error, "ProcessUserCommandAdd failed")
+}
+
+// ProcessUserCommandUpdate updates an existing user command in the database.
+func (d *DataBase) ProcessUserCommandUpdate(ctx context.Context, command *model_struct.LocalUserCommand) error {
+ d.userMtx.Lock()
+ defer d.userMtx.Unlock()
+
+ t := d.conn.WithContext(ctx).Model(command).Select("*").Updates(*command)
+ if t.RowsAffected == 0 {
+ return utils.Wrap(errors.New("RowsAffected == 0"), "no update")
+ }
+ return utils.Wrap(t.Error, "")
+
+}
+
+// ProcessUserCommandDelete deletes a user command from the database.
+func (d *DataBase) ProcessUserCommandDelete(ctx context.Context, command *model_struct.LocalUserCommand) error {
+ d.userMtx.Lock()
+ defer d.userMtx.Unlock()
+
+ return utils.Wrap(d.conn.WithContext(ctx).Where("type = ? AND uuid = ?", command.Type, command.Uuid).Delete(&model_struct.LocalUserCommand{}).Error,
+ "ProcessUserCommandDelete failed")
+}
+
+// ProcessUserCommandGetAll retrieves user commands from the database.
+func (d *DataBase) ProcessUserCommandGetAll(ctx context.Context) ([]*model_struct.LocalUserCommand, error) {
+ d.userMtx.RLock()
+ defer d.userMtx.RUnlock()
+
+ var commands []*model_struct.LocalUserCommand
+ err := d.conn.WithContext(ctx).Find(&commands).Error
+ return commands, utils.Wrap(err, "ProcessUserCommandGetAll failed")
+}
diff --git a/go/chao-sdk-core/pkg/db/user_model.go b/go/chao-sdk-core/pkg/db/user_model.go
new file mode 100644
index 0000000..4e23cc7
--- /dev/null
+++ b/go/chao-sdk-core/pkg/db/user_model.go
@@ -0,0 +1,56 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build !js
+// +build !js
+
+package db
+
+import (
+ "context"
+ "errors"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+)
+
+func (d *DataBase) GetLoginUser(ctx context.Context, userID string) (*model_struct.LocalUser, error) {
+ d.userMtx.RLock()
+ defer d.userMtx.RUnlock()
+ var user model_struct.LocalUser
+ return &user, utils.Wrap(d.conn.WithContext(ctx).Where("user_id = ? ", userID).Take(&user).Error, "GetLoginUserInfo failed")
+}
+
+func (d *DataBase) UpdateLoginUser(ctx context.Context, user *model_struct.LocalUser) error {
+ d.userMtx.Lock()
+ defer d.userMtx.Unlock()
+ t := d.conn.WithContext(ctx).Model(user).Select("*").Updates(user)
+ if t.RowsAffected == 0 {
+ return utils.Wrap(errors.New("RowsAffected == 0"), "no update")
+ }
+ return utils.Wrap(t.Error, "UpdateLoginUser failed")
+}
+func (d *DataBase) UpdateLoginUserByMap(ctx context.Context, user *model_struct.LocalUser, args map[string]interface{}) error {
+ d.userMtx.Lock()
+ defer d.userMtx.Unlock()
+ t := d.conn.WithContext(ctx).Model(&user).Updates(args)
+ if t.RowsAffected == 0 {
+ return utils.Wrap(errors.New("RowsAffected == 0"), "no update")
+ }
+ return utils.Wrap(t.Error, "UpdateColumnsConversation failed")
+}
+func (d *DataBase) InsertLoginUser(ctx context.Context, user *model_struct.LocalUser) error {
+ d.userMtx.Lock()
+ defer d.userMtx.Unlock()
+ return utils.Wrap(d.conn.WithContext(ctx).Create(user).Error, "InsertLoginUser failed")
+}
diff --git a/go/chao-sdk-core/pkg/db/version_sync.go b/go/chao-sdk-core/pkg/db/version_sync.go
new file mode 100644
index 0000000..07ff73e
--- /dev/null
+++ b/go/chao-sdk-core/pkg/db/version_sync.go
@@ -0,0 +1,45 @@
+package db
+
+import (
+ "context"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/tools/errs"
+ "gorm.io/gorm"
+)
+
+func (d *DataBase) GetVersionSync(ctx context.Context, tableName, entityID string) (*model_struct.LocalVersionSync, error) {
+ d.versionMtx.RLock()
+ defer d.versionMtx.RUnlock()
+ var res model_struct.LocalVersionSync
+ return &res, errs.Wrap(d.conn.WithContext(ctx).Where("`table` = ? and `entity_id` = ?", tableName, entityID).Take(&res).Error)
+}
+
+func (d *DataBase) SetVersionSync(ctx context.Context, lv *model_struct.LocalVersionSync) error {
+ d.versionMtx.Lock()
+ defer d.versionMtx.Unlock()
+
+ var existing model_struct.LocalVersionSync
+ err := d.conn.WithContext(ctx).Where("`table` = ? AND `entity_id` = ?", lv.Table, lv.EntityID).First(&existing).Error
+
+ if err == gorm.ErrRecordNotFound {
+ if createErr := d.conn.WithContext(ctx).Create(lv).Error; createErr != nil {
+ return errs.Wrap(createErr)
+ }
+ return nil
+ } else if err != nil {
+ return errs.Wrap(err)
+ }
+
+ if updateErr := d.conn.WithContext(ctx).Model(&existing).Updates(lv).Error; updateErr != nil {
+ return errs.Wrap(updateErr)
+ }
+
+ return nil
+}
+
+func (d *DataBase) DeleteVersionSync(ctx context.Context, tableName, entityID string) error {
+ d.versionMtx.Lock()
+ defer d.versionMtx.Unlock()
+ localVersionSync := model_struct.LocalVersionSync{Table: tableName, EntityID: entityID}
+ return errs.WrapMsg(d.conn.WithContext(ctx).Delete(&localVersionSync).Error, "DeleteVersionSync failed")
+}
diff --git a/go/chao-sdk-core/pkg/db/work_moments_model.go b/go/chao-sdk-core/pkg/db/work_moments_model.go
new file mode 100644
index 0000000..ac7139e
--- /dev/null
+++ b/go/chao-sdk-core/pkg/db/work_moments_model.go
@@ -0,0 +1,96 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build !js
+// +build !js
+
+package db
+
+import (
+ "context"
+ "errors"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "gorm.io/gorm"
+ "time"
+)
+
+func (d *DataBase) InsertWorkMomentsNotification(ctx context.Context, jsonDetail string) error {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ workMomentsNotification := model_struct.LocalWorkMomentsNotification{
+ JsonDetail: jsonDetail,
+ CreateTime: time.Now().Unix(),
+ }
+ return utils.Wrap(d.conn.WithContext(ctx).Create(workMomentsNotification).Error, "")
+}
+
+func (d *DataBase) GetWorkMomentsNotification(ctx context.Context, offset, count int) (WorkMomentsNotifications []*model_struct.LocalWorkMomentsNotification, err error) {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ WorkMomentsNotifications = []*model_struct.LocalWorkMomentsNotification{}
+ err = utils.Wrap(d.conn.WithContext(ctx).Table("local_work_moments_notification").Order("create_time DESC").Offset(offset).Limit(count).Find(&WorkMomentsNotifications).Error, "")
+ return WorkMomentsNotifications, err
+}
+
+func (d *DataBase) GetWorkMomentsNotificationLimit(ctx context.Context, pageNumber, showNumber int) (WorkMomentsNotifications []*model_struct.LocalWorkMomentsNotification, err error) {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ WorkMomentsNotifications = []*model_struct.LocalWorkMomentsNotification{}
+ err = utils.Wrap(d.conn.WithContext(ctx).Table("local_work_moments_notification").Select("json_detail").Find(WorkMomentsNotifications).Error, "")
+ return WorkMomentsNotifications, err
+}
+
+func (d *DataBase) InitWorkMomentsNotificationUnreadCount(ctx context.Context) error {
+ var n int64
+ err := utils.Wrap(d.conn.WithContext(ctx).Model(&model_struct.LocalWorkMomentsNotificationUnreadCount{}).Count(&n).Error, "")
+ if err == nil {
+ if n == 0 {
+ c := model_struct.LocalWorkMomentsNotificationUnreadCount{UnreadCount: 0}
+ return utils.Wrap(d.conn.WithContext(ctx).Model(&model_struct.LocalWorkMomentsNotificationUnreadCount{}).Create(c).Error, "IncrConversationUnreadCount failed")
+ }
+ }
+ return err
+}
+
+func (d *DataBase) IncrWorkMomentsNotificationUnreadCount(ctx context.Context) error {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ c := model_struct.LocalWorkMomentsNotificationUnreadCount{}
+ t := d.conn.WithContext(ctx).Model(&c).Where("1=1").Update("unread_count", gorm.Expr("unread_count+?", 1))
+ if t.RowsAffected == 0 {
+ return utils.Wrap(errors.New("RowsAffected == 0"), "no update")
+ }
+ return utils.Wrap(t.Error, "IncrConversationUnreadCount failed")
+}
+
+func (d *DataBase) MarkAllWorkMomentsNotificationAsRead(ctx context.Context) (err error) {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ return utils.Wrap(d.conn.WithContext(ctx).Model(&model_struct.LocalWorkMomentsNotificationUnreadCount{}).Where("1=1").Updates(map[string]interface{}{"unread_count": 0}).Error, "")
+}
+
+func (d *DataBase) GetWorkMomentsUnReadCount(ctx context.Context) (workMomentsNotificationUnReadCount model_struct.LocalWorkMomentsNotificationUnreadCount, err error) {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ workMomentsNotificationUnReadCount = model_struct.LocalWorkMomentsNotificationUnreadCount{}
+ err = utils.Wrap(d.conn.WithContext(ctx).Model(&model_struct.LocalWorkMomentsNotificationUnreadCount{}).First(&workMomentsNotificationUnReadCount).Error, "")
+ return workMomentsNotificationUnReadCount, err
+}
+
+func (d *DataBase) ClearWorkMomentsNotification(ctx context.Context) (err error) {
+ d.mRWMutex.Lock()
+ defer d.mRWMutex.Unlock()
+ return utils.Wrap(d.conn.WithContext(ctx).Table("local_work_moments_notification").Where("1=1").Delete(&model_struct.LocalWorkMomentsNotification{}).Error, "")
+}
diff --git a/go/chao-sdk-core/pkg/db/working_group.go b/go/chao-sdk-core/pkg/db/working_group.go
new file mode 100644
index 0000000..c4bf356
--- /dev/null
+++ b/go/chao-sdk-core/pkg/db/working_group.go
@@ -0,0 +1,50 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build !js
+// +build !js
+
+package db
+
+import (
+ "context"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+)
+
+func (d *DataBase) GetJoinedWorkingGroupIDList(ctx context.Context) ([]string, error) {
+ groupList, err := d.GetJoinedGroupListDB(ctx)
+ if err != nil {
+ return nil, utils.Wrap(err, "")
+ }
+ var groupIDList []string
+ for _, v := range groupList {
+ if v.GroupType == constant.WorkingGroup {
+ groupIDList = append(groupIDList, v.GroupID)
+ }
+ }
+ return groupIDList, nil
+}
+
+func (d *DataBase) GetJoinedWorkingGroupList(ctx context.Context) ([]*model_struct.LocalGroup, error) {
+ groupList, err := d.GetJoinedGroupListDB(ctx)
+ var transfer []*model_struct.LocalGroup
+ for _, v := range groupList {
+ if v.GroupType == constant.WorkingGroup {
+ transfer = append(transfer, v)
+ }
+ }
+ return transfer, utils.Wrap(err, "GetJoinedSuperGroupList failed ")
+}
diff --git a/go/chao-sdk-core/pkg/network/http_client.go b/go/chao-sdk-core/pkg/network/http_client.go
new file mode 100644
index 0000000..dfbb428
--- /dev/null
+++ b/go/chao-sdk-core/pkg/network/http_client.go
@@ -0,0 +1,103 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package network
+
+import (
+ "bytes"
+ "encoding/json"
+ "errors"
+ "net"
+
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "io/ioutil"
+ "net/http"
+ "time"
+)
+
+func get(url string) (response []byte, err error) {
+ client := http.Client{Timeout: 5 * time.Second}
+ resp, err := client.Get(url)
+ if err != nil {
+ return nil, err
+ }
+ defer resp.Body.Close()
+ body, err := ioutil.ReadAll(resp.Body)
+ if err != nil {
+ return nil, err
+ }
+ return body, nil
+}
+func retry(url string, data interface{}, token string, attempts int, sleep time.Duration, fn func(string, interface{}, string) ([]byte, error)) ([]byte, error) {
+ b, err := fn(url, data, token)
+ if err != nil {
+ if attempts--; attempts > 0 {
+ time.Sleep(sleep)
+ return retry(url, data, token, attempts, 2*sleep, fn)
+ }
+ return nil, err
+ }
+ return b, nil
+}
+
+// application/json; charset=utf-8
+func Post2Api(url string, data interface{}, token string) (content []byte, err error) {
+ c, err := postLogic(url, data, token)
+ return c, utils.Wrap(err, " post")
+ return retry(url, data, token, 1, 10*time.Second, postLogic)
+}
+
+func Post2ApiForRead(url string, data interface{}, token string) (content []byte, err error) {
+ return retry(url, data, token, 3, 10*time.Second, postLogic)
+}
+
+func postLogic(url string, data interface{}, token string) (content []byte, err error) {
+ jsonStr, err := json.Marshal(data)
+ if err != nil {
+ return nil, utils.Wrap(err, "marshal failed, url")
+ }
+
+ req, err := http.NewRequest("POST", url, bytes.NewBuffer(jsonStr))
+ if err != nil {
+ return nil, utils.Wrap(err, "newRequest failed, url")
+ }
+ req.Close = true
+ req.Header.Add("content-type", "application/json")
+ req.Header.Add("token", token)
+ req.Header.Add("OperationID", utils.OperationIDGenerator())
+ tp := &http.Transport{
+ DialContext: (&net.Dialer{
+ KeepAlive: 10 * time.Minute,
+ }).DialContext,
+ ResponseHeaderTimeout: 60 * time.Second,
+ MaxIdleConnsPerHost: 100,
+ IdleConnTimeout: 60 * time.Second,
+ TLSHandshakeTimeout: 10 * time.Second,
+ }
+ client := &http.Client{Timeout: 60 * time.Second, Transport: tp}
+ resp, err := client.Do(req)
+ if err != nil {
+ return nil, utils.Wrap(err, "client.Do failed, url")
+ }
+ if resp.StatusCode != 200 {
+ return nil, utils.Wrap(errors.New(resp.Status), "status code failed "+url)
+ }
+ defer resp.Body.Close()
+ result, err := ioutil.ReadAll(resp.Body)
+ if err != nil {
+ return nil, utils.Wrap(err, "ioutil.ReadAll failed, url")
+ }
+ // fmt.Println(url, "Marshal data: ", string(jsonStr), string(result))
+ return result, nil
+}
diff --git a/go/chao-sdk-core/pkg/network/new_http.go b/go/chao-sdk-core/pkg/network/new_http.go
new file mode 100644
index 0000000..aa68e23
--- /dev/null
+++ b/go/chao-sdk-core/pkg/network/new_http.go
@@ -0,0 +1,165 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package network
+
+import (
+ "bytes"
+ "encoding/json"
+ "errors"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "io/ioutil"
+ "net/http"
+ "net/url"
+ "time"
+ "unsafe"
+)
+
+type HttpCli struct {
+ httpClient *http.Client
+ httpRequest *http.Request
+ Error error
+}
+
+func newHttpClient() *http.Client {
+ return &http.Client{Timeout: 30 * time.Second}
+}
+
+func PostWithTimeOut(url string, data interface{}, token string, timeout time.Duration) (content []byte, err error) {
+ return Post(url).BodyWithJson(data).SetTimeOut(timeout).SetHeader("token", token).ToBytes()
+}
+
+func Get(url string) *HttpCli {
+ request, err := http.NewRequest("GET", url, nil)
+ return &HttpCli{
+ httpClient: newHttpClient(),
+ httpRequest: request,
+ Error: err,
+ }
+}
+
+func Post(url string) *HttpCli {
+ request, err := http.NewRequest("POST", url, nil)
+ return &HttpCli{
+ httpClient: newHttpClient(),
+ httpRequest: request,
+ Error: utils.Wrap(err, "newRequest failed, url"),
+ }
+}
+
+func (c *HttpCli) SetTimeOut(timeout time.Duration) *HttpCli {
+ c.httpClient.Timeout = timeout
+ return c
+}
+
+func (c *HttpCli) SetHeader(key, value string) *HttpCli {
+ c.httpRequest.Header.Set(key, value)
+ return c
+}
+
+func (c *HttpCli) BodyWithJson(obj interface{}) *HttpCli {
+ if c.Error != nil {
+ return c
+ }
+
+ buf, err := json.Marshal(obj)
+ if err != nil {
+ c.Error = utils.Wrap(err, "marshal failed, url")
+ return c
+ }
+ c.httpRequest.Body = ioutil.NopCloser(bytes.NewReader(buf))
+ c.httpRequest.ContentLength = int64(len(buf))
+ c.httpRequest.Header.Set("Content-Type", "application/json")
+ return c
+}
+
+func (c *HttpCli) BodyWithBytes(buf []byte) *HttpCli {
+ if c.Error != nil {
+ return c
+ }
+
+ c.httpRequest.Body = ioutil.NopCloser(bytes.NewReader(buf))
+ c.httpRequest.ContentLength = int64(len(buf))
+ return c
+}
+
+func (c *HttpCli) BodyWithForm(form map[string]string) *HttpCli {
+ if c.Error != nil {
+ return c
+ }
+
+ var value url.Values = make(map[string][]string, len(form))
+ for k, v := range form {
+ value.Add(k, v)
+ }
+ buf := Str2bytes(value.Encode())
+
+ c.httpRequest.Body = ioutil.NopCloser(bytes.NewReader(buf))
+ c.httpRequest.ContentLength = int64(len(buf))
+ c.httpRequest.Header.Add("Content-Type", "application/x-www-form-urlencoded")
+ return c
+}
+
+func Str2bytes(s string) []byte {
+ x := (*[2]uintptr)(unsafe.Pointer(&s))
+ h := [3]uintptr{x[0], x[1], x[1]}
+ return *(*[]byte)(unsafe.Pointer(&h))
+}
+
+func (c *HttpCli) ToBytes() (content []byte, err error) {
+ if c.Error != nil {
+ return nil, c.Error
+ }
+
+ resp, err := c.httpClient.Do(c.httpRequest)
+ if err != nil {
+ return nil, utils.Wrap(err, "client.Do failed, url")
+ }
+ defer resp.Body.Close()
+
+ if resp.StatusCode != http.StatusOK {
+ return nil, utils.Wrap(errors.New(resp.Status), "status code failed ")
+ }
+ buf, err := ioutil.ReadAll(resp.Body)
+ if err != nil {
+ return nil, utils.Wrap(err, "ioutil.ReadAll failed, url")
+ }
+
+ return buf, nil
+}
+
+func (c *HttpCli) ToJson(obj interface{}) error {
+ if c.Error != nil {
+ return c.Error
+ }
+
+ resp, err := c.httpClient.Do(c.httpRequest)
+ if err != nil {
+ return utils.Wrap(err, "client.Do failed, url")
+ }
+ defer resp.Body.Close()
+
+ if resp.StatusCode != http.StatusOK {
+ return utils.Wrap(errors.New(resp.Status), "status code failed ")
+ }
+ buf, err := ioutil.ReadAll(resp.Body)
+ if err != nil {
+ return utils.Wrap(err, "ioutil.ReadAll failed, url")
+ }
+ err = json.Unmarshal(buf, obj)
+ if err != nil {
+ return utils.Wrap(err, "marshal failed, url")
+ }
+ return nil
+}
diff --git a/go/chao-sdk-core/pkg/page/pagereq.go b/go/chao-sdk-core/pkg/page/pagereq.go
new file mode 100644
index 0000000..b8887ab
--- /dev/null
+++ b/go/chao-sdk-core/pkg/page/pagereq.go
@@ -0,0 +1,7 @@
+package page
+
+import "github.com/openimsdk/protocol/sdkws"
+
+type PageReq interface {
+ GetPagination() *sdkws.RequestPagination
+}
diff --git a/go/chao-sdk-core/pkg/sdk_params_callback/conversation_msg_sdk_struct.go b/go/chao-sdk-core/pkg/sdk_params_callback/conversation_msg_sdk_struct.go
new file mode 100644
index 0000000..bf8a539
--- /dev/null
+++ b/go/chao-sdk-core/pkg/sdk_params_callback/conversation_msg_sdk_struct.go
@@ -0,0 +1,120 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package sdk_params_callback
+
+import (
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/server_api_params"
+ "github.com/openimsdk/openim-sdk-core/v3/sdk_struct"
+)
+
+type FindMessageListParams []*ConversationArgs
+type ConversationArgs struct {
+ ConversationID string `json:"conversationID"`
+ ClientMsgIDList []string `json:"clientMsgIDList"`
+}
+type FindMessageListCallback struct {
+ TotalCount int `json:"totalCount"`
+ FindResultItems []*SearchByConversationResult `json:"findResultItems"`
+}
+type GetHistoryMessageListParams struct {
+ UserID string `json:"userID"`
+ GroupID string `json:"groupID"`
+ ConversationID string `json:"conversationID"`
+ StartClientMsgID string `json:"startClientMsgID"`
+ Count int `json:"count"`
+}
+type GetHistoryMessageListCallback []*sdk_struct.MsgStruct
+type GetAdvancedHistoryMessageListParams struct {
+ LastMinSeq int64 `json:"lastMinSeq"`
+ ConversationID string `json:"conversationID"`
+ StartClientMsgID string `json:"startClientMsgID"`
+ Count int `json:"count"`
+}
+type GetAdvancedHistoryMessageListCallback struct {
+ MessageList []*sdk_struct.MsgStruct `json:"messageList"`
+ LastMinSeq int64 `json:"lastMinSeq"`
+ IsEnd bool `json:"isEnd"`
+ ErrCode int32 `json:"errCode"`
+ ErrMsg string `json:"errMsg"`
+}
+
+type SetConversationStatusParams struct {
+ UserId string `json:"userID" validate:"required"`
+ Status int `json:"status" validate:"required"`
+}
+type SearchLocalMessagesParams struct {
+ ConversationID string `json:"conversationID"`
+ KeywordList []string `json:"keywordList"`
+ KeywordListMatchType int `json:"keywordListMatchType"`
+ SenderUserIDList []string `json:"senderUserIDList"`
+ MessageTypeList []int `json:"messageTypeList"`
+ SearchTimePosition int64 `json:"searchTimePosition"`
+ SearchTimePeriod int64 `json:"searchTimePeriod"`
+ PageIndex int `json:"pageIndex"`
+ Count int `json:"count"`
+}
+type SearchLocalMessagesCallback struct {
+ TotalCount int `json:"totalCount"`
+ SearchResultItems []*SearchByConversationResult `json:"searchResultItems"`
+}
+type SearchByConversationResult struct {
+ ConversationID string `json:"conversationID"`
+ ConversationType int32 `json:"conversationType"`
+ ShowName string `json:"showName"`
+ FaceURL string `json:"faceURL"`
+ LatestMsgSendTime int64 `json:"latestMsgSendTime,omitempty"`
+ MessageCount int `json:"messageCount"`
+ MessageList []*sdk_struct.MsgStruct `json:"messageList"`
+}
+type SetMessageReactionExtensionsParams []*server_api_params.KeyValue
+
+type SetMessageReactionExtensionsCallback struct {
+ Key string `json:"key" validate:"required"`
+ Value string `json:"value" validate:"required"`
+ ErrCode int32 `json:"errCode"`
+ ErrMsg string `json:"errMsg"`
+}
+
+type AddMessageReactionExtensionsParams []*server_api_params.KeyValue
+
+type AddMessageReactionExtensionsCallback struct {
+ Key string `json:"key" validate:"required"`
+ Value string `json:"value" validate:"required"`
+ ErrCode int32 `json:"errCode"`
+ ErrMsg string `json:"errMsg"`
+}
+type DeleteMessageReactionExtensionsParams []string
+
+type GetTypekeyListResp struct {
+ TypeKeyInfoList []*SingleTypeKeyInfoSum `json:"TypeKeyListInfo"`
+}
+type SingleTypeKeyInfoSum struct {
+ TypeKey string `json:"typeKey"`
+ Counter int64 `json:"counter"`
+ InfoList []*Info `json:"infoList"`
+ IsContainSelf bool `json:"isContainSelf"`
+}
+
+type SingleTypeKeyInfo struct {
+ TypeKey string `json:"typeKey"`
+ Counter int64 `json:"counter"`
+ IsCanRepeat bool `json:"isCanRepeat"`
+ Index int `json:"index"`
+ InfoList map[string]*Info `json:"infoList"`
+}
+type Info struct {
+ UserID string `json:"userID"`
+ Ex string `json:"ex"`
+}
diff --git a/go/chao-sdk-core/pkg/sdk_params_callback/friend_sdk_struct.go b/go/chao-sdk-core/pkg/sdk_params_callback/friend_sdk_struct.go
new file mode 100644
index 0000000..e58e0b2
--- /dev/null
+++ b/go/chao-sdk-core/pkg/sdk_params_callback/friend_sdk_struct.go
@@ -0,0 +1,109 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package sdk_params_callback
+
+import (
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/server_api_params"
+ "github.com/openimsdk/protocol/wrapperspb"
+)
+
+// 1
+type GetDesignatedFriendsInfoParams []string
+type GetDesignatedFriendsInfoCallback []server_api_params.FullUserInfo
+
+// 1
+type AddFriendParams struct {
+ ToUserID string `json:"toUserID" validate:"required"`
+ ReqMsg string `json:"reqMsg"`
+}
+
+const AddFriendCallback = constant.SuccessCallbackDefault
+
+// 1
+// type GetRecvFriendApplicationListParams struct{}
+type GetRecvFriendApplicationListCallback []*model_struct.LocalFriendRequest
+
+// 1
+// type GetSendFriendApplicationListParams struct{}
+type GetSendFriendApplicationListCallback []*model_struct.LocalFriendRequest
+
+// 1
+type ProcessFriendApplicationParams struct {
+ ToUserID string `json:"toUserID" validate:"required"`
+ HandleMsg string `json:"handleMsg"`
+}
+
+const ProcessFriendApplicationCallback = constant.SuccessCallbackDefault
+
+// 1
+type CheckFriendParams []string
+type CheckFriendCallback []server_api_params.UserIDResult
+
+// 1
+type DeleteFriendParams string
+
+// type DeleteFriendCallback struct{}
+const DeleteFriendCallback = constant.SuccessCallbackDefault
+
+// 1
+// type GetFriendListParams struct{}
+type GetFriendListCallback []server_api_params.FullUserInfo
+
+type SearchFriendsParam struct {
+ KeywordList []string `json:"keywordList"`
+ IsSearchUserID bool `json:"isSearchUserID"`
+ IsSearchNickname bool `json:"isSearchNickname"`
+ IsSearchRemark bool `json:"isSearchRemark"`
+}
+
+type GetFriendListPage struct {
+}
+
+type SearchFriendsCallback []*SearchFriendItem
+type SearchFriendItem struct {
+ model_struct.LocalFriend
+ Relationship int `json:"relationship"`
+}
+
+// 1
+type SetFriendRemarkParams struct {
+ ToUserID string `json:"toUserID" validate:"required"`
+ Remark string `json:"remark" validate:"required"`
+}
+type SetFriendPinParams struct {
+ ToUserIDs []string `json:"toUserIDs" validate:"required"`
+ IsPinned *wrapperspb.BoolValue `json:"isPinned" validate:"required"`
+}
+
+// type SetFriendRemarkCallback struct{}
+const SetFriendRemarkCallback = constant.SuccessCallbackDefault
+
+// 1
+type AddBlackParams string
+
+// type AddBlackCallback struct{}
+const AddBlackCallback = constant.SuccessCallbackDefault
+
+// 1
+// type GetBlackListParams struct{}
+type GetBlackListCallback []server_api_params.FullUserInfo
+
+// 1
+type RemoveBlackParams string
+
+// type DeleteBlackCallback struct{}
+const RemoveBlackCallback = constant.SuccessCallbackDefault
diff --git a/go/chao-sdk-core/pkg/sdk_params_callback/group_sdk_struct.go b/go/chao-sdk-core/pkg/sdk_params_callback/group_sdk_struct.go
new file mode 100644
index 0000000..200e296
--- /dev/null
+++ b/go/chao-sdk-core/pkg/sdk_params_callback/group_sdk_struct.go
@@ -0,0 +1,113 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package sdk_params_callback
+
+import (
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/server_api_params"
+)
+
+type CreateGroupBaseInfoParam struct {
+ GroupType int32 `json:"groupType"`
+ SetGroupInfoParam
+}
+
+type CreateGroupMemberRoleParam []*server_api_params.GroupAddMemberInfo
+type CreateGroupCallback map[string]interface{}
+
+// param groupID reqMsg
+const JoinGroupCallback = constant.SuccessCallbackDefault
+
+// type QuitGroupParam // groupID
+const QuitGroupCallback = constant.SuccessCallbackDefault
+
+const DismissGroupCallback = constant.SuccessCallbackDefault
+
+const GroupMuteChangeCallback = constant.SuccessCallbackDefault
+
+const GroupMemberMuteChangeCallback = constant.SuccessCallbackDefault
+
+const SetGroupMemberNicknameCallback = constant.SuccessCallbackDefault
+
+// type GetJoinedGroupListParam null
+type GetJoinedGroupListCallback []*model_struct.LocalGroup
+
+type GetGroupsInfoParam []string
+type GetGroupsInfoCallback []*model_struct.LocalGroup
+type SearchGroupsParam struct {
+ KeywordList []string `json:"keywordList"`
+ IsSearchGroupID bool `json:"isSearchGroupID"`
+ IsSearchGroupName bool `json:"isSearchGroupName"`
+}
+type SearchGroupsCallback []*model_struct.LocalGroup
+
+type SearchGroupMembersParam struct {
+ GroupID string `json:"groupID"`
+ KeywordList []string `json:"keywordList"`
+ IsSearchUserID bool `json:"isSearchUserID"`
+ IsSearchMemberNickname bool `json:"isSearchMemberNickname"`
+ //offset, count int
+ Offset int `json:"offset"`
+ Count int `json:"count"`
+ PageNumber int `json:"pageNumber"`
+}
+
+type SearchGroupMembersCallback []*model_struct.LocalGroupMember
+
+type SetGroupInfoParam struct {
+ GroupName string `json:"groupName"`
+ Notification string `json:"notification"`
+ Introduction string `json:"introduction"`
+ FaceURL string `json:"faceURL"`
+ Ex string `json:"ex"`
+ NeedVerification *int32 `json:"needVerification" binding:"oneof=0 1 2"`
+}
+
+type SetGroupMemberInfoParam struct {
+ GroupID string `json:"groupID"`
+ UserID string `json:"userID"`
+ Ex *string `json:"ex"`
+}
+
+const SetGroupMemberInfoCallback = constant.SuccessCallbackDefault
+
+const SetGroupInfoCallback = constant.SuccessCallbackDefault
+
+// type GetGroupMemberListParam groupID ...
+type GetGroupMemberListCallback []*model_struct.LocalGroupMember
+
+type GetGroupMembersInfoParam []string
+type GetGroupMembersInfoCallback []*model_struct.LocalGroupMember
+
+type KickGroupMemberParam []string
+type KickGroupMemberCallback []*server_api_params.UserIDResult
+
+// type TransferGroupOwnerParam
+const TransferGroupOwnerCallback = constant.SuccessCallbackDefault
+
+type InviteUserToGroupParam []string
+type InviteUserToGroupCallback []*server_api_params.UserIDResult
+
+// type GetGroupApplicationListParam
+type GetGroupApplicationListCallback []*model_struct.LocalAdminGroupRequest
+
+type GetSendGroupApplicationListCallback []*model_struct.LocalGroupRequest
+
+// type AcceptGroupApplicationParam
+const AcceptGroupApplicationCallback = constant.SuccessCallbackDefault
+
+// type RefuseGroupApplicationParam
+const RefuseGroupApplicationCallback = constant.SuccessCallbackDefault
diff --git a/go/chao-sdk-core/pkg/sdk_params_callback/listener_callback.go b/go/chao-sdk-core/pkg/sdk_params_callback/listener_callback.go
new file mode 100644
index 0000000..fca1c92
--- /dev/null
+++ b/go/chao-sdk-core/pkg/sdk_params_callback/listener_callback.go
@@ -0,0 +1,68 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package sdk_params_callback
+
+import (
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+)
+
+// //////////////////////////////friend////////////////////////////////////
+type FriendApplicationAddedCallback model_struct.LocalFriendRequest
+type FriendApplicationAcceptCallback model_struct.LocalFriendRequest
+type FriendApplicationRejectCallback model_struct.LocalFriendRequest
+type FriendApplicationDeletedCallback model_struct.LocalFriendRequest
+type FriendAddedCallback model_struct.LocalFriend
+type FriendDeletedCallback model_struct.LocalFriend
+type FriendInfoChangedCallback model_struct.LocalFriend
+type BlackAddCallback model_struct.LocalBlack
+type BlackDeletedCallback model_struct.LocalBlack
+
+////////////////////////////////group////////////////////////////////////
+
+type JoinedGroupAddedCallback model_struct.LocalGroup
+type JoinedGroupDeletedCallback model_struct.LocalGroup
+type GroupMemberAddedCallback model_struct.LocalGroupMember
+type GroupMemberDeletedCallback model_struct.LocalGroupMember
+type GroupApplicationAddedCallback model_struct.LocalAdminGroupRequest
+type GroupApplicationDeletedCallback model_struct.LocalAdminGroupRequest
+type GroupApplicationAcceptCallback model_struct.LocalAdminGroupRequest
+type GroupApplicationRejectCallback model_struct.LocalAdminGroupRequest
+type GroupInfoChangedCallback model_struct.LocalGroup
+type GroupMemberInfoChangedCallback model_struct.LocalGroupMember
+
+// ////////////////////////////user////////////////////////////////////////
+type SelfInfoUpdatedCallback model_struct.LocalUser
+
+// ////////////////////////////user////////////////////////////////////////
+type ConversationUpdateCallback model_struct.LocalConversation
+type ConversationDeleteCallback model_struct.LocalConversation
+
+// ///////////////////////////signaling/////////////////////////////////////
+type InvitationInfo struct {
+ InviterUserID string
+ InviteeUserIDList []string
+ CustomData string
+ GroupID string
+}
+
+//type ReceiveNewInvitationCallback sdkws.SignalInviteReq
+//
+//type InviteeAcceptedCallback sdkws.SignalAcceptReq
+//
+//type InviteeRejectedCallback sdkws.SignalRejectReq
+//
+//type InvitationCancelledCallback sdkws.SignalCancelReq
+//
+//type InvitationTimeoutCallback sdkws.SignalInviteReq
diff --git a/go/chao-sdk-core/pkg/sdk_params_callback/third_sdk_struct.go b/go/chao-sdk-core/pkg/sdk_params_callback/third_sdk_struct.go
new file mode 100644
index 0000000..327d76c
--- /dev/null
+++ b/go/chao-sdk-core/pkg/sdk_params_callback/third_sdk_struct.go
@@ -0,0 +1,27 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package sdk_params_callback
+
+import (
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+)
+
+const UpdateFcmTokenCallback = constant.SuccessCallbackDefault
+const SetAppBadgeCallback = constant.SuccessCallbackDefault
+
+type UploadLogParams struct {
+ SystemType string `json:"system_type"`
+ Ex string `json:"ex"`
+}
diff --git a/go/chao-sdk-core/pkg/sdk_params_callback/user_sdk_struct.go b/go/chao-sdk-core/pkg/sdk_params_callback/user_sdk_struct.go
new file mode 100644
index 0000000..3fff337
--- /dev/null
+++ b/go/chao-sdk-core/pkg/sdk_params_callback/user_sdk_struct.go
@@ -0,0 +1,32 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package sdk_params_callback
+
+import (
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/server_api_params"
+)
+
+// other user
+type GetUsersInfoParam []string
+type GetUsersInfoCallback []server_api_params.FullUserInfo
+
+// type GetSelfUserInfoParam string
+type GetSelfUserInfoCallback *model_struct.LocalUser
+
+type SetSelfUserInfoParam server_api_params.ApiUserInfo
+
+const SetSelfUserInfoCallback = constant.SuccessCallbackDefault
diff --git a/go/chao-sdk-core/pkg/sdkerrs/code.go b/go/chao-sdk-core/pkg/sdkerrs/code.go
new file mode 100644
index 0000000..6942eae
--- /dev/null
+++ b/go/chao-sdk-core/pkg/sdkerrs/code.go
@@ -0,0 +1,52 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package sdkerrs
+
+// éį¨é蝝į
+const (
+ NetworkError = 10000
+ NetworkTimeoutError = 10001
+ ArgsError = 10002 //čžå
Ĩåæ°é蝝
+ CtxDeadlineExceededError = 10003 //ä¸ä¸æčļ
æļ
+
+ ResourceLoadNotCompleteError = 10004 //čĩæēåå§åæĒåŽæ
+ UnknownCode = 10005 //æ˛Ąæč§Ŗæå°code
+ SdkInternalError = 10006 //SDKå
é¨é蝝
+
+ NoUpdateError = 10007 //æ˛Ąææ´æ°
+
+ UserIDNotFoundError = 10100 //UserIDä¸åå¨ ææĒæŗ¨å
+ LoginOutError = 10101 //፿ˇåˇ˛įģéåēįģåŊ
+ LoginRepeatError = 10102 //፿ˇéå¤įģåŊ
+
+ //æļæ¯į¸å
ŗ
+ FileNotFoundError = 10200 //莰åŊä¸åå¨
+ MsgDeCompressionError = 10201 //æļæ¯č§Ŗåå¤ąč´Ĩ
+ MsgDecodeBinaryWsError = 10202 //æļæ¯č§Ŗį å¤ąč´Ĩ
+ MsgBinaryTypeNotSupportError = 10203 //æļæ¯įąģå䏿¯æ
+ MsgRepeatError = 10204 //æļæ¯éå¤åé
+ MsgContentTypeNotSupportError = 10205 //æļæ¯įąģå䏿¯æ
+ MsgHasNoSeqError = 10206 //æļæ¯æ˛Ąæseq
+
+ //äŧč¯į¸å
ŗ
+ NotSupportOptError = 10301 //䏿¯æįæäŊ
+ NotSupportTypeError = 10302 //not support type
+ UnreadCountError = 10303 //unread count has zero
+
+ //įž¤įģį¸å
ŗ
+ GroupIDNotFoundError = 10400 //GroupIDä¸åå¨
+ GroupTypeErr = 10401 //įž¤įģįąģåé蝝
+
+)
diff --git a/go/chao-sdk-core/pkg/sdkerrs/error.go b/go/chao-sdk-core/pkg/sdkerrs/error.go
new file mode 100644
index 0000000..0470a72
--- /dev/null
+++ b/go/chao-sdk-core/pkg/sdkerrs/error.go
@@ -0,0 +1,26 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package sdkerrs
+
+import "github.com/openimsdk/tools/errs"
+
+func New(code int, msg string, dtl string) errs.CodeError {
+ return errs.NewCodeError(code, msg).WithDetail(dtl)
+}
+
+var (
+ Wrap = errs.Wrap
+ WrapMsg = errs.WrapMsg
+)
diff --git a/go/chao-sdk-core/pkg/sdkerrs/predefine.go b/go/chao-sdk-core/pkg/sdkerrs/predefine.go
new file mode 100644
index 0000000..076d1fb
--- /dev/null
+++ b/go/chao-sdk-core/pkg/sdkerrs/predefine.go
@@ -0,0 +1,50 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package sdkerrs
+
+import "github.com/openimsdk/tools/errs"
+
+var (
+ ErrArgs = errs.NewCodeError(ArgsError, "ArgsError")
+ ErrCtxDeadline = errs.NewCodeError(CtxDeadlineExceededError, "CtxDeadlineExceededError")
+ ErrSdkInternal = errs.NewCodeError(SdkInternalError, "SdkInternalError")
+ ErrNetwork = errs.NewCodeError(NetworkError, "NetworkError")
+ ErrNetworkTimeOut = errs.NewCodeError(NetworkTimeoutError, "NetworkTimeoutError")
+
+ ErrGroupIDNotFound = errs.NewCodeError(GroupIDNotFoundError, "GroupIDNotFoundError")
+ ErrUserIDNotFound = errs.NewCodeError(UserIDNotFoundError, "UserIDNotFoundError")
+
+ ErrResourceLoad = errs.NewCodeError(ResourceLoadNotCompleteError, "ResourceLoadNotCompleteError")
+
+ //æļæ¯į¸å
ŗ
+ ErrFileNotFound = errs.NewCodeError(FileNotFoundError, "RecordNotFoundError")
+ ErrMsgDecodeBinaryWs = errs.NewCodeError(MsgDecodeBinaryWsError, "MsgDecodeBinaryWsError")
+ ErrMsgDeCompression = errs.NewCodeError(MsgDeCompressionError, "MsgDeCompressionError")
+ ErrMsgBinaryTypeNotSupport = errs.NewCodeError(MsgBinaryTypeNotSupportError, "MsgTypeNotSupportError")
+ ErrMsgRepeated = errs.NewCodeError(MsgRepeatError, "only failed message can be repeatedly send")
+ ErrMsgContentTypeNotSupport = errs.NewCodeError(MsgContentTypeNotSupportError, "contentType not support currently") // msg // msg
+ ErrMsgHasNoSeq = errs.NewCodeError(MsgHasNoSeqError, "msg has no seq") // msg // msg
+
+ //äŧč¯į¸å
ŗ
+ ErrNotSupportOpt = errs.NewCodeError(NotSupportOptError, "super group not support this opt")
+ ErrNotSupportType = errs.NewCodeError(NotSupportTypeError, "only support super group type type")
+ ErrUnreadCount = errs.NewCodeError(UnreadCountError, "unread count has zero")
+ //įž¤įģį¸å
ŗ
+
+ ErrGroupType = errs.NewCodeError(GroupTypeErr, "group type error")
+
+ ErrLoginOut = errs.NewCodeError(LoginOutError, "LoginOutError")
+ ErrLoginRepeat = errs.NewCodeError(LoginRepeatError, "LoginRepeatError")
+)
diff --git a/go/chao-sdk-core/pkg/server_api_params/auth_api_struct.go b/go/chao-sdk-core/pkg/server_api_params/auth_api_struct.go
new file mode 100644
index 0000000..9868e3e
--- /dev/null
+++ b/go/chao-sdk-core/pkg/server_api_params/auth_api_struct.go
@@ -0,0 +1,68 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package server_api_params
+
+import "github.com/openimsdk/protocol/sdkws"
+
+//UserID string `protobuf:"bytes,1,opt,name=UserID" json:"UserID,omitempty"`
+// Nickname string `protobuf:"bytes,2,opt,name=Nickname" json:"Nickname,omitempty"`
+// FaceUrl string `protobuf:"bytes,3,opt,name=FaceUrl" json:"FaceUrl,omitempty"`
+// Gender int32 `protobuf:"varint,4,opt,name=Gender" json:"Gender,omitempty"`
+// PhoneNumber string `protobuf:"bytes,5,opt,name=PhoneNumber" json:"PhoneNumber,omitempty"`
+// Birth string `protobuf:"bytes,6,opt,name=Birth" json:"Birth,omitempty"`
+// Email string `protobuf:"bytes,7,opt,name=Email" json:"Email,omitempty"`
+// Ex string `protobuf:"bytes,8,opt,name=Ex" json:"Ex,omitempty"`
+
+type UserRegisterReq struct {
+ Secret string `json:"secret" binding:"required,max=32"`
+ Platform int32 `json:"platform" binding:"required,min=1,max=7"`
+ sdkws.UserInfo
+ OperationID string `json:"operationID" binding:"required"`
+}
+
+type UserTokenInfo struct {
+ UserID string `json:"userID"`
+ Token string `json:"token"`
+ ExpiredTime int64 `json:"expiredTime"`
+}
+type UserRegisterResp struct {
+ CommResp
+ UserToken UserTokenInfo `json:"data"`
+}
+
+type UserTokenReq struct {
+ Secret string `json:"secret" binding:"required,max=32"`
+ Platform int32 `json:"platformID" binding:"required,min=1,max=8"`
+ UserID string `json:"userID" binding:"required,min=1,max=64"`
+ OperationID string `json:"operationID" binding:"required"`
+}
+
+type UserTokenResp struct {
+ CommResp
+ UserToken UserTokenInfo `json:"data"`
+}
+
+type ParseTokenReq struct {
+ OperationID string `json:"operationID" binding:"required"`
+}
+
+type ExpireTime struct {
+ ExpireTimeSeconds uint32 `json:"expireTimeSeconds" `
+}
+
+type ParseTokenResp struct {
+ CommResp
+ ExpireTime ExpireTime `json:"expireTime"`
+}
diff --git a/go/chao-sdk-core/pkg/server_api_params/aws_api_struct.go b/go/chao-sdk-core/pkg/server_api_params/aws_api_struct.go
new file mode 100644
index 0000000..ef792ea
--- /dev/null
+++ b/go/chao-sdk-core/pkg/server_api_params/aws_api_struct.go
@@ -0,0 +1,29 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package server_api_params
+
+type AwsStorageCredentialReq struct {
+ OperationID string `json:"operationID"`
+}
+
+type AwsStorageCredentialResp struct {
+ CommResp
+ AccessKeyId string `json:"accessKeyID"`
+ SecretAccessKey string `json:"secretAccessKey"`
+ SessionToken string `json:"sessionToken"`
+ RegionID string `json:"regionId"`
+ Bucket string `json:"bucket"`
+ FinalHost string `json:"FinalHost"`
+}
diff --git a/go/chao-sdk-core/pkg/server_api_params/chat_api_struct.go b/go/chao-sdk-core/pkg/server_api_params/chat_api_struct.go
new file mode 100644
index 0000000..e554908
--- /dev/null
+++ b/go/chao-sdk-core/pkg/server_api_params/chat_api_struct.go
@@ -0,0 +1,184 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package server_api_params
+
+type DeleteMsgReq struct {
+ OpUserID string `json:"opUserID"`
+ UserID string `json:"userID"`
+ SeqList []int64 `json:"seqList"`
+ OperationID string `json:"operationID"`
+}
+
+type DeleteMsgResp struct {
+}
+
+type CleanUpMsgReq struct {
+ UserID string `json:"userID" binding:"required"`
+ OperationID string `json:"operationID" binding:"required"`
+}
+
+type CleanUpMsgResp struct {
+ CommResp
+}
+type DelSuperGroupMsgReq struct {
+ UserID string `json:"userID,omitempty" binding:"required"`
+ GroupID string `json:"groupID,omitempty" binding:"required"`
+ SeqList []int64 `json:"seqList,omitempty"`
+ IsAllDelete bool `json:"isAllDelete"`
+ OperationID string `json:"operationID,omitempty" binding:"required"`
+}
+type DelSuperGroupMsgResp struct {
+ CommResp
+}
+type MsgDeleteNotificationElem struct {
+ GroupID string `json:"groupID"`
+ IsAllDelete bool `json:"isAllDelete"`
+ SeqList []int64 `json:"seqList"`
+}
+type SetMessageReactionExtensionsReq struct {
+ OperationID string `json:"operationID" validate:"required"`
+ ClientMsgID string `json:"clientMsgID" validate:"required"`
+ SourceID string `json:"sourceID" validate:"required"`
+ SessionType int32 `json:"sessionType" validate:"required"`
+ ReactionExtensionList map[string]*KeyValue `json:"reactionExtensionList"`
+ IsReact bool `json:"isReact,omitempty"`
+ IsExternalExtensions bool `json:"isExternalExtensions,omitempty"`
+ MsgFirstModifyTime int64 `json:"msgFirstModifyTime,omitempty"`
+}
+type AddMessageReactionExtensionsReq struct {
+ OperationID string `json:"operationID" validate:"required"`
+ ClientMsgID string `json:"clientMsgID" validate:"required"`
+ SourceID string `json:"sourceID" validate:"required"`
+ SessionType int32 `json:"sessionType" validate:"required"`
+ ReactionExtensionList map[string]*KeyValue `json:"reactionExtensionList"`
+ IsReact bool `json:"isReact,omitempty"`
+ IsExternalExtensions bool `json:"isExternalExtensions,omitempty"`
+ MsgFirstModifyTime int64 `json:"msgFirstModifyTime,omitempty"`
+ Seq int64 `json:"seq"`
+}
+type DeleteMessageReactionExtensionsReq struct {
+ OperationID string `json:"operationID" binding:"required"`
+ SourceID string `json:"sourceID" binding:"required"`
+ SessionType int32 `json:"sessionType" binding:"required"`
+ ClientMsgID string `json:"clientMsgID" binding:"required"`
+ IsExternalExtensions bool `json:"isExternalExtensions"`
+ MsgFirstModifyTime int64 `json:"msgFirstModifyTime" binding:"required"`
+ ReactionExtensionList []*KeyValue `json:"reactionExtensionList" binding:"required"`
+}
+type DeleteMessageReactionExtensionsResp struct {
+ CommResp
+ Result []*ExtensionResult
+ Data map[string]interface{} `json:"data"`
+}
+type KeyValue struct {
+ TypeKey string `json:"typeKey" validate:"required"`
+ Value string `json:"value" validate:"required"`
+ LatestUpdateTime int64 `json:"latestUpdateTime"`
+}
+type ApiResult struct {
+ Result []*ExtensionResult `json:"result"`
+ MsgFirstModifyTime int64 `json:"msgFirstModifyTime"`
+ IsReact bool `json:"isReact"`
+}
+type SetMessageReactionExtensionsResp struct {
+ CommResp
+ ApiResult struct {
+ Result []*ExtensionResult `json:"result"`
+ MsgFirstModifyTime int64 `json:"msgFirstModifyTime"`
+ IsReact bool `json:"isReact"`
+ }
+ Data map[string]interface{} `json:"data"`
+}
+type AddMessageReactionExtensionsResp struct {
+ CommResp
+ ApiResult struct {
+ Result []*ExtensionResult `json:"result"`
+ MsgFirstModifyTime int64 `json:"msgFirstModifyTime"`
+ IsReact bool `json:"isReact"`
+ }
+ Data map[string]interface{} `json:"data"`
+}
+type ExtensionResult struct {
+ CommResp
+ KeyValue
+}
+
+type GetMessageListReactionExtensionsReq struct {
+ OperationID string `json:"operationID" binding:"required"`
+ SourceID string `json:"sourceID" binding:"required"`
+ SessionType int32 `json:"sessionType" binding:"required"`
+ IsExternalExtensions bool `json:"isExternalExtensions"`
+ TypeKeyList []string `json:"typeKeyList"`
+ MessageReactionKeyList []OperateMessageListReactionExtensionsReq `json:"messageReactionKeyList" binding:"required"`
+}
+
+type KeyValueResp struct {
+ KeyValue *KeyValue `protobuf:"bytes,1,opt,name=keyValue" json:"keyValue,omitempty"`
+ ErrCode int32 `protobuf:"varint,2,opt,name=errCode" json:"errCode,omitempty"`
+ ErrMsg string `protobuf:"bytes,3,opt,name=errMsg" json:"errMsg,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+//type ExtendMsg struct {
+// ReactionExtensionList map[string]*KeyValueResp `protobuf:"bytes,1,rep,name=reactionExtensionList" json:"reactionExtensionList,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
+// ClientMsgID string `protobuf:"bytes,2,opt,name=clientMsgID" json:"clientMsgID,omitempty"`
+// MsgFirstModifyTime int64 `protobuf:"varint,3,opt,name=msgFirstModifyTime" json:"msgFirstModifyTime,omitempty"`
+// AttachedInfo string `protobuf:"bytes,4,opt,name=attachedInfo" json:"attachedInfo,omitempty"`
+// Ex string `protobuf:"bytes,5,opt,name=ex" json:"ex,omitempty"`
+//}
+//
+//type ExtendMsgResp struct {
+// ExtendMsg *ExtendMsg `protobuf:"bytes,1,opt,name=extendMsg" json:"extendMsg,omitempty"`
+// ErrCode int32 `protobuf:"varint,2,opt,name=errCode" json:"errCode,omitempty"`
+// ErrMsg string `protobuf:"bytes,3,opt,name=errMsg" json:"errMsg,omitempty"`
+//}
+
+type GetMessageListReactionExtensionsResp []*SingleMessageExtensionResult
+
+type OperateMessageListReactionExtensionsReq struct {
+ ClientMsgID string `json:"clientMsgID"`
+ MsgFirstModifyTime int64 `json:"msgFirstModifyTime"`
+}
+type ReactionMessageModifierNotification struct {
+ Operation int `json:"operation" binding:"required"`
+ SourceID string `json:"sourceID" binding:"required"`
+ OpUserID string `json:"opUserID" binding:"required"`
+ SessionType int32 `json:"sessionType" binding:"required"`
+ // SuccessReactionExtensionList map[string]*sdkws.KeyValue `json:"reactionExtensionList,omitempty" binding:"required"`
+ ClientMsgID string `json:"clientMsgID" binding:"required"`
+ IsReact bool `json:"isReact"`
+ IsExternalExtensions bool `json:"isExternalExtensions"`
+ MsgFirstModifyTime int64 `json:"msgFirstModifyTime"`
+ Seq uint32 `json:"seq"`
+}
+type SingleMessageExtensionResult struct {
+ ErrCode int32 `protobuf:"varint,1,opt,name=errCode" json:"errCode,omitempty"`
+ ErrMsg string `protobuf:"bytes,2,opt,name=errMsg" json:"errMsg,omitempty"`
+ // ReactionExtensionList map[string]*sdkws.KeyValue `protobuf:"bytes,3,rep,name=reactionExtensionList" json:"reactionExtensionList,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
+ ClientMsgID string `protobuf:"bytes,4,opt,name=clientMsgID" json:"clientMsgID,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+type ReactionMessageDeleteNotification struct {
+ SourceID string `json:"sourceID" binding:"required"`
+ OpUserID string `json:"opUserID" binding:"required"`
+ SessionType int32 `json:"sessionType" binding:"required"`
+ // SuccessReactionExtensionList map[string]*sdkws.KeyValue `json:"reactionExtensionList,omitempty" binding:"required"`
+ ClientMsgID string `json:"clientMsgID" binding:"required"`
+ MsgFirstModifyTime int64 `json:"msgFirstModifyTime"`
+}
diff --git a/go/chao-sdk-core/pkg/server_api_params/conversation_api_struct.go b/go/chao-sdk-core/pkg/server_api_params/conversation_api_struct.go
new file mode 100644
index 0000000..7542023
--- /dev/null
+++ b/go/chao-sdk-core/pkg/server_api_params/conversation_api_struct.go
@@ -0,0 +1,98 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package server_api_params
+
+type Conversation struct {
+ OwnerUserID string `json:"ownerUserID" binding:"required"`
+ ConversationID string `json:"conversationID" binding:"required"`
+ ConversationType int32 `json:"conversationType" binding:"required"`
+ UserID string `json:"userID"`
+ GroupID string `json:"groupID"`
+ RecvMsgOpt int32 `json:"recvMsgOpt"`
+ UnreadCount int32 `json:"unreadCount"`
+ DraftTextTime int64 `json:"draftTextTime"`
+ IsPinned bool `json:"isPinned"`
+ IsPrivateChat bool `json:"isPrivateChat"`
+ BurnDuration int32 `json:"burnDuration"`
+ GroupAtType int32 `json:"groupAtType"`
+ IsNotInGroup bool `json:"isNotInGroup"`
+ UpdateUnreadCountTime int64 ` json:"updateUnreadCountTime"`
+ AttachedInfo string `json:"attachedInfo"`
+ Ex string `json:"ex"`
+}
+
+type SetConversationReq struct {
+ Conversation
+ NotificationType int `json:"notificationType"`
+ OperationID string `json:"operationID" binding:"required"`
+}
+
+type SetConversationResp struct {
+}
+type ModifyConversationFieldReq struct {
+ Conversation
+ FieldType int32 `json:"fieldType" binding:"required"`
+ UserIDList []string `json:"userIDList" binding:"required"`
+ OperationID string `json:"operationID" binding:"required"`
+}
+type ModifyConversationFieldResp struct {
+ CommResp
+}
+type BatchSetConversationsReq struct {
+ Conversations []Conversation `json:"conversations" binding:"required"`
+ OwnerUserID string `json:"ownerUserID" binding:"required"`
+ NotificationType int `json:"notificationType"`
+ OperationID string `json:"operationID" binding:"required"`
+}
+
+type BatchSetConversationsResp struct {
+ Success []string `json:"success"`
+ Failed []string `json:"failed"`
+}
+
+type GetConversationReq struct {
+ ConversationID string `json:"conversationID" binding:"required"`
+ OwnerUserID string `json:"ownerUserID" binding:"required"`
+ OperationID string `json:"operationID" binding:"required"`
+}
+
+type GetConversationResp struct {
+ Conversation Conversation `json:"data"`
+}
+
+type GetAllConversationsReq struct {
+ OwnerUserID string `json:"ownerUserID" binding:"required"`
+ OperationID string `json:"operationID" binding:"required"`
+}
+
+type GetAllConversationsResp struct {
+ Conversations []Conversation `json:"data"`
+}
+
+type GetConversationsReq struct {
+ ConversationIDs []string `json:"conversationIDs" binding:"required"`
+ OwnerUserID string `json:"ownerUserID" binding:"required"`
+ OperationID string `json:"operationID" binding:"required"`
+}
+
+type GetConversationsResp struct {
+ CommResp
+ Conversations []Conversation `json:"data"`
+}
+
+type GetConversationRecvMessageOptResp struct {
+ ConversationID string `json:"conversationID"`
+ Result *int32 `json:"result"`
+}
diff --git a/go/chao-sdk-core/pkg/server_api_params/friend_api_struct.go b/go/chao-sdk-core/pkg/server_api_params/friend_api_struct.go
new file mode 100644
index 0000000..7bfa3b8
--- /dev/null
+++ b/go/chao-sdk-core/pkg/server_api_params/friend_api_struct.go
@@ -0,0 +1,150 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package server_api_params
+
+import "github.com/openimsdk/protocol/sdkws"
+
+type ParamsCommFriend struct {
+ OperationID string `json:"operationID" binding:"required"`
+ ToUserID string `json:"toUserID" binding:"required"`
+ FromUserID string `json:"fromUserID" binding:"required"`
+}
+
+type AddBlacklistReq struct {
+ ParamsCommFriend
+}
+type AddBlacklistResp struct {
+ CommResp
+}
+
+type ImportFriendReq struct {
+ FriendUserIDList []string `json:"friendUserIDList" binding:"required"`
+ OperationID string `json:"operationID" binding:"required"`
+ FromUserID string `json:"fromUserID" binding:"required"`
+}
+type UserIDResult struct {
+ UserID string `json:"userID""`
+ Result int32 `json:"result"`
+}
+type ImportFriendResp struct {
+ CommResp
+ UserIDResultList []UserIDResult `json:"data"`
+}
+
+type AddFriendReq struct {
+ ParamsCommFriend
+ ReqMsg string `json:"reqMsg"`
+}
+type AddFriendResp struct {
+ CommResp
+}
+
+type AddFriendResponseReq struct {
+ ParamsCommFriend
+ Flag int32 `json:"flag" binding:"required,oneof=-1 0 1"`
+ HandleMsg string `json:"handleMsg"`
+}
+type AddFriendResponseResp struct {
+ CommResp
+}
+
+type DeleteFriendReq struct {
+ ParamsCommFriend
+}
+type DeleteFriendResp struct {
+ CommResp
+}
+
+type GetBlackListReq struct {
+ OperationID string `json:"operationID" binding:"required"`
+ FromUserID string `json:"fromUserID" binding:"required"`
+}
+type GetBlackListResp struct {
+ CommResp
+ BlackUserInfoList []*sdkws.PublicUserInfo
+ Data []map[string]interface{} `json:"data"`
+}
+
+//type PublicUserInfo struct {
+// UserID string `json:"userID"`
+// Nickname string `json:"nickname"`
+// FaceUrl string `json:"faceUrl"`
+// Gender int32 `json:"gender"`
+//}
+
+type SetFriendRemarkReq struct {
+ ParamsCommFriend
+ Remark string `json:"remark" binding:"required"`
+}
+type SetFriendRemarkResp struct {
+ CommResp
+}
+
+type RemoveBlackListReq struct {
+ ParamsCommFriend
+}
+type RemoveBlackListResp struct {
+ CommResp
+}
+
+type IsFriendReq struct {
+ ParamsCommFriend
+}
+type Response struct {
+ Friend bool `json:"isFriend"`
+}
+type IsFriendResp struct {
+ CommResp
+ Response Response `json:"data"`
+}
+
+type GetFriendsInfoReq struct {
+ ParamsCommFriend
+}
+type GetFriendsInfoResp struct {
+ CommResp
+ FriendInfoList []*sdkws.FriendInfo
+ Data []map[string]interface{} `json:"data"`
+}
+
+type GetFriendListReq struct {
+ OperationID string `json:"operationID" binding:"required"`
+ FromUserID string `json:"fromUserID" binding:"required"`
+}
+type GetFriendListResp struct {
+ CommResp
+ FriendInfoList []*sdkws.FriendInfo
+ Data []map[string]interface{} `json:"data"`
+}
+
+type GetFriendApplyListReq struct {
+ OperationID string `json:"operationID" binding:"required"`
+ FromUserID string `json:"fromUserID" binding:"required"`
+}
+type GetFriendApplyListResp struct {
+ CommResp
+ FriendRequestList []*sdkws.FriendRequest
+ Data []map[string]interface{} `json:"data"`
+}
+
+type GetSelfFriendApplyListReq struct {
+ OperationID string `json:"operationID" binding:"required"`
+ FromUserID string `json:"fromUserID" binding:"required"`
+}
+type GetSelfFriendApplyListResp struct {
+ CommResp
+ FriendRequestList []*sdkws.FriendRequest
+ Data []map[string]interface{} `json:"data"`
+}
diff --git a/go/chao-sdk-core/pkg/server_api_params/group_api_struct.go b/go/chao-sdk-core/pkg/server_api_params/group_api_struct.go
new file mode 100644
index 0000000..4ff5612
--- /dev/null
+++ b/go/chao-sdk-core/pkg/server_api_params/group_api_struct.go
@@ -0,0 +1,315 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package server_api_params
+
+import "github.com/openimsdk/protocol/sdkws"
+
+type CommResp struct {
+ ErrCode int32 `json:"errCode"`
+ ErrMsg string `json:"errMsg"`
+ ErrDlt string `json:"errDlt"`
+}
+type CommDataResp struct {
+ CommResp
+ Data []map[string]interface{} `json:"data"`
+}
+type CommDataRespOne struct {
+ CommResp
+ Data map[string]interface{} `json:"data"`
+}
+
+type KickGroupMemberReq struct {
+ GroupID string `json:"groupID" binding:"required"`
+ KickedUserIDList []string `json:"kickedUserIDList" binding:"required"`
+ Reason string `json:"reason"`
+ OperationID string `json:"operationID" binding:"required"`
+}
+type KickGroupMemberResp struct {
+ CommResp
+ UserIDResultList []*UserIDResult `json:"data"`
+}
+
+type GetGroupMembersInfoReq struct {
+ GroupID string `json:"groupID" binding:"required"`
+ MemberList []string `json:"memberList" binding:"required"`
+ OperationID string `json:"operationID" binding:"required"`
+}
+type GetGroupMembersInfoResp struct {
+ CommResp
+ MemberList []*sdkws.GroupMemberFullInfo `json:"-"`
+ Data []map[string]interface{} `json:"data"`
+}
+
+type InviteUserToGroupReq struct {
+ GroupID string `json:"groupID" binding:"required"`
+ InvitedUserIDList []string `json:"invitedUserIDList" binding:"required"`
+ Reason string `json:"reason"`
+ OperationID string `json:"operationID" binding:"required"`
+}
+type InviteUserToGroupResp struct {
+ CommResp
+ UserIDResultList []*UserIDResult `json:"data"`
+}
+
+type GetJoinedGroupListReq struct {
+ OperationID string `json:"operationID" binding:"required"`
+ FromUserID string `json:"fromUserID" binding:"required"`
+}
+type GetJoinedGroupListResp struct {
+ CommResp
+ GroupInfoList []*sdkws.GroupInfo
+ Data []map[string]interface{} `json:"data"`
+}
+
+type GetGroupMemberListReq struct {
+ GroupID string `json:"groupID"`
+ Filter int32 `json:"filter"`
+ NextSeq int32 `json:"nextSeq"`
+ OperationID string `json:"operationID"`
+}
+type GetGroupMemberListResp struct {
+ CommResp
+ NextSeq int32 `json:"nextSeq"`
+ MemberList []*sdkws.GroupMemberFullInfo
+ Data []map[string]interface{} `json:"data"`
+}
+
+type GetGroupAllMemberReq struct {
+ GroupID string `json:"groupID" binding:"required"`
+ OperationID string `json:"operationID" binding:"required"`
+ Offset int32 `json:"offset"`
+ Count int32 `json:"count"`
+}
+type GetGroupAllMemberResp struct {
+ CommResp
+ MemberList []*sdkws.GroupMemberFullInfo `json:"-"`
+ Data []map[string]interface{} `json:"data"`
+}
+
+type CreateGroupReq struct {
+ MemberList []*GroupAddMemberInfo `json:"memberList" binding:"required"`
+ OwnerUserID string `json:"ownerUserID" binding:"required"`
+ GroupType int32 `json:"groupType"`
+ GroupName string `json:"groupName"`
+ Notification string `json:"notification"`
+ Introduction string `json:"introduction"`
+ FaceURL string `json:"faceURL"`
+ Ex string `json:"ex"`
+ OperationID string `json:"operationID" binding:"required"`
+}
+
+type CreateGroupResp struct {
+ CommResp
+ GroupInfo sdkws.GroupInfo
+ Data map[string]interface{} `json:"data"`
+}
+
+type GetGroupApplicationListReq struct {
+ OperationID string `json:"operationID" binding:"required"`
+ FromUserID string `json:"fromUserID" binding:"required"` //äŊä¸ēįŽĄįåæįž¤ä¸ģæļå°į čŋįž¤įŗč¯ˇ
+}
+type GetGroupApplicationListResp struct {
+ CommResp
+ GroupRequestList []*sdkws.GroupRequest
+ Data []map[string]interface{} `json:"data"`
+}
+
+type GetUserReqGroupApplicationListReq struct {
+ OperationID string `json:"operationID" binding:"required"`
+ UserID string `json:"userID" binding:"required"`
+}
+
+type GetUserRespGroupApplicationResp struct {
+ CommResp
+ GroupRequestList []*sdkws.GroupRequest `json:"-"`
+}
+
+type GetGroupInfoReq struct {
+ GroupIDList []string `json:"groupIDList" binding:"required"`
+ OperationID string `json:"operationID" binding:"required"`
+}
+type GetGroupInfoResp struct {
+ CommResp
+ GroupInfoList []*sdkws.GroupInfo `json:"-"`
+ Data []map[string]interface{} `json:"data"`
+}
+
+//type GroupInfoAlias struct {
+// GroupID string `protobuf:"bytes,1,opt,name=groupID" json:"groupID,omitempty"`
+// GroupName string `protobuf:"bytes,2,opt,name=groupName" json:"groupName,omitempty"`
+// NotificationCmd string `protobuf:"bytes,3,opt,name=notification" json:"notification,omitempty"`
+// Introduction string `protobuf:"bytes,4,opt,name=introduction" json:"introduction,omitempty"`
+// FaceURL string `protobuf:"bytes,5,opt,name=faceURL" json:"faceURL,omitempty"`
+// OwnerUserID string `protobuf:"bytes,6,opt,name=ownerUserID" json:"ownerUserID,omitempty"`
+// CreateTime uint32 `protobuf:"varint,7,opt,name=createTime" json:"createTime,omitempty"`
+// MemberCount uint32 `protobuf:"varint,8,opt,name=memberCount" json:"memberCount,omitempty"`
+// Ex string `protobuf:"bytes,9,opt,name=ex" json:"ex,omitempty"`
+// Status int32 `protobuf:"varint,10,opt,name=status" json:"status,omitempty"`
+// CreatorUserID string `protobuf:"bytes,11,opt,name=creatorUserID" json:"creatorUserID,omitempty"`
+// GroupType int32 `protobuf:"varint,12,opt,name=groupType" json:"groupType,omitempty"`
+// NeedVerification int32 `protobuf:"bytes,13,opt,name=needVerification" json:"needVerification,omitempty"`
+//}
+//type GroupInfoAlias struct {
+// GroupInfo
+// NeedVerification int32 `protobuf:"bytes,13,opt,name=needVerification" json:"needVerification,omitempty"`
+//}
+
+type ApplicationGroupResponseReq struct {
+ OperationID string `json:"operationID" binding:"required"`
+ GroupID string `json:"groupID" binding:"required"`
+ FromUserID string `json:"fromUserID" binding:"required"` //application from FromUserID
+ HandledMsg string `json:"handledMsg"`
+ HandleResult int32 `json:"handleResult" binding:"required,oneof=-1 1"`
+}
+type ApplicationGroupResponseResp struct {
+ CommResp
+}
+
+type JoinGroupReq struct {
+ GroupID string `json:"groupID" binding:"required"`
+ ReqMessage string `json:"reqMessage"`
+ OperationID string `json:"operationID" binding:"required"`
+ JoinSource int32 `json:"joinSource"`
+ InviterUserID string `json:"inviterUserID"`
+}
+
+type JoinGroupResp struct {
+ CommResp
+}
+
+type QuitGroupReq struct {
+ GroupID string `json:"groupID" binding:"required"`
+ OperationID string `json:"operationID" binding:"required"`
+}
+type QuitGroupResp struct {
+ CommResp
+}
+
+type SetGroupInfoReq struct {
+ GroupID string `json:"groupID" binding:"required"`
+ GroupName string `json:"groupName"`
+ Notification string `json:"notification"`
+ Introduction string `json:"introduction"`
+ FaceURL string `json:"faceURL"`
+ Ex string `json:"ex"`
+ OperationID string `json:"operationID" binding:"required"`
+ NeedVerification *int32 `json:"needVerification" binding:"oneof=0 1 2"`
+ LookMemberInfo *int32 `json:"lookMemberInfo" binding:"oneof=0 1"`
+ ApplyMemberFriend *int32 `json:"applyMemberFriend" binding:"oneof=0 1"`
+}
+
+type SetGroupInfoResp struct {
+ CommResp
+}
+
+type TransferGroupOwnerReq struct {
+ GroupID string `json:"groupID" binding:"required"`
+ OldOwnerUserID string `json:"oldOwnerUserID" binding:"required"`
+ NewOwnerUserID string `json:"newOwnerUserID" binding:"required"`
+ OperationID string `json:"operationID" binding:"required"`
+}
+type TransferGroupOwnerResp struct {
+ CommResp
+}
+
+type DismissGroupReq struct {
+ GroupID string `json:"groupID" binding:"required"`
+ OperationID string `json:"operationID" binding:"required"`
+}
+type DismissGroupResp struct {
+ CommResp
+}
+
+type MuteGroupMemberReq struct {
+ OperationID string `json:"operationID" binding:"required"`
+ GroupID string `json:"groupID" binding:"required"`
+ UserID string `json:"userID" binding:"required"`
+ MutedSeconds uint32 `json:"mutedSeconds" binding:"required"`
+}
+type MuteGroupMemberResp struct {
+ CommResp
+}
+
+type CancelMuteGroupMemberReq struct {
+ OperationID string `json:"operationID" binding:"required"`
+ GroupID string `json:"groupID" binding:"required"`
+ UserID string `json:"userID" binding:"required"`
+}
+type CancelMuteGroupMemberResp struct {
+ CommResp
+}
+
+type MuteGroupReq struct {
+ OperationID string `json:"operationID" binding:"required"`
+ GroupID string `json:"groupID" binding:"required"`
+}
+type MuteGroupResp struct {
+ CommResp
+}
+
+type CancelMuteGroupReq struct {
+ OperationID string `json:"operationID" binding:"required"`
+ GroupID string `json:"groupID" binding:"required"`
+}
+type CancelMuteGroupResp struct {
+ CommResp
+}
+
+type SetGroupMemberNicknameReq struct {
+ OperationID string `json:"operationID" binding:"required"`
+ GroupID string `json:"groupID" binding:"required"`
+ UserID string `json:"userID" binding:"required"`
+ Nickname string `json:"nickname"`
+}
+
+type SetGroupMemberNicknameResp struct {
+ CommResp
+}
+
+type SetGroupMemberBaseInfoReq struct {
+ OperationID string `json:"operationID" binding:"required"`
+ GroupID string `json:"groupID" binding:"required"`
+ UserID string `json:"userID" binding:"required"`
+}
+
+type SetGroupMemberInfoReq struct {
+ OperationID string `json:"operationID" binding:"required"`
+ GroupID string `json:"groupID" binding:"required"`
+ UserID string `json:"userID" binding:"required"`
+ Nickname *string `json:"nickname"`
+ FaceURL *string `json:"userGroupFaceUrl"`
+ RoleLevel *int32 `json:"roleLevel" validate:"gte=1,lte=3"`
+ Ex *string `json:"ex"`
+}
+
+type SetGroupMemberRoleLevelReq struct {
+ SetGroupMemberBaseInfoReq
+ RoleLevel int `json:"roleLevel"`
+}
+
+type SetGroupMemberRoleLevelResp struct {
+ CommResp
+}
+
+type GetGroupAbstractInfoReq struct {
+ OperationID string `json:"operationID" binding:"required"`
+ GroupID string `json:"groupID" binding:"required"`
+}
+
+type GetGroupAbstractInfoResp struct {
+ CommResp
+ GroupMemberNumber int32 `json:"groupMemberNumber"`
+ GroupMemberListHash uint64 `json:"groupMemberListHash"`
+}
diff --git a/go/chao-sdk-core/pkg/server_api_params/manage_api_struct.go b/go/chao-sdk-core/pkg/server_api_params/manage_api_struct.go
new file mode 100644
index 0000000..1a07833
--- /dev/null
+++ b/go/chao-sdk-core/pkg/server_api_params/manage_api_struct.go
@@ -0,0 +1,74 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package server_api_params
+
+type DeleteUsersReq struct {
+ OperationID string `json:"operationID" binding:"required"`
+ DeleteUserIDList []string `json:"deleteUserIDList" binding:"required"`
+}
+type DeleteUsersResp struct {
+ CommResp
+ FailedUserIDList []string `json:"data"`
+}
+type GetAllUsersUidReq struct {
+ OperationID string `json:"operationID" binding:"required"`
+}
+type GetAllUsersUidResp struct {
+ CommResp
+ UserIDList []string `json:"data"`
+}
+type GetUsersOnlineStatusReq struct {
+ OperationID string `json:"operationID" binding:"required"`
+ UserIDList []string `json:"userIDList" binding:"required,lte=200"`
+}
+type GetUsersOnlineStatusResp struct {
+ CommResp
+ SuccessResult []GetusersonlinestatusrespSuccessresult `json:"data"`
+}
+type AccountCheckReq struct {
+ OperationID string `json:"operationID" binding:"required"`
+ CheckUserIDList []string `json:"checkUserIDList" binding:"required,lte=100"`
+}
+type AccountCheckResp struct {
+ CommResp
+ Results []*AccountCheckResp_SingleUserStatus `json:"data"`
+}
+type AccountCheckResp_SingleUserStatus struct {
+ UserID string `protobuf:"bytes,1,opt,name=userID" json:"userID,omitempty"`
+ AccountStatus string `protobuf:"bytes,2,opt,name=accountStatus" json:"accountStatus,omitempty"`
+}
+
+type GetusersonlinestatusrespSuccessdetail struct {
+ Platform string `protobuf:"bytes,1,opt,name=platform" json:"platform,omitempty"`
+ Status string `protobuf:"bytes,2,opt,name=status" json:"status,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+type GetusersonlinestatusrespSuccessresult struct {
+ UserID string `protobuf:"bytes,1,opt,name=userID" json:"userID,omitempty"`
+ Status string `protobuf:"bytes,2,opt,name=status" json:"status,omitempty"`
+ DetailPlatformStatus []*GetusersonlinestatusrespSuccessdetail `protobuf:"bytes,3,rep,name=detailPlatformStatus" json:"detailPlatformStatus,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+type AccountcheckrespSingleuserstatus struct {
+ UserID string `protobuf:"bytes,1,opt,name=userID" json:"userID,omitempty"`
+ AccountStatus string `protobuf:"bytes,2,opt,name=accountStatus" json:"accountStatus,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
diff --git a/go/chao-sdk-core/pkg/server_api_params/minio_api_struct.go b/go/chao-sdk-core/pkg/server_api_params/minio_api_struct.go
new file mode 100644
index 0000000..bd2132b
--- /dev/null
+++ b/go/chao-sdk-core/pkg/server_api_params/minio_api_struct.go
@@ -0,0 +1,30 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package server_api_params
+
+type MinioStorageCredentialReq struct {
+ OperationID string `json:"operationID"`
+}
+
+type MinioStorageCredentialResp struct {
+ CommResp
+ SecretAccessKey string `json:"secretAccessKey"`
+ AccessKeyID string `json:"accessKeyID"`
+ SessionToken string `json:"sessionToken"`
+ SignerType int `json:"signerType"`
+ BucketName string `json:"bucketName"`
+ StsEndpointURL string `json:"stsEndpointURL"`
+ StorageTime int `json:"storageTime"`
+}
diff --git a/go/chao-sdk-core/pkg/server_api_params/oss_api_struct.go b/go/chao-sdk-core/pkg/server_api_params/oss_api_struct.go
new file mode 100644
index 0000000..f6c8b57
--- /dev/null
+++ b/go/chao-sdk-core/pkg/server_api_params/oss_api_struct.go
@@ -0,0 +1,36 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package server_api_params
+
+type OSSCredentialReq struct {
+ OperationID string `json:"operationID"`
+ Filename string `json:"filename"`
+ FileType string `json:"file_type"`
+}
+
+type OSSCredentialRespData struct {
+ Endpoint string `json:"endpoint"`
+ AccessKeyId string `json:"access_key_id"`
+ AccessKeySecret string `json:"access_key_secret"`
+ Token string `json:"token"`
+ Bucket string `json:"bucket"`
+ FinalHost string `json:"final_host"`
+}
+
+type OSSCredentialResp struct {
+ CommResp
+ OssData OSSCredentialRespData `json:"-"`
+ Data map[string]interface{} `json:"data"`
+}
diff --git a/go/chao-sdk-core/pkg/server_api_params/public_struct.go b/go/chao-sdk-core/pkg/server_api_params/public_struct.go
new file mode 100644
index 0000000..9c046c0
--- /dev/null
+++ b/go/chao-sdk-core/pkg/server_api_params/public_struct.go
@@ -0,0 +1,150 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package server_api_params
+
+import (
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+)
+
+type ApiUserInfo struct {
+ UserID string `json:"userID" binding:"required,min=1,max=64"`
+ Nickname string `json:"nickname" binding:"omitempty,min=1,max=64"`
+ FaceURL string `json:"faceURL" binding:"omitempty,max=1024"`
+ GlobalRecvMsgOpt int32 `json:"globalRecvMsgOpt" binding:"omitempty,oneof=0 1 2"`
+ Ex string `json:"ex" binding:"omitempty,max=1024"`
+}
+
+type GroupAddMemberInfo struct {
+ UserID string `json:"userID" validate:"required"`
+ RoleLevel int32 `json:"roleLevel" validate:"required"`
+}
+
+type PublicUser struct {
+ UserID string `json:"userID"`
+ Nickname string `json:"nickname"`
+ FaceURL string `json:"faceURL"`
+ Ex string `json:"ex"`
+ CreateTime int64 `json:"createTime"`
+}
+
+type FullUserInfo struct {
+ PublicInfo *PublicUser `json:"publicInfo"`
+ FriendInfo *model_struct.LocalFriend `json:"friendInfo"`
+ BlackInfo *model_struct.LocalBlack `json:"blackInfo"`
+}
+
+type FullUserInfoWithCache struct {
+ PublicInfo *PublicUser `json:"publicInfo"`
+ FriendInfo *model_struct.LocalFriend `json:"friendInfo"`
+ BlackInfo *model_struct.LocalBlack `json:"blackInfo"`
+ GroupMemberInfo *model_struct.LocalGroupMember `json:"groupMemberInfo"`
+}
+
+//GroupName string `json:"groupName"`
+// Introduction string `json:"introduction"`
+// NotificationCmd string `json:"notification"`
+// FaceUrl string `json:"faceUrl"`
+// OperationID string `json:"operationID" binding:"required"`
+// GroupType int32 `json:"groupType"`
+// Ex string `json:"ex"`
+
+//type GroupInfo struct {
+// GroupID string `json:"groupID"`
+// GroupName string `json:"groupName"`
+// NotificationCmd string `json:"notification"`
+// Introduction string `json:"introduction"`
+// FaceUrl string `json:"faceUrl"`
+// OwnerUserID string `json:"ownerUserID"`
+// Ex string `json:"ex"`
+// GroupType int32 `json:"groupType"`
+//}
+
+//type GroupMemberFullInfo struct {
+// GroupID string `json:"groupID"`
+// UserID string `json:"userID"`
+// RoleLevel int32 `json:"roleLevel"`
+// JoinTime uint64 `json:"joinTime"`
+// Nickname string `json:"nickname"`
+// FaceUrl string `json:"faceUrl"`
+// FriendRemark string `json:"friendRemark"`
+// AppMangerLevel int32 `json:"appMangerLevel"`
+// JoinSource int32 `json:"joinSource"`
+// OperatorUserID string `json:"operatorUserID"`
+// Ex string `json:"ex"`
+//}
+//
+//type PublicUserInfo struct {
+// UserID string `json:"userID"`
+// Nickname string `json:"nickname"`
+// FaceUrl string `json:"faceUrl"`
+// Gender int32 `json:"gender"`
+//}
+//
+//type UserInfo struct {
+// UserID string `json:"userID"`
+// Nickname string `json:"nickname"`
+// FaceUrl string `json:"faceUrl"`
+// Gender int32 `json:"gender"`
+// Mobile string `json:"mobile"`
+// Birth string `json:"birth"`
+// Email string `json:"email"`
+// Ex string `json:"ex"`
+//}
+//
+//type FriendInfo struct {
+// OwnerUserID string `json:"ownerUserID"`
+// Remark string `json:"remark"`
+// CreateTime int64 `json:"createTime"`
+// FriendUser UserInfo `json:"friendUser"`
+// AddSource int32 `json:"addSource"`
+// OperatorUserID string `json:"operatorUserID"`
+// Ex string `json:"ex"`
+//}
+//
+//type BlackInfo struct {
+// OwnerUserID string `json:"ownerUserID"`
+// CreateTime int64 `json:"createTime"`
+// BlackUser PublicUserInfo `json:"friendUser"`
+// AddSource int32 `json:"addSource"`
+// OperatorUserID string `json:"operatorUserID"`
+// Ex string `json:"ex"`
+//}
+//
+//type GroupRequest struct {
+// UserID string `json:"userID"`
+// GroupID string `json:"groupID"`
+// HandleResult string `json:"handleResult"`
+// ReqMsg string `json:"reqMsg"`
+// HandleMsg string `json:"handleMsg"`
+// ReqTime int64 `json:"reqTime"`
+// HandleUserID string `json:"handleUserID"`
+// HandleTime int64 `json:"handleTime"`
+// Ex string `json:"ex"`
+//}
+//
+//type FriendRequest struct {
+// FromUserID string `json:"fromUserID"`
+// ToUserID string `json:"toUserID"`
+// HandleResult int32 `json:"handleResult"`
+// ReqMessage string `json:"reqMessage"`
+// CreateTime int64 `json:"createTime"`
+// HandlerUserID string `json:"handlerUserID"`
+// HandleMsg string `json:"handleMsg"`
+// HandleTime int64 `json:"handleTime"`
+// Ex string `json:"ex"`
+//}
+//
+//
+//
diff --git a/go/chao-sdk-core/pkg/server_api_params/super_group.go b/go/chao-sdk-core/pkg/server_api_params/super_group.go
new file mode 100644
index 0000000..7ba3c91
--- /dev/null
+++ b/go/chao-sdk-core/pkg/server_api_params/super_group.go
@@ -0,0 +1,30 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package server_api_params
+
+type GetJoinedSuperGroupReq struct {
+ GetJoinedGroupListReq
+}
+
+type GetJoinedSuperGroupResp struct {
+ GetJoinedGroupListResp
+}
+type GetSuperGroupsInfoReq struct {
+ GetGroupInfoReq
+}
+
+type GetSuperGroupsInfoResp struct {
+ GetGroupInfoResp
+}
diff --git a/go/chao-sdk-core/pkg/server_api_params/third_api_struct.go b/go/chao-sdk-core/pkg/server_api_params/third_api_struct.go
new file mode 100644
index 0000000..9390b0d
--- /dev/null
+++ b/go/chao-sdk-core/pkg/server_api_params/third_api_struct.go
@@ -0,0 +1,35 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package server_api_params
+
+type FcmUpdateTokenReq struct {
+ OperationID string `json:"operationID" binding:"required"`
+ Platform int `json:"platform" binding:"required,min=1,max=2"` //only for ios + android
+ FcmToken string `json:"fcmToken" binding:"required"`
+}
+
+type FcmUpdateTokenResp struct {
+ CommResp
+}
+
+type SetAppBadgeReq struct {
+ OperationID string `json:"operationID" binding:"required"`
+ FromUserID string `json:"fromUserID" binding:"required"`
+ AppUnreadCount int32 `json:"appUnreadCount" binding:"required"`
+}
+
+type SetAppBadgeResp struct {
+ CommResp
+}
diff --git a/go/chao-sdk-core/pkg/server_api_params/user_api_struct.go b/go/chao-sdk-core/pkg/server_api_params/user_api_struct.go
new file mode 100644
index 0000000..4db647f
--- /dev/null
+++ b/go/chao-sdk-core/pkg/server_api_params/user_api_struct.go
@@ -0,0 +1,54 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package server_api_params
+
+import (
+ "github.com/openimsdk/protocol/sdkws"
+)
+
+type GetUsersInfoReq struct {
+ OperationID string `json:"operationID" binding:"required"`
+ UserIDList []string `json:"userIDList" binding:"required"`
+}
+type GetUsersInfoResp struct {
+ CommResp
+ UserInfoList []*sdkws.PublicUserInfo
+ Data []map[string]interface{} `json:"data"`
+}
+
+type UpdateSelfUserInfoReq struct {
+ ApiUserInfo
+ OperationID string `json:"operationID" binding:"required"`
+}
+
+type UpdateUserInfoResp struct {
+ CommResp
+}
+type SetGlobalRecvMessageOptReq struct {
+ OperationID string `json:"operationID" binding:"required"`
+ GlobalRecvMsgOpt *int32 `json:"globalRecvMsgOpt" binding:"omitempty,oneof=0 1 2"`
+}
+type SetGlobalRecvMessageOptResp struct {
+ CommResp
+}
+type GetSelfUserInfoReq struct {
+ OperationID string `json:"operationID" binding:"required"`
+ UserID string `json:"userID" binding:"required"`
+}
+type GetSelfUserInfoResp struct {
+ CommResp
+ UserInfo *sdkws.UserInfo `json:"-"`
+ Data map[string]interface{} `json:"data"`
+}
diff --git a/go/chao-sdk-core/pkg/syncer/state.go b/go/chao-sdk-core/pkg/syncer/state.go
new file mode 100644
index 0000000..6db3c0a
--- /dev/null
+++ b/go/chao-sdk-core/pkg/syncer/state.go
@@ -0,0 +1,22 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package syncer
+
+const (
+ Unchanged = 0
+ Insert = 1
+ Update = 2
+ Delete = 3
+)
diff --git a/go/chao-sdk-core/pkg/syncer/syncer.go b/go/chao-sdk-core/pkg/syncer/syncer.go
new file mode 100644
index 0000000..d002276
--- /dev/null
+++ b/go/chao-sdk-core/pkg/syncer/syncer.go
@@ -0,0 +1,358 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package syncer
+
+import (
+ "context"
+ "github.com/google/go-cmp/cmp"
+ "github.com/openimsdk/openim-sdk-core/v3/internal/util"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/page"
+ "github.com/openimsdk/tools/errs"
+ "github.com/openimsdk/tools/utils/datautil"
+ "reflect"
+
+ "github.com/openimsdk/tools/log"
+)
+
+// New creates a new Syncer instance with the provided synchronization functions.
+// This function requires several callback functions to handle different aspects of data synchronization:
+// - insert: A function to insert new data.
+// - delete: A function to delete existing data.
+// - update: A function to update existing data.
+// - uuid: A function to generate a unique identifier for each data item.
+// - equal: A function to check if two data items are equal.
+// - notice: A function to handle notifications during the sync process.
+// Panics if insert, delete, update, or uuid functions are not provided.
+func New[T, RESP any, V comparable](
+ insert func(ctx context.Context, value T) error,
+ delete func(ctx context.Context, value T) error,
+ update func(ctx context.Context, server T, local T) error,
+ uuid func(value T) V,
+ equal func(a T, b T) bool,
+ notice func(ctx context.Context, state int, server, local T) error,
+) *Syncer[T, RESP, V] {
+ if insert == nil || update == nil || delete == nil || uuid == nil {
+ panic("invalid params")
+ }
+
+ // Determine the type of T and remove pointer indirection if necessary.
+ var t T
+ tof := reflect.TypeOf(&t)
+ for tof.Kind() == reflect.Ptr {
+ tof = tof.Elem()
+ }
+
+ // Return a new Syncer instance with the provided functions and the type as a string.
+ return &Syncer[T, RESP, V]{
+ insert: insert,
+ update: update,
+ delete: delete,
+ uuid: uuid,
+ equal: equal,
+ notice: notice,
+ ts: tof.String(),
+ }
+}
+
+// Syncer is a struct that holds functions for synchronizing data.
+// It includes functions for inserting, updating, deleting, and notifying,
+// as well as functions for generating unique IDs and checking equality of data items.
+type Syncer[T, RESP any, V comparable] struct {
+ insert func(ctx context.Context, server T) error
+ update func(ctx context.Context, server T, local T) error
+ delete func(ctx context.Context, local T) error
+ batchInsert func(ctx context.Context, servers []T) error
+ deleteAll func(ctx context.Context, entityID string) error
+ notice func(ctx context.Context, state int, server, local T) error
+ equal func(server T, local T) bool
+ uuid func(value T) V
+ batchPageReq func(entityID string) page.PageReq
+ batchPageRespConvertFunc func(resp *RESP) []T
+ reqApiRouter string
+ ts string // Represents the type of T as a string.
+
+}
+
+type NoResp struct{}
+
+func New2[T, RESP any, V comparable](opts ...Option[T, RESP, V]) *Syncer[T, RESP, V] {
+ // Create a new Syncer instance.
+ s := &Syncer[T, RESP, V]{}
+
+ // Apply the options to the Syncer.
+ for _, opt := range opts {
+ opt(s)
+ }
+
+ // Check required functions.
+ if s.insert == nil || s.update == nil || s.delete == nil || s.uuid == nil {
+ panic("invalid params")
+ }
+
+ // Determine the type of T and remove pointer indirection if necessary.
+ var t T
+ tof := reflect.TypeOf(&t)
+ for tof.Kind() == reflect.Ptr {
+ tof = tof.Elem()
+ }
+
+ // Set the type string.
+ s.ts = tof.String()
+
+ return s
+}
+
+// Option is a function that configures a Syncer.
+type Option[T, RESP any, V comparable] func(*Syncer[T, RESP, V])
+
+// WithInsert sets the insert function for the Syncer.
+func WithInsert[T, RESP any, V comparable](f func(ctx context.Context, value T) error) Option[T, RESP, V] {
+ return func(s *Syncer[T, RESP, V]) {
+ s.insert = f
+ }
+}
+
+// WithUpdate sets the update function for the Syncer.
+func WithUpdate[T, RESP any, V comparable](f func(ctx context.Context, server T, local T) error) Option[T, RESP, V] {
+ return func(s *Syncer[T, RESP, V]) {
+ s.update = f
+ }
+}
+
+// WithDelete sets the delete function for the Syncer.
+func WithDelete[T, RESP any, V comparable](f func(ctx context.Context, local T) error) Option[T, RESP, V] {
+ return func(s *Syncer[T, RESP, V]) {
+ s.delete = f
+ }
+}
+
+// WithBatchInsert sets the batchInsert function for the Syncer.
+func WithBatchInsert[T, RESP any, V comparable](f func(ctx context.Context, values []T) error) Option[T, RESP, V] {
+ return func(s *Syncer[T, RESP, V]) {
+ s.batchInsert = f
+ }
+}
+
+// WithDeleteAll sets the deleteAll function for the Syncer.
+func WithDeleteAll[T, RESP any, V comparable](f func(ctx context.Context, entityID string) error) Option[T, RESP, V] {
+ return func(s *Syncer[T, RESP, V]) {
+ s.deleteAll = f
+ }
+}
+
+// WithUUID sets the uuid function for the Syncer.
+func WithUUID[T, RESP any, V comparable](f func(value T) V) Option[T, RESP, V] {
+ return func(s *Syncer[T, RESP, V]) {
+ s.uuid = f
+ }
+}
+
+// WithEqual sets the equal function for the Syncer.
+func WithEqual[T, RESP any, V comparable](f func(a T, b T) bool) Option[T, RESP, V] {
+ return func(s *Syncer[T, RESP, V]) {
+ s.equal = f
+ }
+}
+
+// WithNotice sets the notice function for the Syncer.
+func WithNotice[T, RESP any, V comparable](f func(ctx context.Context, state int, server, local T) error) Option[T, RESP, V] {
+ return func(s *Syncer[T, RESP, V]) {
+ s.notice = f
+ }
+}
+
+// WithBatchPageReq sets the batchPageReq for the Syncer.
+func WithBatchPageReq[T, RESP any, V comparable](f func(entityID string) page.PageReq) Option[T, RESP, V] {
+ return func(s *Syncer[T, RESP, V]) {
+ s.batchPageReq = f
+ }
+}
+
+// WithBatchPageRespConvertFunc sets the batchPageRespConvertFunc function for the Syncer.
+func WithBatchPageRespConvertFunc[T, RESP any, V comparable](f func(resp *RESP) []T) Option[T, RESP, V] {
+ return func(s *Syncer[T, RESP, V]) {
+ s.batchPageRespConvertFunc = f
+ }
+}
+
+// WithReqApiRouter sets the reqApiRouter for the Syncer.
+func WithReqApiRouter[T, RESP any, V comparable](router string) Option[T, RESP, V] {
+ return func(s *Syncer[T, RESP, V]) {
+ s.reqApiRouter = router
+ }
+}
+
+// NewSyncer creates a new Syncer with the provided options.
+func NewSyncer[T, RESP any, V comparable](opts ...Option[T, RESP, V]) *Syncer[T, RESP, V] {
+ syncer := &Syncer[T, RESP, V]{}
+ for _, opt := range opts {
+ opt(syncer)
+ }
+ return syncer
+}
+
+// eq is a helper function to check equality of two data items.
+// It uses the equal function if provided; otherwise, it falls back to the cmp.Equal function.
+func (s *Syncer[T, RESP, V]) eq(server T, local T) bool {
+ if s.equal != nil {
+ return s.equal(server, local)
+ }
+ return cmp.Equal(server, local)
+}
+
+// onNotice is a helper function to handle notifications.
+// It calls the Syncer's notice function and the provided notice function in sequence if they are not nil.
+func (s *Syncer[T, RESP, V]) onNotice(ctx context.Context, state int, server, local T, fn func(ctx context.Context, state int, server, local T) error) error {
+ if s.notice != nil {
+ if err := s.notice(ctx, state, server, local); err != nil {
+ return err
+ }
+ }
+ if fn != nil {
+ if err := fn(ctx, state, server, local); err != nil {
+ return err
+ }
+ }
+ return nil
+}
+
+// Sync synchronizes server data with local data.
+// Sync synchronizes the data between the server and local storage.
+// It takes a context, two slices of data (serverData and localData),
+// a notice function to handle notifications during the sync process,
+// and a variadic parameter skipDeletion to control deletion behavior.
+func (s *Syncer[T, RESP, V]) Sync(ctx context.Context, serverData []T, localData []T, notice func(ctx context.Context, state int, server, local T) error, skipDeletionAndNotice ...bool) (err error) {
+ defer func() {
+ // Log the outcome of the synchronization process.
+ if err == nil {
+ log.ZDebug(ctx, "sync success", "type", s.ts)
+ } else {
+ log.ZError(ctx, "sync failed", err, "type", s.ts)
+ }
+ }()
+ skipDeletion := false
+ if len(skipDeletionAndNotice) > 0 {
+ skipDeletion = skipDeletionAndNotice[0]
+ }
+
+ // If both server and local data are empty, log and return.
+ if len(serverData) == 0 && len(localData) == 0 {
+ log.ZDebug(ctx, "sync both the server and client are empty", "type", s.ts)
+ return nil
+ }
+
+ // Convert local data into a map for easier lookup.
+ localMap := datautil.SliceToMap(localData, func(item T) V {
+ return s.uuid(item)
+ })
+
+ // Iterate through server data to sync with local data.
+ for i := range serverData {
+ server := serverData[i]
+ id := s.uuid(server)
+ local, ok := localMap[id]
+
+ // If the item doesn't exist locally, insert it.
+ if !ok {
+ log.ZDebug(ctx, "sync insert", "type", s.ts, "server", server)
+ if err := s.insert(ctx, server); err != nil {
+ log.ZError(ctx, "sync insert failed", err, "type", s.ts, "server", server, "local", local)
+ return err
+ }
+ if err := s.onNotice(ctx, Insert, server, local, notice); err != nil {
+ log.ZError(ctx, "sync notice insert failed", err, "type", s.ts, "server", server, "local", local)
+ return err
+ }
+ continue
+ }
+
+ // Remove the item from the local map as it's found.
+ delete(localMap, id)
+
+ // If the local and server items are equal, notify and continue.
+ if s.eq(server, local) {
+ if err := s.onNotice(ctx, Unchanged, local, server, notice); err != nil {
+ log.ZError(ctx, "sync notice unchanged failed", err, "type", s.ts, "server", server, "local", local)
+ return err
+ }
+ continue
+ }
+
+ log.ZDebug(ctx, "sync update", "type", s.ts, "server", server, "local", local)
+ // Update the local item with server data.
+ if err := s.update(ctx, server, local); err != nil {
+ log.ZError(ctx, "sync update failed", err, "type", s.ts, "server", server, "local", local)
+ return err
+ }
+ if err := s.onNotice(ctx, Update, server, local, notice); err != nil {
+ log.ZError(ctx, "sync notice update failed", err, "type", s.ts, "server", server, "local", local)
+ return err
+ }
+ }
+
+ // Check the skipDeletion flag; if set, skip deletion.
+ if skipDeletion {
+ return nil
+ }
+ log.ZDebug(ctx, "sync delete", "type", s.ts, "localMap", localMap)
+ // Delete any local items not present in server data.
+ for id := range localMap {
+ local := localMap[id]
+ if err := s.delete(ctx, local); err != nil {
+ log.ZError(ctx, "sync delete failed", err, "type", s.ts, "local", local)
+ return err
+ }
+ var server T
+ if err := s.onNotice(ctx, Delete, server, local, notice); err != nil {
+ log.ZError(ctx, "sync notice delete failed", err, "type", s.ts, "local", local)
+ return err
+ }
+ }
+ return nil
+}
+
+func (s *Syncer[T, RESP, V]) FullSync(ctx context.Context, entityID string) (err error) {
+ defer func() {
+ // Log the outcome of the synchronization process.
+ if err == nil {
+ log.ZDebug(ctx, "full sync success", "type", s.ts)
+ } else {
+ log.ZError(ctx, "full sync failed", err, "type", s.ts)
+ }
+ }()
+
+ //// If server data is empty, log and return
+ //if len(serverData) == 0 {
+ // log.ZDebug(ctx, "full sync server data is empty", "type", s.ts)
+ // return nil
+ //}
+
+ // Clear local table data
+ if err = s.deleteAll(ctx, entityID); err != nil {
+ return errs.New("full sync delete all failed", "err", err.Error(), "type", s.ts)
+ }
+
+ // Get batch req
+ batchReq := s.batchPageReq(entityID)
+
+ // Batch page pull data and insert server data
+ if err = util.FetchAndInsertPagedData(ctx, s.reqApiRouter, batchReq, s.batchPageRespConvertFunc,
+ s.batchInsert, s.insert, 100); err != nil {
+ return errs.New("full sync batch insert failed", "err", err.Error(), "type", s.ts)
+ }
+
+ return nil
+
+}
diff --git a/go/chao-sdk-core/pkg/utils/aes.go b/go/chao-sdk-core/pkg/utils/aes.go
new file mode 100644
index 0000000..244b424
--- /dev/null
+++ b/go/chao-sdk-core/pkg/utils/aes.go
@@ -0,0 +1,61 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package utils
+
+import (
+ "bytes"
+ "crypto/aes"
+ "crypto/cipher"
+)
+
+func PKCS5Padding(plaintext []byte, blockSize int) []byte {
+ padding := blockSize - len(plaintext)%blockSize
+ padtext := bytes.Repeat([]byte{byte(padding)}, padding)
+ return append(plaintext, padtext...)
+}
+
+func PKCS5UnPadding(origData []byte) []byte {
+ length := len(origData)
+ unpadding := int(origData[length-1])
+ return origData[:(length - unpadding)]
+}
+
+func AesEncrypt(origData, key []byte) ([]byte, error) {
+ block, err := aes.NewCipher(key)
+ if err != nil {
+ return nil, err
+ }
+
+ blockSize := block.BlockSize()
+ origData = PKCS5Padding(origData, blockSize)
+ blockMode := cipher.NewCBCEncrypter(block, key[:blockSize])
+ crypted := make([]byte, len(origData))
+ blockMode.CryptBlocks(crypted, origData)
+ return crypted, nil
+}
+
+func AesDecrypt(crypted, key []byte) ([]byte, error) {
+ block, err := aes.NewCipher(key)
+ if err != nil {
+ return nil, err
+ }
+
+ blockSize := block.BlockSize()
+ blockMode := cipher.NewCBCDecrypter(block, key[:blockSize]) //åå§åéįéŋåēĻåŋ
éĄģįäēåblockįéŋåēĻ16åč
+ origData := make([]byte, len(crypted))
+ blockMode.CryptBlocks(origData, crypted)
+ origData = PKCS5UnPadding(origData)
+ return origData, nil
+}
diff --git a/go/chao-sdk-core/pkg/utils/file.go b/go/chao-sdk-core/pkg/utils/file.go
new file mode 100644
index 0000000..1af258b
--- /dev/null
+++ b/go/chao-sdk-core/pkg/utils/file.go
@@ -0,0 +1,56 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package utils
+
+import (
+ "io"
+ "os"
+ "path"
+)
+
+func CopyFile(srcName string, dstName string) (written int64, err error) {
+ src, err := os.Open(srcName)
+ if err != nil {
+ return
+ }
+ dst, err := os.OpenFile(dstName, os.O_WRONLY|os.O_CREATE, 0644)
+ if err != nil {
+ return
+ }
+
+ defer func() {
+ if src != nil {
+ src.Close()
+ }
+ if dst != nil {
+ dst.Close()
+ }
+ }()
+ return io.Copy(dst, src)
+}
+
+func FileTmpPath(fullPath, dbPrefix string) string {
+ suffix := path.Ext(fullPath)
+ if len(suffix) == 0 {
+ sdkLog("suffix err:")
+ }
+
+ return dbPrefix + Md5(fullPath) + suffix //a->b
+}
+
+func FileExist(filename string) bool {
+ _, err := os.Stat(filename)
+ return err == nil || os.IsExist(err)
+}
diff --git a/go/chao-sdk-core/pkg/utils/utils.go b/go/chao-sdk-core/pkg/utils/utils.go
new file mode 100644
index 0000000..978ae54
--- /dev/null
+++ b/go/chao-sdk-core/pkg/utils/utils.go
@@ -0,0 +1,555 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package utils
+
+import (
+ "crypto/md5"
+ "encoding/hex"
+ "encoding/json"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/sdk_struct"
+ "sort"
+
+ "github.com/golang/protobuf/jsonpb"
+ "github.com/golang/protobuf/proto"
+
+ "reflect"
+
+ "github.com/pkg/errors"
+
+ "math/rand"
+ "runtime"
+ "strconv"
+ "strings"
+ "time"
+)
+
+func OperationIDGenerator() string {
+ return strconv.FormatInt(time.Now().UnixNano()+int64(rand.Uint32()), 10)
+}
+func GetMsgID(sendID string) string {
+ t := Int64ToString(GetCurrentTimestampByNano())
+ return Md5(t + sendID + Int64ToString(rand.Int63n(GetCurrentTimestampByNano())))
+}
+func Md5(s string) string {
+ h := md5.New()
+ h.Write([]byte(s))
+ cipher := h.Sum(nil)
+ return hex.EncodeToString(cipher)
+}
+
+//Get the current timestamp by Second
+
+func GetCurrentTimestampBySecond() int64 {
+ return time.Now().Unix()
+}
+
+// Get the current timestamp by Mill
+func GetCurrentTimestampByMill() int64 {
+ return time.Now().UnixNano() / 1e6
+}
+
+// Convert nano timestamp to time.Time type
+func UnixNanoSecondToTime(nanoSecond int64) time.Time {
+ return time.Unix(0, nanoSecond)
+}
+
+// Get the current timestamp by Nano
+func GetCurrentTimestampByNano() int64 {
+ return time.Now().UnixNano()
+}
+
+func StructToJsonString(param interface{}) string {
+ dataType, err := json.Marshal(param)
+ if err != nil {
+ panic(err)
+ }
+ dataString := string(dataType)
+ return dataString
+}
+
+func StructToJsonStringDefault(param interface{}) string {
+ if reflect.TypeOf(param).Kind() == reflect.Slice && reflect.ValueOf(param).Len() == 0 {
+ return "[]"
+ }
+ return StructToJsonString(param)
+}
+
+// The incoming parameter must be a pointer
+func JsonStringToStruct(s string, args interface{}) error {
+ return Wrap(json.Unmarshal([]byte(s), args), "json Unmarshal failed")
+}
+func FirstLower(s string) string {
+ if s == "" {
+ return ""
+ }
+ return strings.ToLower(s[:1]) + s[1:]
+}
+
+//Convert timestamp to time.Time type
+
+func UnixSecondToTime(second int64) time.Time {
+ return time.Unix(second, 0)
+}
+func IntToString(i int) string {
+ return strconv.FormatInt(int64(i), 10)
+}
+func Int32ToString(i int32) string {
+ return strconv.FormatInt(int64(i), 10)
+}
+func Int64ToString(i int64) string {
+ return strconv.FormatInt(i, 10)
+}
+func StringToInt64(i string) int64 {
+ j, _ := strconv.ParseInt(i, 10, 64)
+ return j
+}
+
+func StringToInt(i string) int {
+ j, _ := strconv.Atoi(i)
+ return j
+}
+
+func RunFuncName() string {
+ pc, _, _, _ := runtime.Caller(2)
+ return CleanUpfuncName(runtime.FuncForPC(pc).Name())
+}
+
+func LogBegin(v ...interface{}) {
+ //if constant.SdkLogFlag == 1 {
+ // return
+ //}
+ //if open_im_sdk.logger != nil {
+ // log2.NewInfo("", v...)
+ // return
+ //}
+ //pc, b, c, _ := runtime.Caller(1)
+ //fname := runtime.FuncForPC(pc).Name()
+ //i := strings.LastIndex(b, "/")
+ //if i != -1 {
+ // sLog.Println(" [", b[i+1:len(b)], ":", c, "]", cleanUpfuncName(fname), "call funcation begin, args: ", v)
+ //}
+}
+
+func LogEnd(v ...interface{}) {
+ //if constant.SdkLogFlag == 1 {
+ // return
+ //}
+ //if open_im_sdk.logger != nil {
+ // log2.NewInfo("", v...)
+ // return
+ //}
+ //pc, b, c, _ := runtime.Caller(1)
+ //fname := runtime.FuncForPC(pc).Name()
+ //i := strings.LastIndex(b, "/")
+ //if i != -1 {
+ // sLog.Println(" [", b[i+1:len(b)], ":", c, "]", cleanUpfuncName(fname), "call funcation end, args: ", v)
+ //}
+}
+
+func LogStart(v ...interface{}) {
+ //if constant.SdkLogFlag == 1 {
+ // return
+ //}
+ //if open_im_sdk.logger != nil {
+ // log2.NewInfo("", v...)
+ // return
+ //}
+ //pc, b, c, _ := runtime.Caller(1)
+ //fname := runtime.FuncForPC(pc).Name()
+ //i := strings.LastIndex(b, "/")
+ //if i != -1 {
+ // sLog.Println(" [", b[i+1:len(b)], ":", c, "]", cleanUpfuncName(fname), "funcation start, args: ", v)
+ //}
+}
+
+func LogFReturn(v ...interface{}) {
+ //if constant.SdkLogFlag == 1 {
+ // return
+ //}
+ //if open_im_sdk.logger != nil {
+ // log2.NewInfo("", v...)
+ // return
+ //}
+ //pc, b, c, _ := runtime.Caller(1)
+ //fname := runtime.FuncForPC(pc).Name()
+ //i := strings.LastIndex(b, "/")
+ //if i != -1 {
+ // sLog.Println("[", b[i+1:len(b)], ":", c, "]", cleanUpfuncName(fname), "failed return args(info): ", v)
+ //}
+}
+
+func LogSReturn(v ...interface{}) {
+ //if constant.SdkLogFlag == 1 {
+ // return
+ //}
+ //if open_im_sdk.logger != nil {
+ // log2.NewInfo("", v...)
+ // return
+ //}
+ //pc, b, c, _ := runtime.Caller(1)
+ //fname := runtime.FuncForPC(pc).Name()
+ //i := strings.LastIndex(b, "/")
+ //if i != -1 {
+ // sLog.Println("[", b[i+1:len(b)], ":", c, "]", cleanUpfuncName(fname), "success return args(info): ", v)
+ //}
+
+}
+
+func sdkLog(v ...interface{}) {
+ //if constant.SdkLogFlag == 1 {
+ // return
+ //}
+ //if open_im_sdk.logger != nil {
+ // log2.NewInfo("", v...)
+ // return
+ //}
+ //_, b, c, _ := runtime.Caller(1)
+ //i := strings.LastIndex(b, "/")
+ //if i != -1 {
+ // sLog.Println("[", b[i+1:len(b)], ":", c, "]", v)
+ //}
+
+}
+
+type LogInfo struct {
+ Info string `json:"info"`
+}
+
+// judge a string whether in the string list
+func IsContain(target string, List []string) bool {
+
+ for _, element := range List {
+
+ if target == element {
+ return true
+ }
+ }
+ return false
+
+}
+func IsContainInt(target int, List []int) bool {
+
+ for _, element := range List {
+
+ if target == element {
+ return true
+ }
+ }
+ return false
+
+}
+func IsContainUInt32(target uint32, List []uint32) bool {
+
+ for _, element := range List {
+
+ if target == element {
+ return true
+ }
+ }
+ return false
+
+}
+func GetSwitchFromOptions(Options map[string]bool, key string) (result bool) {
+ if flag, ok := Options[key]; !ok || flag {
+ return true
+ }
+ return false
+}
+func SetSwitchFromOptions(Options map[string]bool, key string, value bool) {
+ Options[key] = value
+}
+
+func Wrap(err error, message string) error {
+ return errors.Wrap(err, "==> "+printCallerNameAndLine()+message)
+}
+func Unwrap(err error) error {
+ for err != nil {
+ unwrap, ok := err.(interface {
+ Unwrap() error
+ })
+ if !ok {
+ break
+ }
+ err = unwrap.Unwrap()
+ }
+ return err
+}
+
+func WithMessage(err error, message string) error {
+ return errors.WithMessage(err, "==> "+printCallerNameAndLine()+message)
+}
+
+func GetSelfFuncName() string {
+ pc, _, _, _ := runtime.Caller(1)
+ return CleanUpfuncName(runtime.FuncForPC(pc).Name())
+}
+func CleanUpfuncName(funcName string) string {
+ end := strings.LastIndex(funcName, ".")
+ if end == -1 {
+ return ""
+ }
+ return funcName[end+1:]
+}
+
+func printCallerNameAndLine() string {
+ pc, _, line, _ := runtime.Caller(2)
+ return runtime.FuncForPC(pc).Name() + "()@" + strconv.Itoa(line) + ": "
+}
+func StructToMap(user interface{}) map[string]interface{} {
+ data, _ := json.Marshal(user)
+ m := make(map[string]interface{})
+ json.Unmarshal(data, &m)
+ return m
+}
+
+// funcation GetConversationIDBySessionType(sourceID string, sessionType int) string {
+// switch sessionType {
+// case constant.SingleChatType:
+// return "single_" + sourceID
+// case constant.GroupChatType:
+// return "group_" + sourceID
+// case constant.SuperGroupChatType:
+// return "super_group_" + sourceID
+// case constant.NotificationChatType:
+// return "notification_" + sourceID
+// }
+// return ""
+// }
+func GetConversationIDByMsg(msg *sdk_struct.MsgStruct) string {
+ switch msg.SessionType {
+ case constant.SingleChatType:
+ l := []string{msg.SendID, msg.RecvID}
+ sort.Strings(l)
+ return "si_" + strings.Join(l, "_") // single chat
+ case constant.GroupChatType:
+ return "g_" + msg.GroupID // group chat
+ case constant.SuperGroupChatType:
+ return "sg_" + msg.GroupID // super group chat
+ case constant.NotificationChatType:
+ return "sn_" + msg.SendID + "_" + msg.RecvID // server notification chat
+ }
+ return ""
+}
+
+func GetConversationIDByGroupID(groupID string) string {
+ return "sg_" + groupID
+}
+
+func GetConversationTableName(conversationID string) string {
+ return constant.ChatLogsTableNamePre + conversationID
+}
+func GetTableName(conversationID string) string {
+ return constant.ChatLogsTableNamePre + conversationID
+}
+func GetErrTableName(conversationID string) string {
+ return constant.SuperGroupErrChatLogsTableNamePre + conversationID
+}
+
+type Comparable interface {
+ ~int | ~string | ~float64 | ~int32
+}
+
+func RemoveRepeatedElementsInList[T Comparable](slc []T) []T {
+ var result []T
+ tempMap := map[T]struct{}{}
+ for _, e := range slc {
+ if _, found := tempMap[e]; !found {
+ tempMap[e] = struct{}{}
+ result = append(result, e)
+ }
+ }
+
+ return result
+}
+func RemoveOneInList[T comparable](slice []T, val T) []T {
+ for i, v := range slice {
+ if v == val {
+ return append(slice[:i], slice[i+1:]...)
+ }
+ }
+ return slice
+}
+
+/*
+*
+KMP
+*
+*/
+func KMP(rMainString string, rSubString string) (isInMainString bool) {
+ mainString := strings.ToLower(rMainString)
+ subString := strings.ToLower(rSubString)
+ mainIdx := 0
+ subIdx := 0
+ mainLen := len(mainString)
+ subLen := len(subString)
+ next := computeNextArray(subString)
+ for {
+ if mainIdx >= mainLen || subIdx >= subLen {
+ break
+ }
+
+ if mainString[mainIdx] == subString[subIdx] {
+ mainIdx++
+ subIdx++
+ } else {
+ if subIdx != 0 {
+ subIdx = next[subIdx-1]
+ } else {
+ mainIdx++
+ }
+
+ }
+ }
+ if subIdx >= subLen {
+ if mainIdx-subLen >= 0 {
+ return true
+ }
+ }
+ return false
+
+}
+
+func computeNextArray(subString string) []int {
+ next := make([]int, len(subString))
+ index := 0
+ i := 1
+ for i < len(subString) {
+ if subString[i] == subString[index] {
+ next[i] = index + 1
+ i++
+ index++
+ } else {
+ if index != 0 {
+ index = next[index-1]
+ } else {
+ i++
+ }
+ }
+ }
+ return next
+}
+
+func TrimStringList(list []string) (result []string) {
+ for _, v := range list {
+ if len(strings.Trim(v, " ")) != 0 {
+ result = append(result, v)
+ }
+ }
+ return result
+
+}
+
+// Get the intersection of two slices
+func Intersect(slice1, slice2 []int64) []int64 {
+ m := make(map[int64]bool)
+ n := make([]int64, 0)
+ for _, v := range slice1 {
+ m[v] = true
+ }
+ for _, v := range slice2 {
+ flag, _ := m[v]
+ if flag {
+ n = append(n, v)
+ }
+ }
+ return n
+}
+
+// Get the diff of two slices
+func DifferenceSubset(mainSlice, subSlice []int64) []int64 {
+ m := make(map[int64]bool)
+ n := make([]int64, 0)
+ for _, v := range subSlice {
+ m[v] = true
+ }
+ for _, v := range mainSlice {
+ if !m[v] {
+ n = append(n, v)
+ }
+ }
+ return n
+}
+func DifferenceSubsetString(mainSlice, subSlice []string) []string {
+ m := make(map[string]bool)
+ n := make([]string, 0)
+ for _, v := range subSlice {
+ m[v] = true
+ }
+ for _, v := range mainSlice {
+ if !m[v] {
+ n = append(n, v)
+ }
+ }
+ return n
+}
+func JsonDataOne(pb proto.Message) map[string]interface{} {
+ return ProtoToMap(pb, false)
+}
+
+func ProtoToMap(pb proto.Message, idFix bool) map[string]interface{} {
+ marshaler := jsonpb.Marshaler{
+ OrigName: true,
+ EnumsAsInts: false,
+ EmitDefaults: true,
+ }
+
+ s, _ := marshaler.MarshalToString(pb)
+ out := make(map[string]interface{})
+ json.Unmarshal([]byte(s), &out)
+ if idFix {
+ if _, ok := out["id"]; ok {
+ out["_id"] = out["id"]
+ delete(out, "id")
+ }
+ }
+ return out
+}
+func GetUserIDForMinSeq(userID string) string {
+ return "u_" + userID
+}
+
+func GetGroupIDForMinSeq(groupID string) string {
+ return "g_" + groupID
+}
+
+func TimeStringToTime(timeString string) (time.Time, error) {
+ t, err := time.Parse("2006-01-02", timeString)
+ return t, err
+}
+
+func TimeToString(t time.Time) string {
+ return t.Format("2006-01-02")
+}
+func Uint32ListConvert(list []uint32) []int64 {
+ var result []int64
+ for _, v := range list {
+ result = append(result, int64(v))
+ }
+ return result
+}
+
+func UnmarshalNotificationElem(bytes []byte, t interface{}) error {
+ var n sdk_struct.NotificationElem
+ err := JsonStringToStruct(string(bytes), &n)
+ if err != nil {
+ return err
+ }
+ err = JsonStringToStruct(n.Detail, t)
+ if err != nil {
+ return err
+ }
+ return nil
+}
diff --git a/go/chao-sdk-core/pkg/version/README.md b/go/chao-sdk-core/pkg/version/README.md
new file mode 100644
index 0000000..d7f3095
--- /dev/null
+++ b/go/chao-sdk-core/pkg/version/README.md
@@ -0,0 +1,57 @@
+# OpenIM SDK Version Management
+
+OpenIM SDK uses a unique approach to version management by integrating principles from the Kubernetes project version management design.
+
+## Versioning Methodology:
+
+Whenever you run the server CTL via the `go build` command, the system will automatically obtain the current `git commit hash`. This commit hash is then set as the version number and written to the `pkg/version/version.go` file.
+
+This approach ensures that each build is distinct and can be traced back to the specific commit hash from which it was built. It is a transparent and easy way to track changes and modifications across different versions of the SDK.
+
+## How to Check Version:
+
+- **Server Version**: Use the command `imctl version`.
+- **Client Version**: Execute the command `go run main.go version`.
+
+## SDK Versioning:
+
+1. **Traditional SDK Versioning**: The standard method of versioning that uses Major, Minor, and Patch numbers.
+2. **Client-Represented Versioning**: This is primarily managed through the Go versioning system. It helps in understanding the compatibility and dependencies.
+
+## Code for Version Management:
+
+### Utility to Compare Version Strings:
+
+This function compares two version strings that follow the OpenIM versioning pattern.
+
+```
+goCopy codefunc CompareOpenIMAwareVersionStrings(v1, v2 string) int {
+ ...
+}
+```
+
+### Information Structure for Version:
+
+This struct contains various version-related information, making it easy to understand and process the build details.
+
+```
+goCopy codetype Info struct {
+ ...
+}
+
+func (info Info) String() string {
+ ...
+}
+
+func Get() Info {
+ ...
+}
+```
+
+## Conclusion:
+
+Effective version management is crucial for the growth and stability of any SDK. With OpenIM SDK's approach, users can be confident about the build's origin and its compatibility. The code snippets provided above can be utilized to integrate this versioning mechanism into any project seamlessly.
+
+------
+
+Hope this helps!
\ No newline at end of file
diff --git a/go/chao-sdk-core/pkg/version/base.go b/go/chao-sdk-core/pkg/version/base.go
new file mode 100644
index 0000000..f820f2c
--- /dev/null
+++ b/go/chao-sdk-core/pkg/version/base.go
@@ -0,0 +1,47 @@
+package version
+
+// Base version information.
+//
+// This is the fallback data used when version information from git is not
+// provided via go ldflags. It provides an approximation of the OpenIM
+// version for ad-hoc builds (e.g. `go build`) that cannot get the version
+// information from git.
+//
+// If you are looking at these fields in the git tree, they look
+// strange. They are modified on the fly by the build process. The
+// in-tree values are dummy values used for "git archive", which also
+// works for GitHub tar downloads.
+//
+// When releasing a new OpenIM version, this file is updated by
+// build/mark_new_version.sh to reflect the new version, and then a
+// git annotated tag (using format vX.Y where X == Major version and Y
+// == Minor version) is created to point to the commit that updates
+// pkg/version/base.go.
+var (
+ // TODO: Deprecate gitMajor and gitMinor, use only gitVersion
+ // instead. First step in deprecation, keep the fields but make
+ // them irrelevant. (Next we'll take it out, which may muck with
+ // scripts consuming the imctl version output - but most of
+ // these should be looking at gitVersion already anyways.)
+ gitMajor string = "" // major version, always numeric
+ gitMinor string = "" // minor version, numeric possibly followed by "+"
+
+ // semantic version, derived by build scripts (see
+ // https://git.k8s.io/community/contributors/design-proposals/release/versioning.md
+ // for a detailed discussion of this field)
+ //
+ // TODO: This field is still called "gitVersion" for legacy
+ // reasons. For prerelease versions, the build metadata on the
+ // semantic version is a git hash, but the version itself is no
+ // longer the direct output of "git describe", but a slight
+ // translation to be semver compliant.
+
+ // NOTE: The $Format strings are replaced during 'git archive' thanks to the
+ // companion .gitattributes file containing 'export-subst' in this same
+ // directory. See also https://git-scm.com/docs/gitattributes
+ gitVersion string = "v0.0.0-main+$Format:%h$"
+ gitCommit string = "$Format:%H$" // sha1 from git, output of $(git rev-parse HEAD)
+ gitTreeState string = "" // state of git tree, either "clean" or "dirty"
+
+ buildDate string = "1970-01-01T00:00:00Z" // build date in ISO8601 format, output of $(date -u +'%Y-%m-%dT%H:%M:%SZ')
+)
diff --git a/go/chao-sdk-core/pkg/version/helpers.go b/go/chao-sdk-core/pkg/version/helpers.go
new file mode 100644
index 0000000..4d00e28
--- /dev/null
+++ b/go/chao-sdk-core/pkg/version/helpers.go
@@ -0,0 +1,72 @@
+package version
+
+import (
+ "regexp"
+ "strconv"
+ "strings"
+)
+
+type versionType int
+
+const (
+ // Bigger the version type number, higher priority it is
+ versionTypeAlpha versionType = iota
+ versionTypeBeta
+ versionTypeGA
+)
+
+var OpenIMVersionRegex = regexp.MustCompile("^v([\\d]+)(?:(alpha|beta)([\\d]+))?$")
+
+func parseOpenIMVersion(v string) (majorVersion int, vType versionType, minorVersion int, ok bool) {
+ var err error
+ submatches := OpenIMVersionRegex.FindStringSubmatch(v)
+ if len(submatches) != 4 {
+ return 0, 0, 0, false
+ }
+ switch submatches[2] {
+ case "alpha":
+ vType = versionTypeAlpha
+ case "beta":
+ vType = versionTypeBeta
+ case "":
+ vType = versionTypeGA
+ default:
+ return 0, 0, 0, false
+ }
+ if majorVersion, err = strconv.Atoi(submatches[1]); err != nil {
+ return 0, 0, 0, false
+ }
+ if vType != versionTypeGA {
+ if minorVersion, err = strconv.Atoi(submatches[3]); err != nil {
+ return 0, 0, 0, false
+ }
+ }
+ return majorVersion, vType, minorVersion, true
+}
+
+// CompareOpenIMAwareVersionStrings compares two OpenIM-like version strings.
+// OpenIM-like version strings are starting with a v, followed by a major version, optional "alpha" or "beta" strings
+// followed by a minor version (e.g. v1, v2beta1). Versions will be sorted based on GA/alpha/beta first and then major
+// and minor versions. e.g. v2, v1, v1beta2, v1beta1, v1alpha1.
+func CompareOpenIMAwareVersionStrings(v1, v2 string) int {
+ if v1 == v2 {
+ return 0
+ }
+ v1major, v1type, v1minor, ok1 := parseOpenIMVersion(v1)
+ v2major, v2type, v2minor, ok2 := parseOpenIMVersion(v2)
+ switch {
+ case !ok1 && !ok2:
+ return strings.Compare(v2, v1)
+ case !ok1 && ok2:
+ return -1
+ case ok1 && !ok2:
+ return 1
+ }
+ if v1type != v2type {
+ return int(v1type) - int(v2type)
+ }
+ if v1major != v2major {
+ return v1major - v2major
+ }
+ return v1minor - v2minor
+}
diff --git a/go/chao-sdk-core/pkg/version/helpers_test.go b/go/chao-sdk-core/pkg/version/helpers_test.go
new file mode 100644
index 0000000..3b467ea
--- /dev/null
+++ b/go/chao-sdk-core/pkg/version/helpers_test.go
@@ -0,0 +1,105 @@
+package version
+
+import (
+ "testing"
+)
+
+func TestCompareOpenIMAwareVersionStrings(t *testing.T) {
+ tests := []*struct {
+ v1, v2 string
+ expectedGreater bool
+ }{
+ {"v1", "v2", false},
+ {"v2", "v1", true},
+ {"v10", "v2", true},
+ {"v1", "v2alpha1", true},
+ {"v1", "v2beta1", true},
+ {"v1alpha2", "v1alpha1", true},
+ {"v1beta1", "v2alpha3", true},
+ {"v1alpha10", "v1alpha2", true},
+ {"v1beta10", "v1beta2", true},
+ {"foo", "v1beta2", false},
+ {"bar", "foo", true},
+ {"version1", "version2", true}, // Non OpenIM-like versions are sorted alphabetically
+ {"version1", "version10", true}, // Non OpenIM-like versions are sorted alphabetically
+ }
+
+ for _, tc := range tests {
+ if e, a := tc.expectedGreater, CompareOpenIMAwareVersionStrings(tc.v1, tc.v2) > 0; e != a {
+ if e {
+ t.Errorf("expected %s to be greater than %s", tc.v1, tc.v2)
+ } else {
+ t.Errorf("expected %s to be less than %s", tc.v1, tc.v2)
+ }
+ }
+ }
+}
+
+func Test_parseOpenIMVersion(t *testing.T) {
+ tests := []struct {
+ name string
+ v string
+ wantMajorVersion int
+ wantVType versionType
+ wantMinorVersion int
+ wantOk bool
+ }{
+ {
+ name: "invaild version for ga",
+ v: "v1.1",
+ wantMajorVersion: 0,
+ wantVType: 0,
+ wantMinorVersion: 0,
+ wantOk: false,
+ },
+ {
+ name: "invaild version for alpha",
+ v: "v1alpha1.1",
+ wantMajorVersion: 0,
+ wantVType: 0,
+ wantMinorVersion: 0,
+ wantOk: false,
+ },
+ {
+ name: "alpha version",
+ v: "v1alpha1",
+ wantMajorVersion: 1,
+ wantVType: 0,
+ wantMinorVersion: 1,
+ wantOk: true,
+ },
+ {
+ name: "beta version",
+ v: "v2beta10",
+ wantMajorVersion: 2,
+ wantVType: 1,
+ wantMinorVersion: 10,
+ wantOk: true,
+ },
+ {
+ name: "ga version",
+ v: "v3",
+ wantMajorVersion: 3,
+ wantVType: 2,
+ wantMinorVersion: 0,
+ wantOk: true,
+ },
+ }
+ for _, tt := range tests {
+ t.Run(tt.name, func(t *testing.T) {
+ gotMajorVersion, gotVType, gotMinorVersion, gotOk := parseOpenIMVersion(tt.v)
+ if gotMajorVersion != tt.wantMajorVersion {
+ t.Errorf("parseOpenIMVersion() gotMajorVersion = %v, want %v", gotMajorVersion, tt.wantMajorVersion)
+ }
+ if gotVType != tt.wantVType {
+ t.Errorf("parseOpenIMVersion() gotVType = %v, want %v", gotVType, tt.wantVType)
+ }
+ if gotMinorVersion != tt.wantMinorVersion {
+ t.Errorf("parseOpenIMVersion() gotMinorVersion = %v, want %v", gotMinorVersion, tt.wantMinorVersion)
+ }
+ if gotOk != tt.wantOk {
+ t.Errorf("parseOpenIMVersion() gotOk = %v, want %v", gotOk, tt.wantOk)
+ }
+ })
+ }
+}
diff --git a/go/chao-sdk-core/pkg/version/types.go b/go/chao-sdk-core/pkg/version/types.go
new file mode 100644
index 0000000..193becc
--- /dev/null
+++ b/go/chao-sdk-core/pkg/version/types.go
@@ -0,0 +1,21 @@
+package version
+
+// Info contains versioning information.
+// TODO: Add []string of api versions supported? It's still unclear
+// how we'll want to distribute that information.
+type Info struct {
+ Major string `json:"major"`
+ Minor string `json:"minor"`
+ GitVersion string `json:"gitVersion"`
+ GitCommit string `json:"gitCommit"`
+ GitTreeState string `json:"gitTreeState"`
+ BuildDate string `json:"buildDate"`
+ GoVersion string `json:"goVersion"`
+ Compiler string `json:"compiler"`
+ Platform string `json:"platform"`
+}
+
+// String returns info as a human-friendly version string.
+func (info Info) String() string {
+ return info.GitVersion
+}
diff --git a/go/chao-sdk-core/pkg/version/version.go b/go/chao-sdk-core/pkg/version/version.go
new file mode 100644
index 0000000..99d04c2
--- /dev/null
+++ b/go/chao-sdk-core/pkg/version/version.go
@@ -0,0 +1,24 @@
+package version
+
+import (
+ "fmt"
+ "runtime"
+)
+
+// Get returns the overall codebase version. It's for detecting
+// what code a binary was built from.
+func Get() Info {
+ // These variables typically come from -ldflags settings and in
+ // their absence fallback to the settings in pkg/version/base.go
+ return Info{
+ Major: gitMajor,
+ Minor: gitMinor,
+ GitVersion: gitVersion,
+ GitCommit: gitCommit,
+ GitTreeState: gitTreeState,
+ BuildDate: buildDate,
+ GoVersion: runtime.Version(),
+ Compiler: runtime.Compiler,
+ Platform: fmt.Sprintf("%s/%s", runtime.GOOS, runtime.GOARCH),
+ }
+}
diff --git a/go/chao-sdk-core/scripts/LICENSE/LICENSE b/go/chao-sdk-core/scripts/LICENSE/LICENSE
new file mode 100644
index 0000000..261eeb9
--- /dev/null
+++ b/go/chao-sdk-core/scripts/LICENSE/LICENSE
@@ -0,0 +1,201 @@
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright [yyyy] [name of copyright owner]
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
diff --git a/go/chao-sdk-core/scripts/LICENSE/LICENSE_TEMPLATES b/go/chao-sdk-core/scripts/LICENSE/LICENSE_TEMPLATES
new file mode 100644
index 0000000..dbc5ce2
--- /dev/null
+++ b/go/chao-sdk-core/scripts/LICENSE/LICENSE_TEMPLATES
@@ -0,0 +1,13 @@
+Copyright Š {{.Year}} {{.Holder}} All rights reserved.
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
diff --git a/go/chao-sdk-core/scripts/githooks/commit-msg b/go/chao-sdk-core/scripts/githooks/commit-msg
new file mode 100644
index 0000000..99f4067
--- /dev/null
+++ b/go/chao-sdk-core/scripts/githooks/commit-msg
@@ -0,0 +1,92 @@
+#!/usr/bin/env bash
+# Copyright Š 2023 OpenIMSDK.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+# ==============================================================================
+#
+# Store this file as .git/hooks/commit-msg in your repository in order to
+# enforce checking for proper commit message format before actual commits.
+# You may need to make the scripts executable by 'chmod +x .git/hooks/commit-msg'.
+
+# commit-msg use go-gitlint tool, install go-gitlint via `go get github.com/llorllale/go-gitlint/cmd/go-gitlint`
+# go-gitlint --msg-file="$1"
+
+# An example hook scripts to check the commit log message.
+# Called by "git commit" with one argument, the name of the file
+# that has the commit message. The hook should exit with non-zero
+# status after issuing an appropriate message if it wants to stop the
+# commit. The hook is allowed to edit the commit message file.
+
+YELLOW="\e[93m"
+GREEN="\e[32m"
+RED="\e[31m"
+ENDCOLOR="\e[0m"
+
+printMessage() {
+ printf "${YELLOW}OpenIM : $1${ENDCOLOR}\n"
+}
+
+printSuccess() {
+ printf "${GREEN}OpenIM : $1${ENDCOLOR}\n"
+}
+
+printError() {
+ printf "${RED}OpenIM : $1${ENDCOLOR}\n"
+}
+
+printMessage "Running the OpenIM commit-msg hook."
+
+# This example catches duplicate Signed-off-by lines.
+
+test "" = "$(grep '^Signed-off-by: ' "$1" |
+ sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || {
+ echo >&2 Duplicate Signed-off-by lines.
+ exit 1
+}
+
+# TODO: go-gitlint dir set
+OPENIM_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
+GITLINT_DIR="$OPENIM_ROOT/_output/tools/go-gitlint"
+
+$GITLINT_DIR \
+ --msg-file=$1 \
+ --subject-regex="^(build|chore|ci|docs|feat|feature|fix|perf|refactor|revert|style|test)(.*)?:\s?.*" \
+ --subject-maxlen=150 \
+ --subject-minlen=10 \
+ --body-regex=".*" \
+ --max-parents=1
+
+if [ $? -ne 0 ]
+then
+ if ! command -v $GITLINT_DIR &>/dev/null; then
+ printError "$GITLINT_DIR not found. Please run 'make tools' OR 'make tools.verify.go-gitlint' make verto install it."
+ fi
+ printError "Please fix your commit message to match kubecub coding standards"
+ printError "https://gist.github.com/cubxxw/126b72104ac0b0ca484c9db09c3e5694#file-githook-md"
+ exit 1
+fi
+
+### Add Sign-off-by line to the end of the commit message
+# Get local git config
+NAME=$(git config user.name)
+EMAIL=$(git config user.email)
+
+# Check if the commit message contains a sign-off line
+grep -qs "^Signed-off-by: " "$1"
+SIGNED_OFF_BY_EXISTS=$?
+
+# Add "Signed-off-by" line if it doesn't exist
+if [ $SIGNED_OFF_BY_EXISTS -ne 0 ]; then
+ echo -e "\nSigned-off-by: $NAME <$EMAIL>" >> "$1"
+fi
\ No newline at end of file
diff --git a/go/chao-sdk-core/scripts/githooks/pre-commit b/go/chao-sdk-core/scripts/githooks/pre-commit
new file mode 100644
index 0000000..cad60e1
--- /dev/null
+++ b/go/chao-sdk-core/scripts/githooks/pre-commit
@@ -0,0 +1,111 @@
+#!/usr/bin/env bash
+# Copyright Š 2023 OpenIMSDK.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+# ==============================================================================
+# This is a pre-commit hook that ensures attempts to commit files that are
+# are larger than $limit to your _local_ repo fail, with a helpful error message.
+
+# You can override the default limit of 2MB by supplying the environment variable:
+# GIT_FILE_SIZE_LIMIT=50000000 git commit -m "test: this commit is allowed file sizes up to 50MB"
+#
+# ==============================================================================
+#
+
+LC_ALL=C
+
+local_branch="$(git rev-parse --abbrev-ref HEAD)"
+valid_branch_regex="^(main|master|develop|release(-[a-zA-Z0-9._-]+)?)$|(feature|feat|openim|hotfix|test|bug|ci|cicd|style|)\/[a-z0-9._-]+$|^HEAD$"
+
+YELLOW="\e[93m"
+GREEN="\e[32m"
+RED="\e[31m"
+ENDCOLOR="\e[0m"
+
+printMessage() {
+ printf "${YELLOW}openim : $1${ENDCOLOR}\n"
+}
+
+printSuccess() {
+ printf "${GREEN}openim : $1${ENDCOLOR}\n"
+}
+
+printError() {
+ printf "${RED}openim : $1${ENDCOLOR}\n"
+}
+
+printMessage "Running local openim pre-commit hook."
+
+# flutter format .
+# https://gist.github.com/cubxxw/126b72104ac0b0ca484c9db09c3e5694#file-githook-md
+# TODO! GIT_FILE_SIZE_LIMIT=50000000 git commit -m "test: this commit is allowed file sizes up to 50MB"
+# Maximum file size limit in bytes
+limit=${GIT_FILE_SIZE_LIMIT:-2000000} # Default 2MB
+limitInMB=$(( $limit / 1000000 ))
+
+function file_too_large(){
+ filename=$0
+ filesize=$(( $1 / 2**20 ))
+
+ cat < /dev/null 2>&1
+then
+ against=HEAD
+else
+ against="$empty_tree"
+fi
+
+# Set split so that for loop below can handle spaces in file names by splitting on line breaks
+IFS='
+'
+
+shouldFail=false
+for file in $( git diff-index --cached --name-only $against ); do
+ file_size=$(([ ! -f $file ] && echo 0) || (ls -la $file | awk '{ print $5 }'))
+ if [ "$file_size" -gt "$limit" ]; then
+ printError "File $file is $(( $file_size / 10**6 )) MB, which is larger than our configured limit of $limitInMB MB"
+ shouldFail=true
+ fi
+done
+
+if $shouldFail
+then
+ printMessage "If you really need to commit this file, you can override the size limit by setting the GIT_FILE_SIZE_LIMIT environment variable, e.g. GIT_FILE_SIZE_LIMIT=42000000 for 42MB. Or, commit with the --no-verify switch to skip the check entirely."
+ printError "Commit aborted"
+ exit 1;
+fi
+
+if [[ ! $local_branch =~ $valid_branch_regex ]]
+then
+ printError "There is something wrong with your branch name. Branch names in this project must adhere to this contract: $valid_branch_regex.
+Your commit will be rejected. You should rename your branch to a valid name(feat/name OR bug/name) and try again."
+ printError "For more on this, read on: https://gist.github.com/cubxxw/126b72104ac0b0ca484c9db09c3e5694"
+ exit 1
+fi
\ No newline at end of file
diff --git a/go/chao-sdk-core/scripts/githooks/pre-push b/go/chao-sdk-core/scripts/githooks/pre-push
new file mode 100644
index 0000000..2985313
--- /dev/null
+++ b/go/chao-sdk-core/scripts/githooks/pre-push
@@ -0,0 +1,119 @@
+#!/usr/bin/env bash
+# Copyright Š 2023 OpenIMSDK.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+# ==============================================================================
+#
+
+YELLOW="\e[93m"
+GREEN="\e[32m"
+RED="\e[31m"
+ENDCOLOR="\e[0m"
+
+local_branch="$(git rev-parse --abbrev-ref HEAD)"
+valid_branch_regex="^(main|master|develop|release(-[a-zA-Z0-9._-]+)?)$|(feature|feat|openim|hotfix|test|bug|ci|cicd|style|)\/[a-z0-9._-]+$|^HEAD$"
+
+printMessage() {
+ printf "${YELLOW}OpenIM : $1${ENDCOLOR}\n"
+}
+
+printSuccess() {
+ printf "${GREEN}OpenIM : $1${ENDCOLOR}\n"
+}
+
+printError() {
+ printf "${RED}OpenIM : $1${ENDCOLOR}\n"
+}
+
+printMessage "Running local OpenIM pre-push hook."
+
+if [[ `git status --porcelain` ]]; then
+ printError "This scripts needs to run against committed code only. Please commit or stash you changes."
+ exit 1
+fi
+
+COLOR_SUFFIX="\033[0m"
+
+BLACK_PREFIX="\033[30m"
+RED_PREFIX="\033[31m"
+GREEN_PREFIX="\033[32m"
+BACKGROUND_GREEN="\033[33m"
+BLUE_PREFIX="\033[34m"
+PURPLE_PREFIX="\033[35m"
+SKY_BLUE_PREFIX="\033[36m"
+WHITE_PREFIX="\033[37m"
+BOLD_PREFIX="\033[1m"
+UNDERLINE_PREFIX="\033[4m"
+ITALIC_PREFIX="\033[3m"
+
+# Function to print colored text
+print_color() {
+ local text=$1
+ local color=$2
+ echo -e "${color}${text}${COLOR_SUFFIX}"
+}
+
+# Function to print section separator
+print_separator() {
+ print_color "==========================================================" ${PURPLE_PREFIX}
+}
+
+# Get current time
+time=$(date +"%Y-%m-%d %H:%M:%S")
+
+# Print section separator
+print_separator
+
+# Print time of submission
+print_color "PTIME: ${time}" "${BOLD_PREFIX}${CYAN_PREFIX}"
+echo ""
+author=$(git config user.name)
+repository=$(basename -s .git $(git config --get remote.origin.url))
+
+# Print additional information if needed
+print_color "Repository: ${repository}" "${BLUE_PREFIX}"
+echo ""
+
+print_color "Author: ${author}" "${PURPLE_PREFIX}"
+
+# Print section separator
+print_separator
+
+file_list=$(git diff --name-status HEAD @{u})
+added_files=$(grep -c '^A' <<< "$file_list")
+modified_files=$(grep -c '^M' <<< "$file_list")
+deleted_files=$(grep -c '^D' <<< "$file_list")
+
+print_color "Added Files: ${added_files}" "${BACKGROUND_GREEN}"
+print_color "Modified Files: ${modified_files}" "${BACKGROUND_GREEN}"
+print_color "Deleted Files: ${deleted_files}" "${BACKGROUND_GREEN}"
+
+if [[ ! $local_branch =~ $valid_branch_regex ]]
+then
+ printError "There is something wrong with your branch name. Branch names in this project must adhere to this contract: $valid_branch_regex.
+Your commit will be rejected. You should rename your branch to a valid name(feat/name OR bug/name) and try again."
+ printError "For more on this, read on: https://gist.github.com/cubxxw/126b72104ac0b0ca484c9db09c3e5694"
+ exit 1
+fi
+
+#
+#printMessage "Running the Flutter analyzer"
+#flutter analyze
+#
+#if [ $? -ne 0 ]; then
+# printError "Flutter analyzer error"
+# exit 1
+#fi
+#
+#printMessage "Finished running the Flutter analyzer"
diff --git a/go/chao-sdk-core/scripts/template/LICENSE b/go/chao-sdk-core/scripts/template/LICENSE
new file mode 100644
index 0000000..261eeb9
--- /dev/null
+++ b/go/chao-sdk-core/scripts/template/LICENSE
@@ -0,0 +1,201 @@
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright [yyyy] [name of copyright owner]
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
diff --git a/go/chao-sdk-core/scripts/template/footer.md.tmpl b/go/chao-sdk-core/scripts/template/footer.md.tmpl
new file mode 100644
index 0000000..75a42d2
--- /dev/null
+++ b/go/chao-sdk-core/scripts/template/footer.md.tmpl
@@ -0,0 +1,19 @@
+**Full Changelog**: https://github.com/{{ .Env.USERNAME }}/{{ .ProjectName }}/compare/{{ .PreviousTag }}...{{ .Tag }}
+
+## Get Involved with OpenIM!
+
+Your patronage towards OpenIM is greatly appreciated đđ.
+
+If you encounter any problems during its usage, please create an issue in the [GitHub repository](https://github.com/{{ .Env.USERNAME }}/{{ .ProjectName }}/), we're committed to resolving your problem as soon as possible.
+
+**Here are some ways to get involved with the OpenIM community:**
+
+đĸ **Slack Channel**: Join our Slack channels for discussions, communication, and support. Click [here](https://join.slack.com/t/openimsdk/shared_invite/zt-1tmoj26uf-_FDy3dowVHBiGvLk9e5Xkg) to join the Open-IM-Server Slack team channel.
+
+đ§ **Gmail Contact**: If you have any questions, suggestions, or feedback for our open-source projects, please feel free to [contact us via email](https://mail.google.com/mail/?view=cm&fs=1&tf=1&to=winxu81@gmail.com).
+
+đ **Blog**: Stay up-to-date with OpenIM-Server projects and trends by reading our [blog](https://doc.rentsoft.cn/). We share the latest developments, tech trends, and other interesting information related to OpenIM.
+
+đą **WeChat**: Add us on WeChat (QR Code) and indicate that you are a user or developer of Open-IM-Server. We'll process your request as soon as possible.
+
+Remember, your contributions play a vital role in making OpenIM successful, and we look forward to your active participation in our community! đ
\ No newline at end of file
diff --git a/go/chao-sdk-core/scripts/template/head.md.tmpl b/go/chao-sdk-core/scripts/template/head.md.tmpl
new file mode 100644
index 0000000..dd4f12c
--- /dev/null
+++ b/go/chao-sdk-core/scripts/template/head.md.tmpl
@@ -0,0 +1,28 @@
+## Welcome to the {{ .Tag }} release of [OpenIM](https://github.com/{{ .Env.USERNAME }}/{{ .ProjectName }})!đđ!
+
+We are excited to release {{.Tag}}, Branch: https://github.com/{{ .Env.USERNAME }}/{{ .ProjectName }}/tree/{{ .Tag }} , Git hash [{{ .ShortCommit }}], Install Address: [{{ .ReleaseURL }}]({{ .ReleaseURL }})
+
+Learn more about versions of OpenIM:
+
++ For information on versions of OpenIM and how to maintain branches, read [đthis article](https://github.com/openimsdk/Open-IM-Server/blob/main/docs/conversions/version.md)
+
++ If you wish to use mirroring, read OpenIM's [đ¤˛image management policy](https://github.com/openimsdk/Open-IM-Server/blob/main/docs/conversions/images.md)
+
+**Want to be one of them đ?**
+
+
+
+
+
+
+
+
+
+
+
+
+
+> **Note**
+> @openimbot and @kubbot have made great contributions to the community as community đ¤robots(@openimsdk/bot), respectively.
+> Thanks to the @openimsdk/openim team for all their hard work on this release.
+> Thank you to all the [đdevelopers and contributors](https://github.com/{{ .Env.USERNAME }}/{{ .ProjectName }}/graphs/contributors), people from all over the world, OpenIM brings us together
diff --git a/go/chao-sdk-core/sdk_struct/sdk_struct.go b/go/chao-sdk-core/sdk_struct/sdk_struct.go
new file mode 100644
index 0000000..3698854
--- /dev/null
+++ b/go/chao-sdk-core/sdk_struct/sdk_struct.go
@@ -0,0 +1,366 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package sdk_struct
+
+import (
+ "github.com/openimsdk/protocol/sdkws"
+)
+
+////////////////////////// message/////////////////////////
+
+type MessageReceipt struct {
+ GroupID string `json:"groupID"`
+ UserID string `json:"userID"`
+ MsgIDList []string `json:"msgIDList"`
+ ReadTime int64 `json:"readTime"`
+ MsgFrom int32 `json:"msgFrom"`
+ ContentType int32 `json:"contentType"`
+ SessionType int32 `json:"sessionType"`
+}
+type MessageRevoked struct {
+ RevokerID string `json:"revokerID"`
+ RevokerRole int32 `json:"revokerRole"`
+ ClientMsgID string `json:"clientMsgID"`
+ RevokerNickname string `json:"revokerNickname"`
+ RevokeTime int64 `json:"revokeTime"`
+ SourceMessageSendTime int64 `json:"sourceMessageSendTime"`
+ SourceMessageSendID string `json:"sourceMessageSendID"`
+ SourceMessageSenderNickname string `json:"sourceMessageSenderNickname"`
+ SessionType int32 `json:"sessionType"`
+ Seq int64 `json:"seq"`
+ Ex string `json:"ex"`
+ IsAdminRevoke bool `json:"isAdminRevoke"`
+}
+type MessageReaction struct {
+ ClientMsgID string `json:"clientMsgID"`
+ ReactionType int `json:"reactionType"`
+ Counter int32 `json:"counter,omitempty"`
+ UserID string `json:"userID"`
+ GroupID string `json:"groupID"`
+ SessionType int32 `json:"sessionType"`
+ Info string `json:"info,omitempty"`
+}
+type ImageInfo struct {
+ Width int32 `json:"x"`
+ Height int32 `json:"y"`
+ Type string `json:"type,omitempty"`
+ Size int64 `json:"size"`
+}
+type PictureBaseInfo struct {
+ UUID string `json:"uuid,omitempty"`
+ Type string `json:"type,omitempty"`
+ Size int64 `json:"size"`
+ Width int32 `json:"width"`
+ Height int32 `json:"height"`
+ Url string `json:"url,omitempty"`
+}
+type SoundBaseInfo struct {
+ UUID string `json:"uuid,omitempty"`
+ SoundPath string `json:"soundPath,omitempty"`
+ SourceURL string `json:"sourceUrl,omitempty"`
+ DataSize int64 `json:"dataSize"`
+ Duration int64 `json:"duration"`
+ SoundType string `json:"soundType,omitempty"`
+}
+type VideoBaseInfo struct {
+ VideoPath string `json:"videoPath,omitempty"`
+ VideoUUID string `json:"videoUUID,omitempty"`
+ VideoURL string `json:"videoUrl,omitempty"`
+ VideoType string `json:"videoType,omitempty"`
+ VideoSize int64 `json:"videoSize"`
+ Duration int64 `json:"duration"`
+ SnapshotPath string `json:"snapshotPath,omitempty"`
+ SnapshotUUID string `json:"snapshotUUID,omitempty"`
+ SnapshotSize int64 `json:"snapshotSize"`
+ SnapshotURL string `json:"snapshotUrl,omitempty"`
+ SnapshotWidth int32 `json:"snapshotWidth"`
+ SnapshotHeight int32 `json:"snapshotHeight"`
+ SnapshotType string `json:"snapshotType,omitempty"`
+}
+type FileBaseInfo struct {
+ FilePath string `json:"filePath,omitempty"`
+ UUID string `json:"uuid,omitempty"`
+ SourceURL string `json:"sourceUrl,omitempty"`
+ FileName string `json:"fileName,omitempty"`
+ FileSize int64 `json:"fileSize"`
+ FileType string `json:"fileType,omitempty"`
+}
+
+type TextElem struct {
+ Content string `json:"content"`
+}
+
+type CardElem struct {
+ UserID string `json:"userID"`
+ Nickname string `json:"nickname"`
+ FaceURL string `json:"faceURL"`
+ Ex string `json:"ex"`
+}
+
+type PictureElem struct {
+ SourcePath string `json:"sourcePath,omitempty"`
+ SourcePicture *PictureBaseInfo `json:"sourcePicture,omitempty"`
+ BigPicture *PictureBaseInfo `json:"bigPicture,omitempty"`
+ SnapshotPicture *PictureBaseInfo `json:"snapshotPicture,omitempty"`
+}
+
+type SoundElem struct {
+ UUID string `json:"uuid,omitempty"`
+ SoundPath string `json:"soundPath,omitempty"`
+ SourceURL string `json:"sourceUrl,omitempty"`
+ DataSize int64 `json:"dataSize"`
+ Duration int64 `json:"duration"`
+ SoundType string `json:"soundType,omitempty"`
+}
+
+type VideoElem struct {
+ VideoPath string `json:"videoPath,omitempty"`
+ VideoUUID string `json:"videoUUID,omitempty"`
+ VideoURL string `json:"videoUrl,omitempty"`
+ VideoType string `json:"videoType,omitempty"`
+ VideoSize int64 `json:"videoSize"`
+ Duration int64 `json:"duration"`
+ SnapshotPath string `json:"snapshotPath,omitempty"`
+ SnapshotUUID string `json:"snapshotUUID,omitempty"`
+ SnapshotSize int64 `json:"snapshotSize"`
+ SnapshotURL string `json:"snapshotUrl,omitempty"`
+ SnapshotWidth int32 `json:"snapshotWidth"`
+ SnapshotHeight int32 `json:"snapshotHeight"`
+ SnapshotType string `json:"snapshotType,omitempty"`
+}
+
+type FileElem struct {
+ FilePath string `json:"filePath,omitempty"`
+ UUID string `json:"uuid,omitempty"`
+ SourceURL string `json:"sourceUrl,omitempty"`
+ FileName string `json:"fileName,omitempty"`
+ FileSize int64 `json:"fileSize"`
+ FileType string `json:"fileType,omitempty"`
+}
+
+type MergeElem struct {
+ Title string `json:"title,omitempty"`
+ AbstractList []string `json:"abstractList,omitempty"`
+ MultiMessage []*MsgStruct `json:"multiMessage,omitempty"`
+ MessageEntityList []*MessageEntity `json:"messageEntityList,omitempty"`
+}
+
+type AtTextElem struct {
+ Text string `json:"text,omitempty"`
+ AtUserList []string `json:"atUserList,omitempty"`
+ AtUsersInfo []*AtInfo `json:"atUsersInfo,omitempty"`
+ QuoteMessage *MsgStruct `json:"quoteMessage,omitempty"`
+ IsAtSelf bool `json:"isAtSelf"`
+}
+
+type FaceElem struct {
+ Index int `json:"index"`
+ Data string `json:"data,omitempty"`
+}
+
+type LocationElem struct {
+ Description string `json:"description,omitempty"`
+ Longitude float64 `json:"longitude"`
+ Latitude float64 `json:"latitude"`
+}
+
+type CustomElem struct {
+ Data string `json:"data,omitempty"`
+ Description string `json:"description,omitempty"`
+ Extension string `json:"extension,omitempty"`
+}
+
+type QuoteElem struct {
+ Text string `json:"text,omitempty"`
+ QuoteMessage *MsgStruct `json:"quoteMessage,omitempty"`
+ MessageEntityList []*MessageEntity `json:"messageEntityList,omitempty"`
+}
+
+type NotificationElem struct {
+ Detail string `json:"detail,omitempty"`
+}
+
+type AdvancedTextElem struct {
+ Text string `json:"text,omitempty"`
+ MessageEntityList []*MessageEntity `json:"messageEntityList,omitempty"`
+}
+
+type TypingElem struct {
+ MsgTips string `json:"msgTips,omitempty"`
+}
+
+type MsgStruct struct {
+ ClientMsgID string `json:"clientMsgID,omitempty"`
+ ServerMsgID string `json:"serverMsgID,omitempty"`
+ CreateTime int64 `json:"createTime"`
+ SendTime int64 `json:"sendTime"`
+ SessionType int32 `json:"sessionType"`
+ SendID string `json:"sendID,omitempty"`
+ RecvID string `json:"recvID,omitempty"`
+ MsgFrom int32 `json:"msgFrom"`
+ ContentType int32 `json:"contentType"`
+ SenderPlatformID int32 `json:"senderPlatformID"`
+ SenderNickname string `json:"senderNickname,omitempty"`
+ SenderFaceURL string `json:"senderFaceUrl,omitempty"`
+ GroupID string `json:"groupID,omitempty"`
+ Content string `json:"content,omitempty"`
+ Seq int64 `json:"seq"`
+ IsRead bool `json:"isRead"`
+ Status int32 `json:"status"`
+ IsReact bool `json:"isReact,omitempty"`
+ IsExternalExtensions bool `json:"isExternalExtensions,omitempty"`
+ OfflinePush *sdkws.OfflinePushInfo `json:"offlinePush,omitempty"`
+ AttachedInfo string `json:"attachedInfo,omitempty"`
+ Ex string `json:"ex,omitempty"`
+ LocalEx string `json:"localEx,omitempty"`
+ TextElem *TextElem `json:"textElem,omitempty"`
+ CardElem *CardElem `json:"cardElem,omitempty"`
+ PictureElem *PictureElem `json:"pictureElem,omitempty"`
+ SoundElem *SoundElem `json:"soundElem,omitempty"`
+ VideoElem *VideoElem `json:"videoElem,omitempty"`
+ FileElem *FileElem `json:"fileElem,omitempty"`
+ MergeElem *MergeElem `json:"mergeElem,omitempty"`
+ AtTextElem *AtTextElem `json:"atTextElem,omitempty"`
+ FaceElem *FaceElem `json:"faceElem,omitempty"`
+ LocationElem *LocationElem `json:"locationElem,omitempty"`
+ CustomElem *CustomElem `json:"customElem,omitempty"`
+ QuoteElem *QuoteElem `json:"quoteElem,omitempty"`
+ NotificationElem *NotificationElem `json:"notificationElem,omitempty"`
+ AdvancedTextElem *AdvancedTextElem `json:"advancedTextElem,omitempty"`
+ TypingElem *TypingElem `json:"typingElem,omitempty"`
+ AttachedInfoElem *AttachedInfoElem `json:"attachedInfoElem,omitempty"`
+}
+
+type AtInfo struct {
+ AtUserID string `json:"atUserID,omitempty"`
+ GroupNickname string `json:"groupNickname,omitempty"`
+}
+type AttachedInfoElem struct {
+ GroupHasReadInfo GroupHasReadInfo `json:"groupHasReadInfo,omitempty"`
+ IsPrivateChat bool `json:"isPrivateChat"`
+ BurnDuration int32 `json:"burnDuration"`
+ HasReadTime int64 `json:"hasReadTime"`
+ MessageEntityList []*MessageEntity `json:"messageEntityList,omitempty"`
+ IsEncryption bool `json:"isEncryption"`
+ InEncryptStatus bool `json:"inEncryptStatus"`
+ //MessageReactionElem []*ReactionElem `json:"messageReactionElem,omitempty"`
+ Progress *UploadProgress `json:"uploadProgress,omitempty"`
+}
+
+type UploadProgress struct {
+ Total int64 `json:"total"`
+ Save int64 `json:"save"`
+ Current int64 `json:"current"`
+ UploadID string `json:"uploadID"`
+}
+
+type ReactionElem struct {
+ Counter int32 `json:"counter,omitempty"`
+ Type int `json:"type,omitempty"`
+ UserReactionList []*UserReactionElem `json:"userReactionList,omitempty"`
+ CanRepeat bool `json:"canRepeat,omitempty"`
+ Info string `json:"info,omitempty"`
+}
+type UserReactionElem struct {
+ UserID string `json:"userID,omitempty"`
+ Counter int32 `json:"counter,omitempty"`
+ Info string `json:"info,omitempty"`
+}
+type MessageEntity struct {
+ Type string `json:"type,omitempty"`
+ Offset int32 `json:"offset"`
+ Length int32 `json:"length"`
+ Url string `json:"url,omitempty"`
+ Ex string `json:"ex,omitempty"`
+}
+type GroupHasReadInfo struct {
+ HasReadUserIDList []string `json:"hasReadUserIDList,omitempty"`
+ HasReadCount int32 `json:"hasReadCount"`
+ GroupMemberCount int32 `json:"groupMemberCount"`
+}
+type NewMsgList []*MsgStruct
+
+// Implement the sort.Interface interface to get the number of elements method
+func (n NewMsgList) Len() int {
+ return len(n)
+}
+
+// Implement the sort.Interface interface comparison element method
+func (n NewMsgList) Less(i, j int) bool {
+ return n[i].SendTime < n[j].SendTime
+}
+
+// Implement the sort.Interface interface exchange element method
+func (n NewMsgList) Swap(i, j int) {
+ n[i], n[j] = n[j], n[i]
+}
+
+type IMConfig struct {
+ SystemType string `json:"systemType"`
+ PlatformID int32 `json:"platformID"`
+ ApiAddr string `json:"apiAddr"`
+ WsAddr string `json:"wsAddr"`
+ DataDir string `json:"dataDir"`
+ LogLevel uint32 `json:"logLevel"`
+ IsLogStandardOutput bool `json:"isLogStandardOutput"`
+ LogFilePath string `json:"logFilePath"`
+ IsExternalExtensions bool `json:"isExternalExtensions"`
+}
+
+type CmdNewMsgComeToConversation struct {
+ Msgs map[string]*sdkws.PullMsgs
+ SyncFlag int
+}
+
+type CmdPushMsgToMsgSync struct {
+ Msgs []*sdkws.PushMessages
+}
+
+type CmdMaxSeqToMsgSync struct {
+ ConversationMaxSeqOnSvr map[string]int64
+}
+
+type CmdJoinedSuperGroup struct {
+ OperationID string
+}
+
+type OANotificationElem struct {
+ NotificationName string `mapstructure:"notificationName" validate:"required"`
+ NotificationFaceURL string `mapstructure:"notificationFaceURL" validate:"required"`
+ NotificationType int32 `mapstructure:"notificationType" validate:"required"`
+ Text string `mapstructure:"text" validate:"required"`
+ Url string `mapstructure:"url"`
+ MixType int32 `mapstructure:"mixType"`
+ Image struct {
+ SourceUrl string `mapstructure:"sourceURL"`
+ SnapshotUrl string `mapstructure:"snapshotURL"`
+ } `mapstructure:"image"`
+ Video struct {
+ SourceUrl string `mapstructure:"sourceURL"`
+ SnapshotUrl string `mapstructure:"snapshotURL"`
+ Duration int64 `mapstructure:"duration"`
+ } `mapstructure:"video"`
+ File struct {
+ SourceUrl string `mapstructure:"sourceURL"`
+ FileName string `mapstructure:"fileName"`
+ FileSize int64 `mapstructure:"fileSize"`
+ } `mapstructure:"file"`
+ Ex string `mapstructure:"ex"`
+}
+type MsgDeleteNotificationElem struct {
+ GroupID string `json:"groupID"`
+ IsAllDelete bool `json:"isAllDelete"`
+ SeqList []string `json:"seqList"`
+}
diff --git a/go/chao-sdk-core/test/Makefile b/go/chao-sdk-core/test/Makefile
new file mode 100644
index 0000000..f45510b
--- /dev/null
+++ b/go/chao-sdk-core/test/Makefile
@@ -0,0 +1,27 @@
+.PHONY: all build run gotool install clean help
+
+BINARY_NAME=main
+BIN_DIR=./
+LAN_FILE=.go
+GO_FILE:=${BINARY_NAME}${LAN_FILE}
+
+all: gotool build
+
+build:
+ CGO_ENABLED=1 GOOS=linux GOARCH=amd64 go build -ldflags="-w -s" -o ${BINARY_NAME} ${GO_FILE}
+
+run:
+ @go run ./
+
+gotool:
+ go fmt ./
+ go vet ./
+
+install:
+ make build
+ mv main open_im_test_client
+
+clean:
+ @if [ -f ${BINARY_NAME} ] ; then rm ${BINARY_NAME} ; fi
+
+
diff --git a/go/chao-sdk-core/test/account.go b/go/chao-sdk-core/test/account.go
new file mode 100644
index 0000000..fd969d7
--- /dev/null
+++ b/go/chao-sdk-core/test/account.go
@@ -0,0 +1,245 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package test
+
+import (
+ "context"
+ "errors"
+ "github.com/openimsdk/openim-sdk-core/v3/internal/util"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/ccontext"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/sdk_struct"
+ "net"
+ "os"
+ "strconv"
+ "sync"
+ "time"
+
+ authPB "github.com/openimsdk/protocol/auth"
+ "github.com/openimsdk/protocol/sdkws"
+ userPB "github.com/openimsdk/protocol/user"
+ "github.com/openimsdk/tools/log"
+)
+
+func GenUid(uid int, prefix string) string {
+ if getMyIP() == "" {
+ log.ZError(ctx, "getMyIP() failed, exit ", errors.New("getMyIP() failed"))
+ os.Exit(1)
+ }
+ UidPrefix := getMyIP() + "_" + prefix + "_"
+ return UidPrefix + strconv.FormatInt(int64(uid), 10)
+}
+
+func RegisterOnlineAccounts(number int) {
+ var wg sync.WaitGroup
+ wg.Add(number)
+ for i := 0; i < number; i++ {
+ go func(t int) {
+ userID := GenUid(t, "online")
+ register(userID)
+ log.ZInfo(ctx, "register ", userID)
+ wg.Done()
+ }(i)
+
+ }
+ wg.Wait()
+ log.ZInfo(ctx, "RegisterAccounts finish ", number)
+}
+
+type GetTokenReq struct {
+ Secret string `json:"secret"`
+ Platform int `json:"platform"`
+ Uid string `json:"uid"`
+}
+
+type RegisterReq struct {
+ Secret string `json:"secret"`
+ Platform int `json:"platform"`
+ Uid string `json:"uid"`
+ Name string `json:"name"`
+}
+
+type ResToken struct {
+ Data struct {
+ ExpiredTime int64 `json:"expiredTime"`
+ Token string `json:"token"`
+ Uid string `json:"uid"`
+ }
+ ErrCode int `json:"errCode"`
+ ErrMsg string `json:"errMsg"`
+}
+
+var AdminToken = ""
+
+func init() {
+ AdminToken = getToken("openIM123456")
+ if err := log.InitFromConfig("open-im-sdk-core", "", int(LogLevel), IsLogStandardOutput, false, LogFilePath, 0, 24, "23432"); err != nil {
+ //fmt.Println("123456", "log init failed ", err.Error())
+ }
+
+}
+
+var ctx context.Context
+
+func register(uid string) error {
+ ctx = ccontext.WithInfo(context.Background(), &ccontext.GlobalConfig{
+ UserID: uid,
+ Token: AdminToken,
+ IMConfig: sdk_struct.IMConfig{
+ PlatformID: PlatformID,
+ ApiAddr: APIADDR,
+ WsAddr: WSADDR,
+ LogLevel: LogLevel,
+ },
+ })
+ ctx = ccontext.WithOperationID(ctx, "123456")
+
+ //ACCOUNTCHECK
+ var getAccountCheckReq userPB.AccountCheckReq
+ var getAccountCheckResp userPB.AccountCheckResp
+ getAccountCheckReq.CheckUserIDs = []string{uid}
+
+ for {
+ err := util.ApiPost(ctx, "/user/account_check", &getAccountCheckReq, &getAccountCheckResp)
+ if err != nil {
+ return err
+ }
+ if len(getAccountCheckResp.Results) == 1 &&
+ getAccountCheckResp.Results[0].AccountStatus == "registered" {
+ log.ZWarn(ctx, "account already registered", errors.New("Already registered "), "userIDs", getAccountCheckReq.CheckUserIDs[0],
+ "uid", uid, "getAccountCheckResp", getAccountCheckResp)
+ userLock.Lock()
+ allUserID = append(allUserID, uid)
+ userLock.Unlock()
+ return nil
+ } else if len(getAccountCheckResp.Results) == 1 &&
+ getAccountCheckResp.Results[0].AccountStatus == "unregistered" {
+ log.ZInfo(ctx, "account not register", "userIDs", getAccountCheckReq.CheckUserIDs[0], "uid", uid, "getAccountCheckResp",
+ getAccountCheckResp)
+ break
+ } else {
+ log.ZError(ctx, " failed, continue ", err, "userIDs", getAccountCheckReq.CheckUserIDs[0], "register address",
+ REGISTERADDR, "getAccountCheckReq", getAccountCheckReq)
+ continue
+ }
+ }
+
+ var rreq userPB.UserRegisterReq
+ rreq.Users = []*sdkws.UserInfo{{UserID: uid}}
+
+ for {
+ err := util.ApiPost(ctx, "/auth/user_register", &rreq, nil)
+ if err != nil {
+ log.ZError(ctx, "post failed ,continue ", errors.New("post failed ,continue"), "register address", REGISTERADDR,
+ "getAccountCheckReq", getAccountCheckReq)
+ time.Sleep(100 * time.Millisecond)
+ continue
+ } else {
+ log.ZInfo(ctx, "register ok ", "register address", REGISTERADDR, "getAccountCheckReq", getAccountCheckReq)
+ userLock.Lock()
+ allUserID = append(allUserID, uid)
+ userLock.Unlock()
+ return nil
+ }
+ }
+}
+
+func getToken(uid string) string {
+ ctx = ccontext.WithInfo(context.Background(), &ccontext.GlobalConfig{
+ UserID: uid,
+ Token: "",
+ IMConfig: sdk_struct.IMConfig{
+ PlatformID: PlatformID,
+ ApiAddr: APIADDR,
+ WsAddr: WSADDR,
+ LogLevel: LogLevel,
+ },
+ })
+ ctx = ccontext.WithOperationID(ctx, utils.OperationIDGenerator())
+ url := TOKENADDR
+ req := authPB.UserTokenReq{
+ Secret: SECRET,
+ PlatformID: PlatformID,
+ UserID: uid,
+ }
+ resp := authPB.UserTokenResp{}
+ err := util.ApiPost(ctx, "/auth/user_token", &req, &resp)
+ if err != nil {
+ log.ZError(ctx, "Post2Api failed ", errors.New("Post2Api failed "), "userID", req.UserID, "url", url, "req", req)
+ return ""
+ }
+
+ log.ZInfo(ctx, "get token: ", "userID", req.UserID, "token", resp.Token)
+ return resp.Token
+}
+
+func RunGetToken(strMyUid string) string {
+ var token string
+ for true {
+ token = getToken(strMyUid)
+ if token == "" {
+ time.Sleep(time.Duration(100) * time.Millisecond)
+ continue
+ } else {
+ break
+ }
+ }
+ return token
+}
+
+func getMyIP() string {
+ addrs, err := net.InterfaceAddrs()
+ if err != nil {
+ log.ZError(ctx, "InterfaceAddrs failed ", errors.New("InterfaceAddrs failed "), "addrs", addrs)
+ os.Exit(1)
+ return ""
+ }
+ for _, address := range addrs {
+ if ipnet, ok := address.(*net.IPNet); ok && !ipnet.IP.IsLoopback() {
+ if ipnet.IP.To4() != nil {
+ return ipnet.IP.String()
+ }
+ }
+ }
+ return ""
+}
+
+func RegisterReliabilityUser(id int, timeStamp string) {
+ userID := GenUid(id, "reliability_"+timeStamp)
+ register(userID)
+ token := RunGetToken(userID)
+ coreMgrLock.Lock()
+ defer coreMgrLock.Unlock()
+ allLoginMgr[id] = &CoreNode{token: token, userID: userID}
+}
+
+func WorkGroupRegisterReliabilityUser(id int) {
+ userID := GenUid(id, "workgroup")
+ // register(userID)
+ token := RunGetToken(userID)
+ coreMgrLock.Lock()
+ defer coreMgrLock.Unlock()
+ log.ZInfo(ctx, "WorkGroupRegisterReliabilityUser : ", "userID", userID, "token: ", token)
+ allLoginMgr[id] = &CoreNode{token: token, userID: userID}
+}
+
+func RegisterPressUser(id int) {
+ userID := GenUid(id, "press")
+ register(userID)
+ token := RunGetToken(userID)
+ coreMgrLock.Lock()
+ defer coreMgrLock.Unlock()
+ allLoginMgr[id] = &CoreNode{token: token, userID: userID}
+}
diff --git a/go/chao-sdk-core/test/config.go b/go/chao-sdk-core/test/config.go
new file mode 100644
index 0000000..eeed3e6
--- /dev/null
+++ b/go/chao-sdk-core/test/config.go
@@ -0,0 +1,75 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package test
+
+import (
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "sync"
+)
+
+var LogLevel uint32 = 5
+var PlatformID = int32(3)
+var LogName = ""
+var IsLogStandardOutput = true
+var LogFilePath = ""
+
+var ReliabilityUserA = 1234567
+var ReliabilityUserB = 1234567
+var (
+ //TESTIP = "121.5.182.23"
+ TESTIP = "59.36.173.89"
+ //TESTIP = "121.37.25.71"
+
+ //TESTIP = "open-im-test.rentsoft.cn"
+ APIADDR = "http://" + TESTIP + ":10002"
+
+ WSADDR = "ws://" + TESTIP + ":10001"
+ REGISTERADDR = APIADDR + "/auth/user_register"
+ TOKENADDR = APIADDR + "/auth/user_token"
+ SECRET = "openIM123"
+ SENDINTERVAL = 20
+ GETSELFUSERINFO = APIADDR + "/user/get_self_user_info"
+ CREATEGROUP = APIADDR + constant.CreateGroupRouter
+ ACCOUNTCHECK = APIADDR + "/user/account_check"
+ GETGROUPSINFOROUTER = APIADDR + constant.GetGroupsInfoRouter
+)
+
+var coreMgrLock sync.RWMutex
+
+var allLoginMgr map[int]*CoreNode
+
+var allLoginMgrtmp []*CoreNode
+
+var userLock sync.RWMutex
+
+var allUserID []string
+var allToken []string
+
+// var allWs []*interaction.Ws
+var sendSuccessCount, sendFailedCount int
+var sendSuccessLock sync.RWMutex
+var sendFailedLock sync.RWMutex
+
+var msgNumInOneClient = 0
+
+// var Msgwg sync.WaitGroup
+var sendMsgClient = 0
+
+var MaxNumGoroutine = 100000
+
+// 常é
+var (
+ RELIABILITY = "reliability_"
+)
diff --git a/go/chao-sdk-core/test/login.go b/go/chao-sdk-core/test/login.go
new file mode 100644
index 0000000..e457db6
--- /dev/null
+++ b/go/chao-sdk-core/test/login.go
@@ -0,0 +1,115 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package test
+
+import (
+ "encoding/json"
+ "errors"
+ "fmt"
+ "github.com/openimsdk/openim-sdk-core/v3/open_im_sdk"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/sdk_struct"
+ "github.com/openimsdk/tools/log"
+ "time"
+)
+
+type BaseSuccessFailed struct {
+ successData string
+ errCode int
+ errMsg string
+ funcName string
+ time time.Time
+}
+
+func (b *BaseSuccessFailed) OnError(errCode int32, errMsg string) {
+ b.errCode = -1
+ b.errMsg = errMsg
+ log.ZError(ctx, "login failed", errors.New("login failed"), "errCode", errCode, "errMsg", errMsg)
+
+}
+
+func (b *BaseSuccessFailed) OnSuccess(data string) {
+ b.errCode = 1
+ b.successData = data
+ log.ZInfo(ctx, "login success", "data", data, "time since", time.Since(b.time))
+}
+
+func InOutDoTest(uid, tk, ws, api string) {
+ var cf sdk_struct.IMConfig
+ cf.ApiAddr = api
+ cf.PlatformID = constant.WindowsPlatformID
+ cf.WsAddr = ws
+ cf.DataDir = "./"
+ cf.LogLevel = LogLevel
+ cf.IsExternalExtensions = true
+ cf.IsLogStandardOutput = true
+ cf.LogFilePath = "./"
+
+ b, _ := json.Marshal(cf)
+ s := string(b)
+ fmt.Println(s)
+ var testinit testInitLister
+
+ operationID := utils.OperationIDGenerator()
+ if !open_im_sdk.InitSDK(&testinit, operationID, s) {
+ fmt.Println("", "InitSDK failed")
+ return
+ }
+
+ var testConversation conversationCallBack
+ open_im_sdk.SetConversationListener(&testConversation)
+
+ var testUser userCallback
+ open_im_sdk.SetUserListener(testUser)
+
+ var msgCallBack MsgListenerCallBak
+ open_im_sdk.SetAdvancedMsgListener(&msgCallBack)
+
+ var batchMsg BatchMsg
+ open_im_sdk.SetBatchMsgListener(&batchMsg)
+
+ var friendListener testFriendListener
+ open_im_sdk.SetFriendListener(friendListener)
+
+ var groupListener testGroupListener
+ open_im_sdk.SetGroupListener(groupListener)
+
+ InOutlllogin(uid, tk)
+}
+
+func InOutlllogin(uid, tk string) {
+ var callback BaseSuccessFailed
+ callback.time = time.Now()
+ callback.funcName = utils.GetSelfFuncName()
+ operationID := utils.OperationIDGenerator()
+ open_im_sdk.Login(&callback, operationID, uid, tk)
+ for {
+ if callback.errCode == 1 {
+ return
+ } else if callback.errCode == -1 {
+ time.Sleep(100 * time.Millisecond)
+ } else {
+ time.Sleep(100 * time.Millisecond)
+ }
+ }
+}
+
+func InOutLogout() {
+ var callback BaseSuccessFailed
+ callback.funcName = utils.GetSelfFuncName()
+ opretaionID := utils.OperationIDGenerator()
+ open_im_sdk.Logout(&callback, opretaionID)
+}
diff --git a/go/chao-sdk-core/test/online.go b/go/chao-sdk-core/test/online.go
new file mode 100644
index 0000000..064a75a
--- /dev/null
+++ b/go/chao-sdk-core/test/online.go
@@ -0,0 +1,43 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package test
+
+//funcation OnlineTest(number int) {
+// t1 := time.Now()
+// RegisterOnlineAccounts(number)
+// log.Info("", "RegisterAccounts cost time: ", time.Since(t1), "Online client number ", number)
+// t2 := time.Now()
+// var wg sync.WaitGroup
+// wg.Add(number)
+// for i := 0; i < number; i++ {
+// go funcation(t int) {
+// GenWsConn(t)
+// log.Info("GenWsConn, the: ", t, " user")
+// wg.Done()
+// }(i)
+// }
+// wg.Wait()
+// log.Info("", "OnlineTest finish cost time: ", time.Since(t2), "Online client number ", number)
+//}
+
+//funcation GenWsConn(id int) {
+// userID := GenUid(id, "online")
+// token := RunGetToken(userID)
+// wsRespAsyn := interaction.NewWsRespAsyn()
+// wsConn := interaction.NewWsConn(new(testInitLister), token, userID, false)
+// cmdWsCh := make(chan common.Cmd2Value, 10)
+// pushMsgAndMaxSeqCh := make(chan common.Cmd2Value, 1000)
+// interaction.NewWs(wsRespAsyn, wsConn, cmdWsCh, pushMsgAndMaxSeqCh, nil)
+//}
diff --git a/go/chao-sdk-core/test/reliability.go b/go/chao-sdk-core/test/reliability.go
new file mode 100644
index 0000000..5ddb760
--- /dev/null
+++ b/go/chao-sdk-core/test/reliability.go
@@ -0,0 +1,687 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package test
+
+import (
+ "errors"
+ "fmt"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/tools/log"
+ "io/ioutil"
+ "math/rand"
+ "os"
+ "runtime"
+ "strconv"
+ "strings"
+ "sync"
+ "time"
+)
+
+func GetFileContentAsStringLines(filePath string) ([]string, error) {
+ result := []string{}
+ b, err := ioutil.ReadFile(filePath)
+ if err != nil {
+ return result, err
+ }
+ s := string(b)
+ for _, lineStr := range strings.Split(s, "\n") {
+ lineStr = strings.TrimSpace(lineStr)
+ if lineStr == "" {
+ continue
+ }
+ result = append(result, lineStr)
+ }
+ return result, nil
+}
+
+func GetCmd(myUid int, filename string) int {
+ cmd, err := GetFileContentAsStringLines("cmd.txt")
+ if err != nil {
+ fmt.Println("GetFileContentAsStringLines failed")
+ return -1
+ }
+ if len(cmd) < myUid {
+ fmt.Println("len failed")
+ return -1
+ }
+ return int(utils.StringToInt64(cmd[myUid-1]))
+}
+
+func ReliabilityTest(msgNumOneClient int, intervalSleepMS int, randSleepMaxSecond int, clientNum int) {
+ msgNumInOneClient = msgNumOneClient
+ timeStamp := utils.Int64ToString(time.Now().Unix())
+
+ var wg sync.WaitGroup
+ // æŗ¨å
+ wg.Add(clientNum)
+ for i := 0; i < clientNum; i++ {
+ go func(idx int) {
+ RegisterReliabilityUser(idx, timeStamp)
+ wg.Done()
+ }(i)
+ }
+ wg.Wait()
+
+ log.ZWarn(ctx, "RegisterReliabilityUser finished, clientNum:", errors.New(""), "clientNum", clientNum)
+ log.ZWarn(ctx, "init, login, send msg, start", errors.New(""))
+
+ rand.Seed(time.Now().UnixNano())
+
+ // ä¸å፿ˇįĢåģįģåŊåæļæ¯
+ wg.Add(clientNum)
+ for i := 0; i < clientNum; i++ {
+ rdSleep := rand.Intn(randSleepMaxSecond) + 1
+ isSend := 0 // æļæ¯æ¯åĻæååéæ§åļé
+ if isSend == 0 {
+ go func(idx int) {
+ log.ZWarn(ctx, " send msg flag true ", errors.New(""), "idx", idx)
+ ReliabilityOne(idx, rdSleep, true, intervalSleepMS)
+ wg.Done()
+ }(i)
+ sendMsgClient++
+ } else {
+ go func(idx int) {
+ log.ZWarn(ctx, " send msg flag false ", errors.New(""), "idx", idx)
+ ReliabilityOne(idx, rdSleep, false, intervalSleepMS)
+ wg.Done()
+ }(i)
+ }
+ }
+ wg.Wait()
+ log.ZWarn(ctx, "send msg finish, CheckReliabilityResult", errors.New(""))
+
+ for {
+ // æļæ¯åŧæĨčŊåēå¯čŊåēį°åģļčŋīŧæ¯éäēį§åæŖæĨ䏿ŦĄ
+ if CheckReliabilityResult(msgNumOneClient, clientNum) {
+ log.ZWarn(ctx, "CheckReliabilityResult ok, exit", errors.New(""))
+ os.Exit(0)
+ return
+ } else {
+ log.ZWarn(ctx, "CheckReliabilityResult failed , wait.... ", errors.New(""))
+ }
+ time.Sleep(time.Duration(5) * time.Second)
+ }
+}
+
+func WorkGroupReliabilityTest(msgNumOneClient int, intervalSleepMS int, randSleepMaxSecond int, clientNum int, groupID string) {
+ msgNumInOneClient = msgNumOneClient
+ //timeStamp := utils.Int64ToString(time.Now().Unix())
+
+ var wg sync.WaitGroup
+ wg.Add(clientNum)
+ for i := 0; i < clientNum; i++ {
+ go func(idx int) {
+ WorkGroupRegisterReliabilityUser(idx)
+ wg.Done()
+ }(i)
+ }
+ wg.Wait()
+
+ log.ZWarn(ctx, "RegisterReliabilityUser finished", errors.New(""), "clientNum", clientNum)
+ log.ZWarn(ctx, " init, login, send msg, start ", errors.New(""))
+ rand.Seed(time.Now().UnixNano())
+
+ wg.Add(clientNum)
+ for i := 0; i < clientNum; i++ {
+ rdSleep := rand.Intn(randSleepMaxSecond) + 1
+ isSend := 0
+ if isSend == 0 {
+ go func(idx int) {
+ log.ZWarn(ctx, "send msg flag true", errors.New(""), "idx", idx)
+ WorkGroupReliabilityOne(idx, rdSleep, true, intervalSleepMS, groupID)
+ wg.Done()
+ }(i)
+ sendMsgClient++
+ } else {
+ go func(idx int) {
+ log.ZWarn(ctx, "send msg flag false", errors.New(""), "idx", idx)
+ ReliabilityOne(idx, rdSleep, false, intervalSleepMS)
+ wg.Done()
+ }(i)
+ }
+ }
+ wg.Wait()
+ //log.Warn("send msg finish, CheckReliabilityResult")
+
+ for {
+ if CheckReliabilityResult(msgNumOneClient, clientNum) {
+ //log.Warn("", "CheckReliabilityResult ok, exit")
+ os.Exit(0)
+ return
+ } else {
+ //log.Warn("", "CheckReliabilityResult failed , wait.... ")
+ }
+ time.Sleep(time.Duration(5) * time.Second)
+ }
+}
+
+func WorkGroupMsgDelayTest(msgNumOneClient int, intervalSleepMS int, randSleepMaxSecond int, clientBegin int, clientEnd int, groupID string) {
+ msgNumInOneClient = msgNumOneClient
+
+ var wg sync.WaitGroup
+
+ wg.Add(clientEnd - clientBegin + 1)
+ for i := clientBegin; i <= clientEnd; i++ {
+ go func(idx int) {
+ WorkGroupRegisterReliabilityUser(idx)
+ wg.Done()
+ }(i)
+ }
+ wg.Wait()
+
+ //log.Warn("", "RegisterReliabilityUser finished, client: ", clientBegin, clientEnd)
+ //log.Warn("", " init, login, send msg, start ")
+ rand.Seed(time.Now().UnixNano())
+
+ wg.Add(clientEnd - clientBegin + 1)
+ for i := clientBegin; i <= clientEnd; i++ {
+ rdSleep := rand.Intn(randSleepMaxSecond) + 1
+ isSend := 0
+ if isSend == 0 {
+ go func(idx int) {
+ //log.Warn("", " send msg flag true ", idx)
+ WorkGroupReliabilityOne(idx, rdSleep, true, intervalSleepMS, groupID)
+ wg.Done()
+ }(i)
+ sendMsgClient++
+ } else {
+ go func(idx int) {
+ //log.Warn("", " send msg flag false ", idx)
+ WorkGroupReliabilityOne(idx, rdSleep, false, intervalSleepMS, groupID)
+ wg.Done()
+ }(i)
+ }
+ }
+ wg.Wait()
+ //log.Warn("send msg finish, CheckReliabilityResult")
+
+ for {
+ if CheckReliabilityResult(msgNumOneClient, clientEnd-clientBegin+1) {
+ //log.Warn("", "CheckReliabilityResult ok, exit")
+ os.Exit(0)
+ return
+ } else {
+ //log.Warn("", "CheckReliabilityResult failed , wait.... ")
+ }
+ time.Sleep(time.Duration(5) * time.Second)
+ }
+}
+
+func PressTest(msgNumOneClient int, intervalSleepMS int, clientNum int) {
+ msgNumInOneClient = msgNumOneClient
+ //timeStamp := utils.Int64ToString(time.Now().Unix())
+ var wg sync.WaitGroup
+ wg.Add(clientNum)
+ for i := 0; i < clientNum; i++ {
+ go func(idx int) {
+ RegisterPressUser(idx)
+ log.ZInfo(ctx, "GetUserTokenFinish", "index", idx)
+
+ wg.Done()
+ }(i)
+ }
+ wg.Wait()
+ //log.Warn("", "get all user token finish ", clientNum, " cost time: ", time.Since(t1))
+
+ //log.Warn("", "init and login begin ")
+
+ wg.Add(clientNum)
+ for i := 0; i < clientNum; i++ {
+ go func(idx int) {
+ strMyUid := allLoginMgr[idx].userID
+ token := allLoginMgr[idx].token
+ PressInitAndLogin(idx, strMyUid, token, WSADDR, APIADDR)
+ wg.Done()
+ }(i)
+ }
+ wg.Wait()
+ //log.Warn("", "init and login end ", " cost time: ", time.Since(t1))
+
+ //log.Warn("", "send msg begin ")
+
+ wg.Add(clientNum)
+ for i := 0; i < clientNum; i++ {
+ go func(idx int) {
+ PressOne(idx, 0, true, intervalSleepMS)
+ //log.Warn("", "press finished ", idx)
+ wg.Done()
+ }(i)
+ }
+ wg.Wait()
+ sendMsgTotalSuccessNum := uint32(0)
+ sendMsgTotalFailedNum := uint32(0)
+ for _, v := range allLoginMgr {
+ sendMsgTotalSuccessNum += v.sendMsgSuccessNum
+ sendMsgTotalFailedNum += v.sendMsgFailedNum
+ }
+ //log.Warn("send msg end ", "number of messages expected to be sent: ", clientNum*msgNumOneClient, " sendMsgTotalSuccessNum: ", sendMsgTotalSuccessNum, " sendMsgTotalFailedNum: ", sendMsgTotalFailedNum, "cost time: ", time.Since(t1))
+}
+
+func WorkGroupPressTest(msgNumOneClient int, intervalSleepMS int, clientNum int, groupID string) {
+ msgNumInOneClient = msgNumOneClient
+ var wg sync.WaitGroup
+ wg.Add(clientNum)
+ for i := 0; i < clientNum; i++ {
+ go func(idx int) {
+ WorkGroupRegisterReliabilityUser(idx)
+ log.ZInfo(ctx, "GetUserTokenFinish", "index", idx)
+
+ wg.Done()
+ }(i)
+ }
+ wg.Wait()
+ //log.Warn("", "get all user token finish ", clientNum, " cost time: ", time.Since(t1))
+
+ //log.Warn("", "init and login begin ")
+
+ wg.Add(clientNum)
+ for i := 0; i < clientNum; i++ {
+ go func(idx int) {
+ strMyUid := allLoginMgr[idx].userID
+ token := allLoginMgr[idx].token
+ ReliabilityInitAndLogin(idx, strMyUid, token, WSADDR, APIADDR)
+ wg.Done()
+ }(i)
+ }
+ wg.Wait()
+ //log.Warn("", "init and login end ", " cost time: ", time.Since(t1))
+
+ //log.Warn("", "send msg begin ")
+
+ wg.Add(clientNum)
+ for i := 0; i < clientNum; i++ {
+ go func(idx int) {
+ WorkGroupPressOne(idx, 0, true, intervalSleepMS, groupID)
+ wg.Done()
+ }(i)
+ }
+ wg.Wait()
+ sendMsgTotalSuccessNum := uint32(0)
+ sendMsgTotalFailedNum := uint32(0)
+ for _, v := range allLoginMgr {
+ sendMsgTotalSuccessNum += v.sendMsgSuccessNum
+ sendMsgTotalFailedNum += v.sendMsgFailedNum
+ }
+ //log.Warn("send msg end ", "number of messages expected to be sent: ", clientNum*msgNumOneClient, " sendMsgTotalSuccessNum: ", sendMsgTotalSuccessNum, " sendMsgTotalFailedNum: ", sendMsgTotalFailedNum, "cost time: ", time.Since(t1))
+}
+
+func CheckReliabilityResult(msgNumOneClient int, clientNum int) bool {
+ log.ZInfo(ctx, "StartCheckMapSendToMapRecv")
+
+ sameNum := 0
+
+ // æļæ¯æ°éä¸ä¸č´č¯´æåēį°ä¸ĸå¤ą
+ if len(SendSuccAllMsg)+len(SendFailedAllMsg) != msgNumOneClient*clientNum {
+ //log.Warn("", utils.GetSelfFuncName(), " send msg success number: ", len(SendSuccAllMsg),
+ // " send msg failed number: ", len(SendFailedAllMsg), " all: ", msgNumOneClient*clientNum)
+ return false
+ }
+
+ for ksend, _ := range SendSuccAllMsg {
+ _, ok := RecvAllMsg[ksend] // RecvAllMsg įåå§åäŊæļīŧ
+ if ok {
+ sameNum++
+ } else {
+ // åįšæĨåŋīŧįŦŦ ksend ä¸Ēæļæ¯æ°æŽ æŦå°åæåĄå¨ä¸ä¸č´
+ //log.Error("", "check failed not in recv ", ksend)
+ //log.Error("", "send failed num: ", len(SendFailedAllMsg),
+ // " send success num: ", len(SendSuccAllMsg), " recv num: ", len(RecvAllMsg))
+ return false
+ }
+ }
+ log.ZInfo(ctx, "CheckMapSendToMapRecvOK", "sameNum", sameNum)
+
+ //log.Info("", "start check map recv -> map send ")
+ //sameNum = 0
+
+ //for k1, _ := range RecvAllMsg {
+ // _, ok := SendSuccAllMsg[k1]
+ // if ok {
+ // sameNum++
+ // //x := v1 + v2
+ // //x = x + x
+ //
+ // } else {
+ // log.Error("", "check failed not in send ", k1, len(SendFailedAllMsg), len(SendSuccAllMsg), len(RecvAllMsg))
+ // // return false
+ // }
+ //}
+ minCostTime := int64(1000000)
+ maxCostTime := int64(0)
+ totalCostTime := int64(0)
+ for ksend, vsend := range SendSuccAllMsg {
+ krecv, ok := RecvAllMsg[ksend]
+ if ok {
+ sameNum++
+ costTime := krecv.RecvTime - vsend.SendTime
+ totalCostTime += costTime
+ if costTime > maxCostTime {
+
+ maxCostTime = costTime
+ }
+ if minCostTime > costTime {
+ minCostTime = costTime
+ }
+ }
+ }
+
+ //log.Warn("", "need send msg num : ", sendMsgClient*msgNumInOneClient)
+ //log.Warn("", "send msg succ num ", len(SendSuccAllMsg))
+ //log.Warn("", "send msg failed num ", len(SendFailedAllMsg))
+ //log.Warn("", "recv msg succ num ", len(RecvAllMsg))
+ //log.Warn("", "minCostTime: ", minCostTime, "ms, maxCostTime: ", maxCostTime, "ms, average cost time: ",
+ // totalCostTime/(int64(sendMsgClient*msgNumInOneClient)), "ms", " maxCostMsgID: ", maxCostMsgID)
+
+ return true
+}
+
+func ReliabilityOne(index int, beforeLoginSleep int, isSendMsg bool, intervalSleepMS int) {
+ // time.Sleep(time.Duration(beforeLoginSleep) * time.Second)
+ strMyUid := allLoginMgr[index].userID
+ token := allLoginMgr[index].token
+ log.ZInfo(ctx, "LoginOKClientNum", "clientNum", len(allLoginMgr), "userID", strMyUid, "token", token, "index", index)
+
+ ReliabilityInitAndLogin(index, strMyUid, token, WSADDR, APIADDR)
+
+ //log.Warn("start One", index, beforeLoginSleep, isSendMsg, strMyUid, token, WSADDR, APIADDR)
+
+ msgnum := msgNumInOneClient
+ uidNum := len(allLoginMgr)
+ rand.Seed(time.Now().UnixNano())
+ if msgnum == 0 {
+ os.Exit(0)
+ }
+ if !isSendMsg {
+ // Msgwg.Done()
+ } else {
+ for i := 0; i < msgnum; i++ {
+ var r int
+ time.Sleep(time.Duration(intervalSleepMS) * time.Millisecond)
+ for {
+ r = rand.Intn(uidNum)
+ if r == index {
+ continue
+ } else {
+ break
+ }
+ }
+ recvId := allLoginMgr[r].userID
+ idx := strconv.FormatInt(int64(i), 10)
+ for {
+ if runtime.NumGoroutine() > MaxNumGoroutine {
+ time.Sleep(time.Duration(intervalSleepMS) * time.Millisecond)
+ //log.Warn("", "NumGoroutine > max ", runtime.NumGoroutine(), MaxNumGoroutine)
+ continue
+ } else {
+ break
+ }
+ }
+ DoTestSendMsg(index, strMyUid, recvId, "", idx)
+ }
+ //Msgwg.Done()
+ }
+}
+
+func WorkGroupReliabilityOne(index int, beforeLoginSleep int, isSendMsg bool, intervalSleepMS int, groupID string) {
+ // time.Sleep(time.Duration(beforeLoginSleep) * time.Second)
+ strMyUid := allLoginMgr[index].userID
+ token := allLoginMgr[index].token
+ ReliabilityInitAndLogin(index, strMyUid, token, WSADDR, APIADDR)
+ log.ZInfo(ctx, "LoginSuccess", "clientNum", len(allLoginMgr))
+
+ //log.Warn("start One", index, beforeLoginSleep, isSendMsg, strMyUid, token, WSADDR, APIADDR)
+ msgnum := msgNumInOneClient
+ uidNum := len(allLoginMgr)
+ var idx string
+ rand.Seed(time.Now().UnixNano())
+ if msgnum == 0 {
+ os.Exit(0)
+ }
+ if !isSendMsg {
+ // Msgwg.Done()
+ } else {
+ for i := 0; i < msgnum; i++ {
+ var r int
+ time.Sleep(time.Duration(intervalSleepMS) * time.Millisecond)
+ for {
+ r = rand.Intn(uidNum)
+ if r == index {
+ continue
+ } else {
+
+ break
+ }
+
+ }
+
+ idx = strconv.FormatInt(int64(i), 10)
+ for {
+ if runtime.NumGoroutine() > MaxNumGoroutine {
+ time.Sleep(time.Duration(intervalSleepMS) * time.Millisecond)
+ //log.Warn("", "NumGoroutine > max ", runtime.NumGoroutine(), MaxNumGoroutine)
+ continue
+ } else {
+ break
+ }
+ }
+
+ DoTestSendMsg(index, strMyUid, "", groupID, idx)
+
+ }
+ //Msgwg.Done()
+ }
+}
+
+func WorkGroupMsgDelayOne(index int, beforeLoginSleep int, isSendMsg bool, intervalSleepMS int, groupID string) {
+ // time.Sleep(time.Duration(beforeLoginSleep) * time.Second)
+ strMyUid := allLoginMgr[index].userID
+ token := allLoginMgr[index].token
+ ReliabilityInitAndLogin(index, strMyUid, token, WSADDR, APIADDR)
+ log.ZInfo(ctx, "LoginSuccess", "clientNum", len(allLoginMgr))
+
+ //log.Warn("start One", index, beforeLoginSleep, isSendMsg, strMyUid, token, WSADDR, APIADDR)
+ msgnum := msgNumInOneClient
+ uidNum := len(allLoginMgr)
+ var idx string
+ rand.Seed(time.Now().UnixNano())
+ if msgnum == 0 {
+ os.Exit(0)
+ }
+ if !isSendMsg {
+ // Msgwg.Done()
+ } else {
+ for i := 0; i < msgnum; i++ {
+ var r int
+ time.Sleep(time.Duration(intervalSleepMS) * time.Millisecond)
+ for {
+ r = rand.Intn(uidNum)
+ if r == index {
+ continue
+ } else {
+
+ break
+ }
+
+ }
+
+ idx = strconv.FormatInt(int64(i), 10)
+ for {
+ if runtime.NumGoroutine() > MaxNumGoroutine {
+ time.Sleep(time.Duration(intervalSleepMS) * time.Millisecond)
+ //log.Warn("", "NumGoroutine > max ", runtime.NumGoroutine(), MaxNumGoroutine)
+ continue
+ } else {
+ break
+ }
+ }
+
+ DoTestSendMsg(index, strMyUid, "", groupID, idx)
+
+ }
+ //Msgwg.Done()
+ }
+}
+
+//
+//funcation WorkGroupMsgDelayOne(sendID1 string, beforeLoginSleep int, isSendMsg bool, intervalSleepMS int, groupID string) {
+// // time.Sleep(time.Duration(beforeLoginSleep) * time.Second)
+// strMyUid := allLoginMgr[index].userID
+// token := allLoginMgr[index].token
+// ReliabilityInitAndLogin(index, strMyUid, token, WSADDR, APIADDR)
+// log.Info("", "login ok client num: ", len(allLoginMgr))
+// log.Warn("start One", index, beforeLoginSleep, isSendMsg, strMyUid, token, WSADDR, APIADDR)
+// msgnum := msgNumInOneClient
+// uidNum := len(allLoginMgr)
+// var idx string
+// rand.Seed(time.Now().UnixNano())
+// if msgnum == 0 {
+// os.Exit(0)
+// }
+// if !isSendMsg {
+// // Msgwg.Done()
+// } else {
+// for i := 0; i < msgnum; i++ {
+// var r int
+// time.Sleep(time.Duration(intervalSleepMS) * time.Millisecond)
+// for {
+// r = rand.Intn(uidNum)
+// if r == index {
+// continue
+// } else {
+//
+// break
+// }
+//
+// }
+//
+// idx = strconv.FormatInt(int64(i), 10)
+// for {
+// if runtime.NumGoroutine() > MaxNumGoroutine {
+// time.Sleep(time.Duration(intervalSleepMS) * time.Millisecond)
+// log.Warn("", "NumGoroutine > max ", runtime.NumGoroutine(), MaxNumGoroutine)
+// continue
+// } else {
+// break
+// }
+// }
+//
+// DoTestSendMsg(index, strMyUid, "", groupID, idx)
+//
+// }
+// //Msgwg.Done()
+// }
+//}
+
+func PressOne(index int, beforeLoginSleep int, isSendMsg bool, intervalSleepMS int) {
+ if beforeLoginSleep != 0 {
+ time.Sleep(time.Duration(beforeLoginSleep) * time.Millisecond)
+ }
+
+ strMyUid := allLoginMgr[index].userID
+ token := allLoginMgr[index].token
+ // ReliabilityInitAndLogin(index, strMyUid, token, WSADDR, APIADDR)
+ log.ZInfo(ctx, "LoginSuccess", "clientNum", len(allLoginMgr))
+ log.ZInfo(ctx, "StartOne", "index", index, "beforeLoginSleep", beforeLoginSleep, "isSendMsg", isSendMsg, "senderUID", strMyUid, "token", token, "wsAddr", WSADDR, "apiAddr", APIADDR)
+
+ msgnum := msgNumInOneClient
+ uidNum := len(allLoginMgr)
+ var recvId string
+ var idx string
+ rand.Seed(time.Now().UnixNano())
+ if msgnum == 0 {
+ os.Exit(0)
+ }
+ if !isSendMsg {
+ // Msgwg.Done()
+ } else {
+ for i := 0; i < msgnum; i++ {
+ var r int
+ // time.Sleep(time.Duration(intervalSleepMS) * time.Millisecond)
+ for {
+ r = rand.Intn(uidNum)
+ if r == index {
+ continue
+ } else {
+
+ break
+ }
+
+ }
+
+ recvId = allLoginMgr[r].userID
+ idx = strconv.FormatInt(int64(i), 10)
+ for {
+ if runtime.NumGoroutine() > MaxNumGoroutine {
+ time.Sleep(time.Duration(intervalSleepMS) * time.Millisecond)
+ //log.Warn("", " NumGoroutine > max ", runtime.NumGoroutine(), MaxNumGoroutine)
+ continue
+ } else {
+ break
+ }
+ }
+ time.Sleep(time.Duration(intervalSleepMS) * time.Millisecond)
+ //DoTestSendMsg(index, strMyUid, recvId, idx)
+ if sendPressMsg(index, strMyUid, recvId, "", idx) {
+ allLoginMgr[index].sendMsgSuccessNum++
+ } else {
+ allLoginMgr[index].sendMsgFailedNum++
+ }
+ }
+ //Msgwg.Done()
+ }
+}
+
+func WorkGroupPressOne(index int, beforeLoginSleep int, isSendMsg bool, intervalSleepMS int, groupID string) {
+ if beforeLoginSleep != 0 {
+ time.Sleep(time.Duration(beforeLoginSleep) * time.Millisecond)
+ }
+ strMyUid := allLoginMgr[index].userID
+ token := allLoginMgr[index].token
+ //ReliabilityInitAndLogin(index, strMyUid, token, WSADDR, APIADDR)
+ log.ZInfo(ctx, "LoginSuccess", "clientNum", len(allLoginMgr))
+ log.ZInfo(ctx, "StartOne", "index", index, "beforeLoginSleep", beforeLoginSleep, "isSendMsg", isSendMsg, "senderUID", strMyUid, "token", token, "wsAddr", WSADDR, "apiAddr", APIADDR)
+
+ msgnum := msgNumInOneClient
+ var idx string
+ rand.Seed(time.Now().UnixNano())
+ if msgnum == 0 {
+ os.Exit(0)
+ }
+ if !isSendMsg {
+ } else {
+ for i := 0; i < msgnum; i++ {
+ idx = strconv.FormatInt(int64(i), 10)
+
+ for {
+ if runtime.NumGoroutine() > MaxNumGoroutine {
+ time.Sleep(time.Duration(intervalSleepMS) * time.Millisecond)
+ //log.Warn("", " NumGoroutine > max ", runtime.NumGoroutine(), MaxNumGoroutine)
+ continue
+ } else {
+ break
+ }
+ }
+ log.ZInfo(ctx, "SendPressMsgBegin", "index", index, "senderUID", strMyUid, "groupID", groupID)
+
+ if sendPressMsg(index, strMyUid, "", groupID, idx) {
+ allLoginMgr[index].sendMsgSuccessNum++
+ } else {
+ allLoginMgr[index].sendMsgFailedNum++
+ }
+ log.ZInfo(ctx, "sendPressMsg end")
+ time.Sleep(time.Duration(intervalSleepMS) * time.Millisecond)
+ }
+ }
+}
diff --git a/go/chao-sdk-core/test/sendMessage.go b/go/chao-sdk-core/test/sendMessage.go
new file mode 100644
index 0000000..7472c73
--- /dev/null
+++ b/go/chao-sdk-core/test/sendMessage.go
@@ -0,0 +1,138 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package test
+
+import (
+ "github.com/openimsdk/openim-sdk-core/v3/open_im_sdk"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/protocol/sdkws"
+ "github.com/openimsdk/tools/log"
+)
+
+func init() {
+ //sdk_struct.SvrConf = sdk_struct.IMConfig{Platform: 1, ApiAddr: APIADDR, WsAddr: WSADDR, DataDir: "./", LogLevel: 6, ObjectStorage: "cos"}
+ allLoginMgr = make(map[int]*CoreNode)
+
+}
+
+//funcation InitMgr(num int) {
+// log.Warn("", "allLoginMgr cap: ", num)
+// allLoginMgr = make(map[int]*CoreNode, num)
+//}
+
+type CoreNode struct {
+ token string
+ userID string
+ mgr *open_im_sdk.LoginMgr
+ sendMsgSuccessNum uint32
+ sendMsgFailedNum uint32
+ idx int
+}
+
+func addSendSuccess() {
+ sendSuccessLock.Lock()
+ defer sendSuccessLock.Unlock()
+ sendSuccessCount++
+}
+func addSendFailed() {
+ sendFailedLock.Lock()
+ defer sendFailedLock.Unlock()
+ sendFailedCount++
+}
+
+//
+//funcation TestSendCostTime() {
+// GenWsConn(0)
+// sendID := allUserID[0]
+// recvID := allUserID[0]
+// for {
+// operationID := utils.OperationIDGenerator()
+// b := SendTextMessage("test", sendID, recvID, operationID, allWs[0])
+// if b {
+// log.Debug(operationID, sendID, recvID, "SendTextMessage success")
+// } else {
+// log.Error(operationID, sendID, recvID, "SendTextMessage failed")
+// }
+// time.Sleep(time.Duration(5) * time.Second)
+// log.Debug(operationID, "//////////////////////////////////")
+// }
+//
+//}
+//funcation TestSend(idx int, text string, uidNum, intervalSleep int) {
+// for {
+// operationID := utils.OperationIDGenerator()
+// sendID := allUserID[idx]
+// recvID := allUserID[rand.Intn(uidNum)]
+// b := SendTextMessage(text, sendID, recvID, operationID, allWs[idx])
+// if b {
+// log.Debug(operationID, sendID, recvID, "SendTextMessage success")
+// } else {
+// log.Error(operationID, sendID, recvID, "SendTextMessage failed")
+// }
+// time.Sleep(time.Duration(rand.Intn(intervalSleep)) * time.Millisecond)
+// }
+//}
+//
+
+//funcation sendPressMsg(idx int, text string, uidNum, intervalSleep int) {
+// for {
+// operationID := utils.OperationIDGenerator()
+// sendID := allUserID[idx]
+// recvID := allUserID[rand.Intn(uidNum)]
+// b := SendTextMessageOnlyForPress(text, sendID, recvID, operationID, allLoginMgr[idx].mgr.Ws())
+// if b {
+// log.Debug(operationID, sendID, recvID, "SendTextMessage success")
+// } else {
+// log.Error(operationID, sendID, recvID, "SendTextMessage failed ")
+// }
+// time.Sleep(time.Duration(rand.Intn(intervalSleep)) * time.Second)
+// }
+//}
+
+func sendPressMsg(index int, sendId, recvID string, groupID string, idx string) bool {
+
+ return SendTextMessageOnlyForPress(idx, sendId, recvID, groupID, utils.OperationIDGenerator())
+}
+func SendTextMessageOnlyForPress(text, senderID, recvID, groupID, operationID string) bool {
+ var wsMsgData sdkws.MsgData
+ options := make(map[string]bool, 2)
+ wsMsgData.SendID = senderID
+ if groupID == "" {
+ wsMsgData.RecvID = recvID
+ wsMsgData.SessionType = constant.SingleChatType
+ } else {
+ wsMsgData.GroupID = groupID
+ wsMsgData.SessionType = constant.SuperGroupChatType
+ }
+
+ wsMsgData.ClientMsgID = utils.GetMsgID(senderID)
+ wsMsgData.SenderPlatformID = 1
+
+ wsMsgData.MsgFrom = constant.UserMsgType
+ wsMsgData.ContentType = constant.Text
+ wsMsgData.Content = []byte(text)
+ wsMsgData.CreateTime = utils.GetCurrentTimestampByMill()
+ wsMsgData.Options = options
+ wsMsgData.OfflinePushInfo = nil
+ //timeout := 300
+ log.ZInfo(ctx, "SendReqTest begin ", "operationID", operationID, "wsMsgData", wsMsgData)
+ //flag := ws.SendReqTest(&wsMsgData, constant.WSSendMsg, timeout, senderID, operationID)
+ //
+ //if flag != true {
+ // log.Warn(operationID, "SendReqTest failed ", wsMsgData)
+ //}
+ return true
+}
diff --git a/go/chao-sdk-core/test/t_conversation_msg.go b/go/chao-sdk-core/test/t_conversation_msg.go
new file mode 100644
index 0000000..c0d1373
--- /dev/null
+++ b/go/chao-sdk-core/test/t_conversation_msg.go
@@ -0,0 +1,927 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package test
+
+import (
+ "encoding/json"
+ "fmt"
+ "sync"
+
+ "github.com/openimsdk/openim-sdk-core/v3/open_im_sdk"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/sdk_params_callback"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/server_api_params"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/sdk_struct"
+ "github.com/openimsdk/tools/log"
+
+ "github.com/openimsdk/protocol/sdkws"
+
+ "github.com/openimsdk/tools/mcontext"
+)
+
+//funcation DotestSetConversationRecvMessageOpt() {
+// var callback BaseSuccessFailedTest
+// callback.funcName = utils.GetSelfFuncName()
+// var idList []string
+// idList = append(idList, "18567155635")
+// jsontest, _ := json.Marshal(idList)
+// open_im_sdk.SetConversationRecvMessageOpt(&callback, string(jsontest), 2)
+// fmt.Println("SetConversationRecvMessageOpt", string(jsontest))
+//}
+//
+//funcation DoTestGetMultipleConversation() {
+// var callback BaseSuccessFailedTest
+// callback.funcName = utils.GetSelfFuncName()
+// var idList []string
+// fmt.Println("DoTestGetMultipleConversation come here")
+// idList = append(idList, "single_13977954313", "group_77215e1b13b75f3ab00cb6570e3d9618")
+// jsontest, _ := json.Marshal(idList)
+// open_im_sdk.GetMultipleConversation(string(jsontest), &callback)
+// fmt.Println("GetMultipleConversation", string(jsontest))
+//}
+//
+//funcation DoTestGetConversationRecvMessageOpt() {
+// var callback BaseSuccessFailedTest
+// callback.funcName = utils.GetSelfFuncName()
+// var idList []string
+// idList = append(idList, "18567155635")
+// jsontest, _ := json.Marshal(idList)
+// open_im_sdk.GetConversationRecvMessageOpt(&callback, string(jsontest))
+// fmt.Println("GetConversationRecvMessageOpt", string(jsontest))
+//}
+
+func DoTestDeleteAllMsgFromLocalAndSvr() {
+ var deleteConversationCallback DeleteConversationCallBack
+ operationID := utils.OperationIDGenerator()
+ log.ZInfo(ctx, operationID, utils.GetSelfFuncName(), "args")
+ open_im_sdk.DeleteAllMsgFromLocalAndSvr(deleteConversationCallback, operationID)
+}
+func DoTestSearchLocalMessages() {
+ //[SearchLocalMessages args: {"conversationID":"single_707010937","keywordList":["1"],"keywordListMatchType":0,"senderUserIDList":[],"messageTypeList":[],"searchTimePosition":0,"searchTimePeriod":0,"pageIndex":1,"count":200}]
+ var testSearchLocalMessagesCallBack SearchLocalMessagesCallBack
+ testSearchLocalMessagesCallBack.OperationID = utils.OperationIDGenerator()
+ var params sdk_params_callback.SearchLocalMessagesParams
+ params.KeywordList = []string{"1"}
+ params.ConversationID = "super_group_3907826375"
+ params.Count = 20
+ params.PageIndex = 1
+ //s:=strings.Trim(params.KeywordList[0],"")
+ //fmt.Println(len(s),s)
+ //params.KeywordListMatchType = 1
+ params.MessageTypeList = []int{101, 106}
+ open_im_sdk.SearchLocalMessages(testSearchLocalMessagesCallBack, testSearchLocalMessagesCallBack.OperationID, utils.StructToJsonString(params))
+}
+
+// funcation DoTestGetHistoryMessage(userID string) {
+// var testGetHistoryCallBack GetHistoryCallBack
+// testGetHistoryCallBack.OperationID = utils.OperationIDGenerator()
+// var params sdk_params_callback.GetHistoryMessageListParams
+// params.UserID = userID
+// params.ConversationID = "super_group_3907826375"
+// //params.StartClientMsgID = "97f12899778823019f13ea46b0c1e6dd"
+// params.Count = 10
+// open_im_sdk.GetHistoryMessageList(testGetHistoryCallBack, testGetHistoryCallBack.OperationID, utils.StructToJsonString(params))
+// }
+func DoTestFindMessageList() {
+ var testFindMessageListCallBack FindMessageListCallBack
+ testFindMessageListCallBack.OperationID = utils.OperationIDGenerator()
+ var params sdk_params_callback.FindMessageListParams
+ temp := sdk_params_callback.ConversationArgs{ConversationID: "super_group_4205679980", ClientMsgIDList: []string{"eee68d85a43991d6b2e7354c52c5321d", "736f40f902046a6e879dc7257d3e81df"}}
+ //temp1 := sdk_params_callback.ConversationArgs{ConversationID: "super_group_3320742908", ClientMsgIDList: []string{"acf09fcdda48bf2cb39faba31ac63b5c", "b121d3a7f269636afd255b6001d3fc80", "d8951d1c5192ad39f37f44de93a83302"}}
+ params = append(params, &temp)
+ //params = append(params, &temp1)
+ open_im_sdk.FindMessageList(testFindMessageListCallBack, testFindMessageListCallBack.OperationID, utils.StructToJsonString(params))
+}
+func DoTestSetMessageReactionExtensions() {
+ var testSetMessageReactionExtensionsCallBack SetMessageReactionExtensionsCallBack
+ testSetMessageReactionExtensionsCallBack.OperationID = utils.OperationIDGenerator()
+ var params sdk_params_callback.SetMessageReactionExtensionsParams
+ var data server_api_params.KeyValue
+ data.TypeKey = "x"
+ m := make(map[string]interface{})
+ m["operation"] = "1"
+ m["operator"] = "1583984945064968192"
+ data.Value = utils.StructToJsonString(m)
+ params = append(params, &data)
+ s := sdk_struct.MsgStruct{}
+ s.SessionType = 3
+ s.GroupID = "1420026997"
+ s.ClientMsgID = "831c270ae1d7472dc633e7be06b37db5"
+ //params = append(params, &temp1)
+ // open_im_sdk.SetMessageReactionExtensions(testSetMessageReactionExtensionsCallBack, testSetMessageReactionExtensionsCallBack.OperationID, utils.StructToJsonString(s),
+ // utils.StructToJsonString(params))
+}
+func DoTestAddMessageReactionExtensions(index int, operationID string) {
+ var testAddMessageReactionExtensionsCallBack AddMessageReactionExtensionsCallBack
+ testAddMessageReactionExtensionsCallBack.OperationID = operationID
+ fmt.Printf("DoTestAddMessageReactionExtensions opid:", testAddMessageReactionExtensionsCallBack.OperationID, index)
+ var params sdk_params_callback.AddMessageReactionExtensionsParams
+ var data server_api_params.KeyValue
+ data.TypeKey = "x"
+ m := make(map[string]interface{})
+ m["operation"] = index
+ m["operator"] = "1583984945064968192"
+ data.Value = utils.StructToJsonString(m)
+ params = append(params, &data)
+ s := sdk_struct.MsgStruct{}
+ s.SessionType = 3
+ s.GroupID = "1623878302774460418"
+ s.ClientMsgID = "7ca152a836a0f784c07a3b74d4e2a97d"
+ //params = append(params, &temp1)
+ // open_im_sdk.AddMessageReactionExtensions(testAddMessageReactionExtensionsCallBack, testAddMessageReactionExtensionsCallBack.OperationID, utils.StructToJsonString(s),
+ // utils.StructToJsonString(params))
+}
+func DoTestGetMessageListReactionExtensions(operationID string) {
+ var testGetMessageReactionExtensionsCallBack GetMessageListReactionExtensionsCallBack
+ testGetMessageReactionExtensionsCallBack.OperationID = operationID
+ fmt.Printf("DoTestGetMessageListReactionExtensions opid:", testGetMessageReactionExtensionsCallBack.OperationID)
+ var ss []sdk_struct.MsgStruct
+ s := sdk_struct.MsgStruct{}
+ s.SessionType = 3
+ s.GroupID = "1623878302774460418"
+ s.ClientMsgID = "d91943a8085556853b3457e33d1e21b2"
+ s1 := sdk_struct.MsgStruct{}
+ s1.SessionType = 3
+ s1.GroupID = "1623878302774460418"
+ s1.ClientMsgID = "7ca152a836a0f784c07a3b74d4e2a97d"
+ ss = append(ss, s)
+ ss = append(ss, s1)
+ //params = append(params, &temp1)
+ // open_im_sdk.GetMessageListReactionExtensions(testGetMessageReactionExtensionsCallBack, testGetMessageReactionExtensionsCallBack.OperationID, utils.StructToJsonString(ss))
+}
+func DoTestSetAppBadge() {
+ var testSetAppBadgeCallBack SetAppBadgeCallBack
+ testSetAppBadgeCallBack.OperationID = utils.OperationIDGenerator()
+ open_im_sdk.SetAppBadge(testSetAppBadgeCallBack, testSetAppBadgeCallBack.OperationID, 100)
+}
+
+func DoTestGetAdvancedHistoryMessageList() {
+ var testGetHistoryCallBack GetHistoryCallBack
+ testGetHistoryCallBack.OperationID = utils.OperationIDGenerator()
+ var params sdk_params_callback.GetAdvancedHistoryMessageListParams
+ params.ConversationID = "si_7788_7789"
+ //params.StartClientMsgID = "83ca933d559d0374258550dd656a661c"
+ params.Count = 20
+ //params.LastMinSeq = seq
+ open_im_sdk.GetAdvancedHistoryMessageList(testGetHistoryCallBack, testGetHistoryCallBack.OperationID, utils.StructToJsonString(params))
+}
+
+//funcation DoTestGetHistoryMessageReverse(userID string) {
+// var testGetHistoryReverseCallBack GetHistoryReverseCallBack
+// testGetHistoryReverseCallBack.OperationID = utils.OperationIDGenerator()
+// var params sdk_params_callback.GetHistoryMessageListParams
+// params.UserID = userID
+// params.Count = 10
+// params.ConversationID = "single_707008149"
+// params.StartClientMsgID = "d40dde77f29b14d3a16ca6f422776890"
+// open_im_sdk.GetHistoryMessageListReverse(testGetHistoryReverseCallBack, testGetHistoryReverseCallBack.OperationID, utils.StructToJsonString(params))
+//}
+//funcation DoTestGetGroupHistoryMessage() {
+// var testGetHistoryCallBack GetHistoryCallBack
+// testGetHistoryCallBack.OperationID = utils.OperationIDGenerator()
+// var params sdk_params_callback.GetHistoryMessageListParams
+// params.GroupID = "cb7aaa8e5f83d92db2ed1573cd01870c"
+// params.Count = 10
+// open_im_sdk.GetHistoryMessageList(testGetHistoryCallBack, testGetHistoryCallBack.OperationID, utils.StructToJsonString(params))
+//}
+
+//funcation DoTestGetGroupHistoryMessage() {
+// var testGetHistoryCallBack GetHistoryCallBack
+// testGetHistoryCallBack.OperationID = utils.OperationIDGenerator()
+// var params sdk_params_callback.GetHistoryMessageListParams
+// params.GroupID = "cb7aaa8e5f83d92db2ed1573cd01870c"
+// params.Count = 10
+// open_im_sdk.GetHistoryMessageList(testGetHistoryCallBack, testGetHistoryCallBack.OperationID, utils.StructToJsonString(params))
+//}
+
+//funcation DoTestDeleteConversation(conversationID string) {
+// var testDeleteConversation DeleteConversationCallBack
+// open_im_sdk.DeleteConversation(conversationID, testDeleteConversation)
+//
+//}
+
+type DeleteConversationCallBack struct {
+}
+
+func (d DeleteConversationCallBack) OnError(errCode int32, errMsg string) {
+ fmt.Printf("DeleteConversationCallBack , errCode:%v,errMsg:%v\n", errCode, errMsg)
+}
+
+func (d DeleteConversationCallBack) OnSuccess(data string) {
+ fmt.Printf("DeleteConversationCallBack , success,data:%v\n", data)
+}
+
+type DeleteMessageCallBack struct {
+ Msg string
+}
+
+func (d DeleteMessageCallBack) OnError(errCode int32, errMsg string) {
+ fmt.Printf("DeleteMessageCallBack , errCode:%v,errMsg:%v\n", errCode, errMsg)
+}
+
+func (d *DeleteMessageCallBack) OnSuccess(data string) {
+ fmt.Printf("DeleteMessageCallBack , success,data:%v\n", data)
+ d.Msg = data
+}
+
+func (d DeleteMessageCallBack) GetMessage() string {
+ return d.Msg
+}
+
+func DoTestDeleteConversationMsgFromLocalAndSvr(conversationID string) {
+ cb := &DeleteMessageCallBack{}
+ operationID := utils.OperationIDGenerator()
+ open_im_sdk.DeleteConversationAndDeleteAllMsg(cb, operationID, conversationID)
+}
+
+type TestGetAllConversationListCallBack struct {
+ OperationID string
+}
+
+func (t TestGetAllConversationListCallBack) OnError(errCode int32, errMsg string) {
+ log.ZInfo(ctx, "TestGetAllConversationListCallBack ", "operationID", t.OperationID, "errCode", errCode, "errMsg", errMsg)
+}
+
+func (t TestGetAllConversationListCallBack) OnSuccess(data string) {
+ log.ZInfo(ctx, "ConversationCallBack ", "operationID", t.OperationID, "data", data)
+}
+
+func DoTestGetAllConversation() {
+ var test TestGetAllConversationListCallBack
+ test.OperationID = utils.OperationIDGenerator()
+ open_im_sdk.GetAllConversationList(test, test.OperationID)
+}
+
+func DoTestGetOneConversation(friendID string) {
+ var test TestGetAllConversationListCallBack
+ test.OperationID = utils.OperationIDGenerator()
+ open_im_sdk.GetOneConversation(test, test.OperationID, constant.SingleChatType, friendID)
+}
+
+func DoTestGetConversations(conversationIDs string) {
+ var test TestGetAllConversationListCallBack
+ test.OperationID = utils.OperationIDGenerator()
+ open_im_sdk.GetMultipleConversation(test, test.OperationID, conversationIDs)
+}
+
+type TestSetConversationPinnedCallback struct {
+ OperationID string
+}
+
+func (t TestSetConversationPinnedCallback) OnError(errCode int32, errMsg string) {
+ log.ZInfo(ctx, "TestSetConversationPinnedCallback ", "operationID", t.OperationID, "errCode", errCode, "errMsg", errMsg)
+}
+
+func (t TestSetConversationPinnedCallback) OnSuccess(data string) {
+ log.ZInfo(ctx, "TestSetConversationPinnedCallback ", "operationID", t.OperationID, "data", data)
+}
+
+func DoTestSetConversationRecvMessageOpt(conversationIDs []string, opt int) {
+ var callback testProcessGroupApplication
+ callback.OperationID = utils.OperationIDGenerator()
+ log.ZInfo(ctx, "DoTestSetConversationRecvMessageOpt", "operationID", callback.OperationID, "funcName", utils.GetSelfFuncName(),
+ "conversationIDs: ", conversationIDs, "opt", opt)
+ s := utils.StructToJsonString(conversationIDs)
+ open_im_sdk.SetConversationRecvMessageOpt(callback, callback.OperationID, s, opt)
+}
+
+//func DoTestRevoke() {
+// var callback testProcessGroupApplication
+// open_im_sdk.RevokeMessage(callback, "si_3232515230_8650796072", utils.StructToJsonString(&sdk_struct.MsgStruct{SessionType: 1, ContentType: 101,
+// ClientMsgID: "ebfe4e0aa11e7602de3dfe0670b484cd", Seq: 12, SendID: "8650796072", RecvID: "3232515230"}))
+//}
+
+func DoTestClearOneConversation() {
+ var callback testProcessGroupApplication
+ open_im_sdk.ClearConversationAndDeleteAllMsg(callback, "df", "si_2456093263_9169012630")
+}
+
+func DoTestSetConversationPinned(conversationID string, pin bool) {
+ var test TestSetConversationPinnedCallback
+ test.OperationID = "testping"
+ open_im_sdk.PinConversation(test, test.OperationID, conversationID, pin)
+}
+
+func DoTestSetOneConversationRecvMessageOpt(conversationID string, opt int) {
+ var test TestSetConversationPinnedCallback
+ test.OperationID = utils.OperationIDGenerator()
+ open_im_sdk.SetConversationRecvMessageOpt(test, test.OperationID, conversationID, opt)
+}
+
+func DoTestSetOneConversationPrivateChat(conversationID string, privateChat bool) {
+ var test TestSetConversationPinnedCallback
+ test.OperationID = utils.OperationIDGenerator()
+ open_im_sdk.SetConversationPrivateChat(test, test.OperationID, conversationID, privateChat)
+}
+
+func DoTestSetBurnDuration(conversationID string) {
+ var test TestSetConversationPinnedCallback
+ test.OperationID = utils.OperationIDGenerator()
+ open_im_sdk.SetConversationBurnDuration(test, test.OperationID, conversationID, 300)
+}
+
+func DoTestSetMsgDestructTime(conversationID string) {
+ var test TestSetConversationPinnedCallback
+ test.OperationID = utils.OperationIDGenerator()
+ open_im_sdk.SetConversationIsMsgDestruct(test, test.OperationID, conversationID, true)
+ open_im_sdk.SetConversationMsgDestructTime(test, test.OperationID, conversationID, 300010)
+}
+
+type TestGetConversationListSplitCallBack struct {
+ OperationID string
+}
+
+func (t TestGetConversationListSplitCallBack) OnError(errCode int32, errMsg string) {
+ log.ZInfo(ctx, "TestGetConversationListSplitCallBack err ", "operationID", t.OperationID, "errCode", errCode, "errMsg", errMsg)
+}
+
+func (t TestGetConversationListSplitCallBack) OnSuccess(data string) {
+ log.ZInfo(ctx, "TestGetConversationListSplitCallBack success", "operationID", t.OperationID, "data", data)
+}
+func DoTestGetConversationListSplit() {
+ var test TestGetConversationListSplitCallBack
+ test.OperationID = utils.OperationIDGenerator()
+ open_im_sdk.GetConversationListSplit(test, test.OperationID, 1, 2)
+}
+
+type TestGetOneConversationCallBack struct {
+}
+
+func (t TestGetOneConversationCallBack) OnError(errCode int32, errMsg string) {
+ fmt.Printf("TestGetOneConversationCallBack , errCode:%v,errMsg:%v\n", errCode, errMsg)
+}
+
+func (t TestGetOneConversationCallBack) OnSuccess(data string) {
+ fmt.Printf("TestGetOneConversationCallBack , success,data:%v\n", data)
+}
+
+func DoTestGetConversationRecvMessageOpt(list string) {
+ var test TestGetConversationRecvMessageOpt
+ test.OperationID = utils.OperationIDGenerator()
+ open_im_sdk.GetConversationRecvMessageOpt(test, test.OperationID, list)
+}
+
+type TestGetConversationRecvMessageOpt struct {
+ OperationID string
+}
+
+func (t TestGetConversationRecvMessageOpt) OnError(errCode int32, errMsg string) {
+ fmt.Printf("TestGetConversationRecvMessageOpt , errCode:%v,errMsg:%v\n", errCode, errMsg)
+}
+
+func (t TestGetConversationRecvMessageOpt) OnSuccess(data string) {
+ fmt.Printf("TestGetConversationRecvMessageOpt , success,data:%v\n", data)
+}
+
+func DoTestCreateTextMessage(text string) string {
+ operationID := utils.OperationIDGenerator()
+ return open_im_sdk.CreateTextMessage(operationID, text)
+}
+
+func DoTestCreateImageMessageFromFullPath() string {
+ operationID := utils.OperationIDGenerator()
+ return open_im_sdk.CreateImageMessageFromFullPath(operationID, "C:\\Users\\Administrator\\Desktop\\rtc.proto")
+ //open_im_sdk.SendMessage(&testSendMsg, operationID, s, , "", utils.StructToJsonString(o))
+}
+
+func DoTestCreateOtherMessageFromFullPath() string {
+ operationID := utils.OperationIDGenerator()
+ return open_im_sdk.CreateFileMessageFromFullPath(operationID, "C:\\Users\\Administrator\\Desktop\\2.txt", "2.txt")
+ //open_im_sdk.SendMessage(&testSendMsg, operationID, s, , "", utils.StructToJsonString(o))
+}
+
+func DoTestCreateVideoMessageFromFullPath() string {
+ operationID := utils.OperationIDGenerator()
+ return open_im_sdk.CreateVideoMessageFromFullPath(operationID, "C:\\Users\\Administrator\\Desktop\\video_test.mp4", "mp4", 5, "C:\\Users\\Administrator\\Desktop\\shot.jpg")
+}
+
+// funcation DoTestSetConversationDraft() {
+// var test TestSetConversationDraft
+// open_im_sdk.SetConversationDraft("single_c93bc8b171cce7b9d1befb389abfe52f", "hah", test)
+//
+// }
+type TestSetConversationDraft struct {
+}
+
+func (t TestSetConversationDraft) OnError(errCode int32, errMsg string) {
+ fmt.Printf("SetConversationDraft , OnError %v\n", errMsg)
+}
+
+func (t TestSetConversationDraft) OnSuccess(data string) {
+ fmt.Printf("SetConversationDraft , OnSuccess %v\n", data)
+}
+
+type GetHistoryCallBack struct {
+ OperationID string
+ Data string
+}
+
+func (g GetHistoryCallBack) OnError(errCode int32, errMsg string) {
+ log.ZInfo(ctx, "GetHistoryCallBack err", "operationID", g.OperationID, "errCode", errCode, "errMsg", errMsg)
+}
+
+func (g GetHistoryCallBack) OnSuccess(data string) {
+ g.Data = data
+ log.ZInfo(ctx, "get History success ", "operationID", g.OperationID, "data", data)
+}
+
+type SetAppBadgeCallBack struct {
+ OperationID string
+}
+
+func (g SetAppBadgeCallBack) OnError(errCode int32, errMsg string) {
+ log.ZInfo(ctx, "SetAppBadgeCallBack err", "operationID", g.OperationID, "errCode", errCode, "errMsg", errMsg)
+}
+
+func (g SetAppBadgeCallBack) OnSuccess(data string) {
+ log.ZInfo(ctx, "SetAppBadgeCallBack success", "operationID", g.OperationID, "data", data)
+}
+
+type UpdateFcmTokenCallBack struct {
+ OperationID string
+}
+
+func (g UpdateFcmTokenCallBack) OnError(errCode int32, errMsg string) {
+ log.ZInfo(ctx, "UpdateFcmTokenCallBack err", "operationID", g.OperationID, "errCode", errCode, "errMsg", errMsg)
+}
+
+func (g UpdateFcmTokenCallBack) OnSuccess(data string) {
+ log.ZInfo(ctx, "UpdateFcmTokenCallBack success", "operationID", g.OperationID, "data", data)
+}
+
+type FindMessageListCallBack struct {
+ OperationID string
+}
+
+func (g FindMessageListCallBack) OnError(errCode int32, errMsg string) {
+ log.ZInfo(ctx, "FindMessageListCallBack err", "operationID", g.OperationID, "errCode", errCode, "errMsg", errMsg)
+}
+
+func (g FindMessageListCallBack) OnSuccess(data string) {
+ log.ZInfo(ctx, "FindMessageListCallBack success", "operationID", g.OperationID, "data", data)
+}
+
+type SetMessageReactionExtensionsCallBack struct {
+ OperationID string
+}
+
+func (g SetMessageReactionExtensionsCallBack) OnError(errCode int32, errMsg string) {
+ log.ZInfo(ctx, "SetMessageReactionExtensionsCallBack err", "operationID", g.OperationID, "errCode", errCode, "errMsg", errMsg)
+}
+
+func (g SetMessageReactionExtensionsCallBack) OnSuccess(data string) {
+ log.ZInfo(ctx, "SetMessageReactionExtensionsCallBack success", "operationID", g.OperationID, "data", data)
+}
+
+type AddMessageReactionExtensionsCallBack struct {
+ OperationID string
+}
+
+func (g AddMessageReactionExtensionsCallBack) OnError(errCode int32, errMsg string) {
+ log.ZInfo(ctx, "AddMessageReactionExtensionsCallBack err", "operationID", g.OperationID, "errCode", errCode, "errMsg", errMsg)
+}
+
+func (g AddMessageReactionExtensionsCallBack) OnSuccess(data string) {
+ log.ZInfo(ctx, "AddMessageReactionExtensionsCallBack success", "operationID", g.OperationID, "data", data)
+}
+
+type GetMessageListReactionExtensionsCallBack struct {
+ OperationID string
+}
+
+func (g GetMessageListReactionExtensionsCallBack) OnError(errCode int32, errMsg string) {
+ log.ZInfo(ctx, g.OperationID, "GetMessageListReactionExtensionsCallBack err", errCode, "errMsg", errMsg)
+}
+
+func (g GetMessageListReactionExtensionsCallBack) OnSuccess(data string) {
+ log.ZInfo(ctx, g.OperationID, "GetMessageListReactionExtensionsCallBack success", "data", data)
+}
+
+type GetHistoryReverseCallBack struct {
+ OperationID string
+}
+
+func (g GetHistoryReverseCallBack) OnError(errCode int32, errMsg string) {
+ log.ZInfo(ctx, g.OperationID, "GetHistoryReverseCallBack err", errCode, "errMsg", errMsg)
+}
+
+func (g GetHistoryReverseCallBack) OnSuccess(data string) {
+ log.ZInfo(ctx, g.OperationID, "GetHistoryReverseCallBack success", "data", data)
+}
+
+type SearchLocalMessagesCallBack struct {
+ OperationID string
+}
+
+func (g SearchLocalMessagesCallBack) OnError(errCode int32, errMsg string) {
+ log.ZInfo(ctx, g.OperationID, "SearchLocalMessagesCallBack err", errCode, "errMsg", errMsg)
+}
+
+func (g SearchLocalMessagesCallBack) OnSuccess(data string) {
+ fmt.Println(g.OperationID, "SearchLocalMessagesCallBack success", "data", data)
+}
+
+type MsgListenerCallBak struct {
+}
+
+func (m *MsgListenerCallBak) OnMsgDeleted(s string) {}
+
+func (m *MsgListenerCallBak) OnRecvOfflineNewMessage(message string) {
+ //TODO implement me
+ panic("implement me")
+}
+
+func (m *MsgListenerCallBak) OnRecvMessageExtensionsAdded(msgID string, reactionExtensionList string) {
+ fmt.Printf("OnRecvMessageExtensionsAdded", msgID, reactionExtensionList)
+ log.ZInfo(ctx, "internal", "OnRecvMessageExtensionsAdded", "msgID", msgID, "reactionExtensionList", reactionExtensionList)
+}
+
+func (m *MsgListenerCallBak) OnRecvGroupReadReceipt(groupMsgReceiptList string) {
+ //fmt.Println("OnRecvC2CReadReceipt , ", groupMsgReceiptList)
+}
+
+func (m *MsgListenerCallBak) OnNewRecvMessageRevoked(messageRevoked string) {
+ //fmt.Println("OnNewRecvMessageRevoked , ", messageRevoked)
+}
+
+func (m *MsgListenerCallBak) OnRecvMessageExtensionsChanged(msgID string, reactionExtensionList string) {
+ log.ZInfo(ctx, "internal", "OnRecvMessageExtensionsChanged", "msgID", msgID, "reactionExtensionList", reactionExtensionList)
+}
+
+func (m *MsgListenerCallBak) OnRecvMessageExtensionsDeleted(msgID string, reactionExtensionKeyList string) {
+ log.ZInfo(ctx, "internal", "OnRecvMessageExtensionsDeleted", "msgID", msgID, "reactionExtensionKeyList", reactionExtensionKeyList)
+}
+
+func (m *MsgListenerCallBak) OnRecvOnlineOnlyMessage(message string) {
+
+}
+
+type BatchMsg struct {
+}
+
+func (m *BatchMsg) OnRecvNewMessages(groupMsgReceiptList string) {
+ log.ZInfo(ctx, "OnRecvNewMessages", "groupMsgReceiptList", groupMsgReceiptList)
+}
+
+func (m *BatchMsg) OnRecvOfflineNewMessages(messageList string) {
+ log.ZInfo(ctx, "OnRecvOfflineNewMessages", "messageList", messageList)
+}
+
+func (m *MsgListenerCallBak) OnRecvNewMessage(msg string) {
+ var mm sdk_struct.MsgStruct
+ err := json.Unmarshal([]byte(msg), &mm)
+ if err != nil {
+ log.ZError(ctx, "Unmarshal failed", err, "msg", msg)
+ } else {
+ RecvMsgMapLock.Lock()
+ defer RecvMsgMapLock.Unlock()
+ t := SendRecvTime{SendIDRecvID: mm.SendID + mm.RecvID, RecvTime: utils.GetCurrentTimestampByMill()}
+ RecvAllMsg[mm.ClientMsgID] = &t
+ log.ZInfo(ctx, "", "OnRecvNewMessage callback", "ClientMsgID", mm.ClientMsgID, "SendID", mm.SendID, "RecvID", mm.RecvID)
+ }
+}
+
+type TestSearchLocalMessages struct {
+ OperationID string
+}
+
+func (t TestSearchLocalMessages) OnError(errCode int32, errMsg string) {
+ log.ZInfo(ctx, t.OperationID, "SearchLocalMessages , OnError", "errCode", errCode, "errMsg", errMsg)
+}
+
+func (t TestSearchLocalMessages) OnSuccess(data string) {
+ log.ZInfo(ctx, t.OperationID, "SearchLocalMessages , OnSuccess", "data", data)
+}
+
+//funcation DoTestSearchLocalMessages() {
+// var t TestSearchLocalMessages
+// operationID := utils.OperationIDGenerator()
+// t.OperationID = operationID
+// var p sdk_params_callback.SearchLocalMessagesParams
+// //p.SessionType = constant.SingleChatType
+// p.SourceID = "18090680773"
+// p.KeywordList = []string{}
+// p.SearchTimePeriod = 24 * 60 * 60 * 10
+// open_im_sdk.SearchLocalMessages(t, operationID, utils.StructToJsonString(p))
+//}
+
+type TestDeleteConversation struct {
+ OperationID string
+}
+
+func (t TestDeleteConversation) OnError(errCode int32, errMsg string) {
+ log.ZInfo(ctx, t.OperationID, "TestDeleteConversation , OnError", "errCode", errCode, "errMsg", errMsg)
+}
+
+func (t TestDeleteConversation) OnSuccess(data string) {
+ log.ZInfo(ctx, t.OperationID, "TestDeleteConversation , OnSuccess", "data", data)
+}
+
+func (m MsgListenerCallBak) OnRecvC2CReadReceipt(data string) {
+ fmt.Println("OnRecvC2CReadReceipt , ", data)
+}
+
+func (m MsgListenerCallBak) OnRecvMessageRevoked(msgId string) {
+ fmt.Println("OnRecvMessageRevoked ", msgId)
+}
+
+type conversationCallBack struct {
+ SyncFlag int
+}
+
+func (c *conversationCallBack) OnRecvMessageExtensionsChanged(msgID string, reactionExtensionList string) {
+ panic("implement me")
+}
+
+func (c *conversationCallBack) OnRecvMessageExtensionsDeleted(msgID string, reactionExtensionKeyList string) {
+ panic("implement me")
+}
+func (c *conversationCallBack) OnSyncServerProgress(progress int) {
+ log.ZInfo(ctx, utils.GetSelfFuncName(), "progress", progress)
+}
+
+func (c *conversationCallBack) OnSyncServerStart() {
+
+}
+
+func (c *conversationCallBack) OnSyncServerFinish() {
+ c.SyncFlag = 1
+ log.ZInfo(ctx, utils.GetSelfFuncName())
+}
+
+func (c *conversationCallBack) OnSyncServerFailed() {
+ log.ZInfo(ctx, utils.GetSelfFuncName())
+}
+
+func (c *conversationCallBack) OnNewConversation(conversationList string) {
+ log.ZInfo(ctx, "OnNewConversation returnList is", conversationList)
+}
+
+func (c *conversationCallBack) OnConversationChanged(conversationList string) {
+ log.ZInfo(ctx, "OnConversationChanged. ", "returnList is", conversationList)
+}
+
+func (c *conversationCallBack) OnTotalUnreadMessageCountChanged(totalUnreadCount int32) {
+ log.ZInfo(ctx, "OnTotalUnreadMessageCountChanged returnTotalUnreadCount is", totalUnreadCount)
+}
+
+func (c *conversationCallBack) OnConversationUserInputStatusChanged(change string) {
+
+}
+
+type testMarkC2CMessageAsRead struct {
+}
+
+func (testMarkC2CMessageAsRead) OnSuccess(data string) {
+ fmt.Println(" testMarkC2CMessageAsRead OnSuccess", data)
+}
+
+func (testMarkC2CMessageAsRead) OnError(code int32, msg string) {
+ fmt.Println("testMarkC2CMessageAsRead, OnError", code, msg)
+}
+
+//funcation DoTestMarkC2CMessageAsRead() {
+// var test testMarkC2CMessageAsRead
+// readid := "2021-06-23 12:25:36-7eefe8fc74afd7c6adae6d0bc76929e90074d5bc-8522589345510912161"
+// var xlist []string
+// xlist = append(xlist, readid)
+// jsonid, _ := json.Marshal(xlist)
+// open_im_sdk.MarkC2CMessageAsRead(test, Friend_uid, string(jsonid))
+//}
+
+type SendRecvTime struct {
+ SendTime int64
+ SendSeccCallbackTime int64
+ RecvTime int64
+ SendIDRecvID string
+}
+
+var SendSuccAllMsg map[string]*SendRecvTime //msgid->send+recv:
+var SendFailedAllMsg map[string]string
+var RecvAllMsg map[string]*SendRecvTime //msgid->send+recv
+var SendMsgMapLock sync.RWMutex
+var RecvMsgMapLock sync.RWMutex
+
+func init() {
+ SendSuccAllMsg = make(map[string]*SendRecvTime)
+ SendFailedAllMsg = make(map[string]string)
+ RecvAllMsg = make(map[string]*SendRecvTime)
+
+}
+
+func DoTestSetAppBackgroundStatus(isBackground bool) {
+ var testSendMsg TestSendMsgCallBack
+ operationID := utils.OperationIDGenerator()
+ open_im_sdk.SetAppBackgroundStatus(&testSendMsg, operationID, isBackground)
+}
+func DoTestSendMsg2(sendId, recvID string) {
+ m := "Single chat test" + sendId + ":" + recvID + ":"
+ operationID := utils.OperationIDGenerator()
+ s := DoTestCreateTextMessage(m)
+ log.ZInfo(ctx, "send msg:", "operationID", operationID, "message", s) // äŋŽæšæ¤čĄ
+ var testSendMsg TestSendMsgCallBack
+ testSendMsg.OperationID = operationID
+ o := sdkws.OfflinePushInfo{}
+ o.Title = "121313"
+ o.Desc = "45464"
+ open_im_sdk.SendMessage(&testSendMsg, operationID, s, recvID, "", utils.StructToJsonString(o), false)
+ log.ZInfo(ctx, utils.GetSelfFuncName(), "success", "sendId", sendId, "recvID", recvID) // äŋŽæšæ¤čĄ
+}
+
+func DoTestSendMsg2Group(sendId, groupID string, index int) {
+ m := "test: " + sendId + " : " + groupID + " : " + utils.IntToString(index)
+ operationID := utils.OperationIDGenerator()
+ s := DoTestCreateTextMessage(m)
+ log.ZInfo(ctx, "send msg:", "operationID", operationID, "message", s) // äŋŽæšæ¤čĄ
+ var testSendMsg TestSendMsgCallBack
+ testSendMsg.OperationID = operationID
+ o := sdkws.OfflinePushInfo{}
+ o.Title = "Title"
+ o.Desc = "Desc"
+ open_im_sdk.SendMessage(&testSendMsg, operationID, s, "", groupID, utils.StructToJsonString(o), false)
+ log.ZInfo(ctx, utils.GetSelfFuncName(), "success") // äŋŽæšæ¤čĄ
+}
+
+func DoTestSendMsg2GroupWithMessage(sendId, groupID string, message string) {
+ operationID := utils.OperationIDGenerator()
+ s := DoTestCreateTextMessage(message)
+ log.ZInfo(ctx, "send msg:", "operationID", operationID, "message", s) // äŋŽæšæ¤čĄ
+ var testSendMsg TestSendMsgCallBack
+ testSendMsg.OperationID = operationID
+ o := sdkws.OfflinePushInfo{}
+ o.Title = "Title"
+ o.Desc = "Desc"
+ open_im_sdk.SendMessage(&testSendMsg, operationID, s, "", groupID, utils.StructToJsonString(o), false)
+ log.ZInfo(ctx, utils.GetSelfFuncName(), "success") // äŋŽæšæ¤čĄ
+}
+
+func DoTestSendMsg2c2c(sendId, recvID string, index int) {
+ m := "test: " + sendId + " : " + recvID + " : " + utils.IntToString(index)
+ operationID := utils.OperationIDGenerator()
+ s := DoTestCreateTextMessage(m)
+ log.ZInfo(ctx, "send msg:", "operationID", operationID, "message", s) // äŋŽæšæ¤čĄ
+ var testSendMsg TestSendMsgCallBack
+ testSendMsg.OperationID = operationID
+ o := sdkws.OfflinePushInfo{}
+ o.Title = "Title"
+ o.Desc = "Desc"
+ open_im_sdk.SendMessage(&testSendMsg, operationID, s, recvID, "", utils.StructToJsonString(o), false)
+ log.ZInfo(ctx, utils.GetSelfFuncName(), "success") // äŋŽæšæ¤čĄ
+}
+
+type TestMarkGroupMessageAsRead struct {
+ OperationID string
+}
+
+func (t TestMarkGroupMessageAsRead) OnError(errCode int32, errMsg string) {
+
+ log.ZInfo(ctx, "TestMarkGroupMessageAsRead , OnError", "operationID", t.OperationID, "errMsg", errMsg) // äŋŽæšæ¤čĄ
+}
+
+func (t TestMarkGroupMessageAsRead) OnSuccess(data string) {
+ log.ZInfo(ctx, "TestMarkGroupMessageAsRead , OnSuccess", "operationID", t.OperationID, "data", data) // äŋŽæšæ¤čĄ
+}
+
+func DoTestSendMsg(index int, sendId, recvID string, groupID string, idx string) {
+ m := "test msg " + sendId + ":" + recvID + ":" + idx
+ operationID := utils.OperationIDGenerator()
+ ctx := mcontext.NewCtx(operationID)
+ s, err := allLoginMgr[index].mgr.Conversation().CreateTextMessage(ctx, m)
+ if err != nil {
+ log.ZError(ctx, "CreateTextMessage", err, "operationID", operationID)
+ return
+ }
+
+ var testSendMsg TestSendMsgCallBack
+ testSendMsg.OperationID = operationID
+ testSendMsg.sendTime = utils.GetCurrentTimestampByMill()
+ o := sdkws.OfflinePushInfo{}
+ o.Title = "title"
+ o.Desc = "desc"
+ testSendMsg.sendID = sendId
+ testSendMsg.recvID = recvID
+ testSendMsg.groupID = groupID
+ testSendMsg.msgID = s.ClientMsgID
+ log.ZInfo(ctx, "SendMessage", "operationID", operationID, "sendId", sendId, "recvID", recvID, "groupID", groupID, "msgID",
+ testSendMsg.msgID, "index", index)
+ if recvID != "" {
+ allLoginMgr[index].mgr.Conversation().SendMessage(ctx, s, recvID, "", &o, false)
+ } else {
+ allLoginMgr[index].mgr.Conversation().SendMessage(ctx, s, "", groupID, &o, false)
+ }
+ SendMsgMapLock.Lock()
+ defer SendMsgMapLock.Unlock()
+ x := SendRecvTime{SendTime: utils.GetCurrentTimestampByMill()}
+ SendSuccAllMsg[testSendMsg.msgID] = &x
+}
+
+//
+//funcation DoTestSendMsgPress(index int, sendId, recvID string, idx string) {
+// m := "test msg " + sendId + ":" + recvID + ":" + idx
+// operationID := utils.OperationIDGenerator()
+// s := DoTestCreateTextMessageReliability(allLoginMgr[index].mgr, m)
+// var mstruct sdk_struct.MsgStruct
+// _ = json.Unmarshal([]byte(s), &mstruct)
+//
+// var testSendMsg TestSendMsgCallBackPress
+// testSendMsg.OperationID = operationID
+// o := server_api_params.OfflinePushInfo{}
+// o.Title = "title"
+// o.Desc = "desc"
+// testSendMsg.sendID = sendId
+// testSendMsg.recvID = recvID
+// testSendMsg.msgID = mstruct.ClientMsgID
+//
+// log.Warn(operationID, "SendMessage", sendId, recvID, testSendMsg.msgID, index)
+//
+// allLoginMgr[index].mgr.Conversation().SendMessage(&testSendMsg, s, recvID, "", utils.StructToJsonString(o), operationID)
+//}
+
+func DoTestSendImageMsg(recvID string) {
+ operationID := utils.OperationIDGenerator()
+ s := DoTestCreateImageMessageFromFullPath()
+ var testSendMsg TestSendMsgCallBack
+ testSendMsg.OperationID = operationID
+ o := sdkws.OfflinePushInfo{}
+ o.Title = "121313"
+ o.Desc = "45464"
+ open_im_sdk.SendMessage(&testSendMsg, operationID, s, recvID, "", utils.StructToJsonString(o), false)
+}
+
+//funcation DotestUploadFile() {
+// operationID := utils.OperationIDGenerator()
+// var testSendMsg TestSendMsgCallBack
+// open_im_sdk.UploadFile(&testSendMsg, operationID, "C:\\Users\\Administrator\\Desktop\\video_test.mp4")
+//}
+
+func DoTestSendOtherMsg(sendId, recvID string) {
+ operationID := utils.OperationIDGenerator()
+ s := DoTestCreateOtherMessageFromFullPath()
+ var testSendMsg TestSendMsgCallBack
+ testSendMsg.OperationID = operationID
+ o := sdkws.OfflinePushInfo{}
+ o.Title = "121313"
+ o.Desc = "45464"
+ open_im_sdk.SendMessage(&testSendMsg, operationID, s, recvID, "", utils.StructToJsonString(o), false)
+}
+
+func DoTestSendVideo(sendId, recvID string) {
+ operationID := utils.OperationIDGenerator()
+ s := DoTestCreateVideoMessageFromFullPath()
+ var testSendMsg TestSendMsgCallBack
+ testSendMsg.OperationID = operationID
+ o := sdkws.OfflinePushInfo{}
+ o.Title = "121313"
+ o.Desc = "45464"
+ log.ZInfo(ctx, "SendMessage", "operationID", operationID, "message", s)
+ open_im_sdk.SendMessage(&testSendMsg, operationID, s, recvID, "", utils.StructToJsonString(o), false)
+}
+
+type TestClearMsg struct {
+ OperationID string
+}
+
+func (t *TestClearMsg) OnError(errCode int32, errMsg string) {
+ log.ZInfo(ctx, "TestClearMsg OnError", "operationID", t.OperationID, "errCode", errCode, "errMsg", errMsg)
+}
+
+func (t *TestClearMsg) OnSuccess(data string) {
+ log.ZInfo(ctx, "TestClearMsg OnSuccess", "operationID", t.OperationID, "data", data)
+}
+
+func DoTestClearMsg() {
+ var test TestClearMsg
+ operationID := utils.OperationIDGenerator()
+ open_im_sdk.DeleteAllMsgFromLocalAndSvr(&test, operationID)
+
+}
+
+type TestModifyGroupMessageReaction struct {
+ OperationID string
+}
+
+func (t *TestModifyGroupMessageReaction) OnError(errCode int32, errMsg string) {
+ log.ZInfo(ctx, "TestModifyGroupMessageReaction OnError", "operationID", t.OperationID, "errCode", errCode, "errMsg", errMsg)
+}
+
+func (t *TestModifyGroupMessageReaction) OnSuccess(data string) {
+ log.ZInfo(ctx, "TestModifyGroupMessageReaction OnSuccess", "operationID", t.OperationID, "data", data)
+}
+
+func DoTestGetSelfUserInfo() {
+ var test TestModifyGroupMessageReaction
+ open_im_sdk.GetSelfUserInfo(&test, "s")
+}
diff --git a/go/chao-sdk-core/test/t_friend_sdk.go b/go/chao-sdk-core/test/t_friend_sdk.go
new file mode 100644
index 0000000..6a38595
--- /dev/null
+++ b/go/chao-sdk-core/test/t_friend_sdk.go
@@ -0,0 +1,792 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package test
+
+import (
+ "encoding/json"
+ "errors"
+ "fmt"
+ "github.com/openimsdk/openim-sdk-core/v3/open_im_sdk"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/ccontext"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/sdk_params_callback"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/sdk_struct"
+ "github.com/openimsdk/tools/log"
+ X "log"
+ "os"
+ "runtime"
+ "time"
+
+ "github.com/openimsdk/protocol/sdkws"
+
+ "github.com/openimsdk/tools/mcontext"
+)
+
+var loggerf *X.Logger
+
+func init() {
+ loggerf = X.New(os.Stdout, "", X.Llongfile|X.Ltime|X.Ldate)
+}
+
+type TestSendImg struct {
+}
+
+func (TestSendImg) OnSuccess(data string) {
+ fmt.Println("testSendImg, OnSuccess, output: ", data)
+}
+
+func (TestSendImg) OnError(code int, msg string) {
+ fmt.Println("testSendImg, OnError, ", code, msg)
+}
+
+func (TestSendImg) OnProgress(progress int) {
+ fmt.Println("progress: ", progress)
+}
+
+func TestLog(v ...interface{}) {
+ //X.SetFlags(X.Lshortfile | X.LstdFlags)
+ loggerf.Println(v)
+ a, b, c, d := runtime.Caller(1)
+ X.Println(a, b, c, d)
+}
+
+var Friend_uid = "3126758667"
+
+func SetTestFriendID(friendUserID string) {
+ Friend_uid = friendUserID
+}
+
+///////////////////////////////////////////////////////////
+
+type testGetFriendApplicationList struct {
+ baseCallback
+}
+
+func DoTestGetFriendApplicationList() {
+ var test testGetFriendApplicationList
+ test.OperationID = utils.OperationIDGenerator()
+ log.ZInfo(ctx, test.OperationID, utils.GetSelfFuncName(), "input ")
+ // open_im_sdk.GetRecvFriendApplicationList(test, test.OperationID)
+}
+
+// ////////////////////////////////////////////////////////`
+type testSetSelfInfo struct {
+ baseCallback
+}
+
+func DoTestSetSelfInfo() {
+ var test testSetSelfInfo
+ test.OperationID = utils.OperationIDGenerator()
+ userInfo := sdkws.UserInfo{}
+ userInfo.Nickname = "new 4444444444444 Gordon001"
+ jsonString := utils.StructToJsonStringDefault(userInfo)
+ fmt.Println("SetSelfInfo, input: ")
+ open_im_sdk.SetSelfInfo(test, test.OperationID, jsonString)
+}
+
+// ///////////////////////////////////////////////////////
+type testGetUsersInfo struct {
+ baseCallback
+}
+
+func DoTestGetUsersInfo() {
+ var test testGetUsersInfo
+ test.OperationID = utils.OperationIDGenerator()
+ userIDList := []string{"4950399653"}
+ list := utils.StructToJsonStringDefault(userIDList)
+ fmt.Println("testGetUsersInfo, input: ", list)
+ open_im_sdk.GetUsersInfo(test, test.OperationID, list)
+}
+
+// ///////////////////////////////////////////////////////
+type testGetFriendsInfo struct {
+ uid []string //`json:"uidList"`
+}
+
+func (testGetFriendsInfo) OnSuccess(data string) {
+ fmt.Println("DoTestGetDesignatedFriendsInfo, OnSuccess, output: ", data)
+}
+
+func (testGetFriendsInfo) OnError(code int32, msg string) {
+ fmt.Println("DoTestGetDesignatedFriendsInfo, OnError, ", code, msg)
+}
+
+func DoTestGetDesignatedFriendsInfo() {
+ var test testGetFriendsInfo
+ test.uid = append(test.uid, Friend_uid)
+
+ jsontest, _ := json.Marshal(test.uid)
+ fmt.Println("testGetFriendsInfo, input: ", string(jsontest))
+ // open_im_sdk.GetDesignatedFriendsInfo(test, "xxxxxxxxxxx", string(jsontest))
+}
+
+// /////////////////////////////////////////////////////
+type testAddToBlackList struct {
+ OperationID string
+}
+
+func (t testAddToBlackList) OnSuccess(string) {
+ log.ZInfo(ctx, t.OperationID, "testAddToBlackList, OnSuccess")
+}
+
+func (t testAddToBlackList) OnError(code int32, msg string) {
+ log.ZInfo(ctx, t.OperationID, "testAddToBlackList, OnError, ", code, msg)
+}
+
+func DoTestAddToBlackList(userID string) {
+ var test testAddToBlackList
+ test.OperationID = utils.OperationIDGenerator()
+ open_im_sdk.AddBlack(test, test.OperationID, userID, "")
+}
+
+// /////////////////////////////////////////////////////
+type testDeleteFromBlackList struct {
+ baseCallback
+}
+
+func DoTestDeleteFromBlackList(userID string) {
+ var test testDeleteFromBlackList
+ test.OperationID = utils.OperationIDGenerator()
+ open_im_sdk.RemoveBlack(test, test.OperationID, userID)
+}
+
+// ////////////////////////////////////////////////////
+type testGetBlackList struct {
+ OperationID string
+}
+
+func (t testGetBlackList) OnSuccess(data string) {
+ log.ZInfo(ctx, t.OperationID, "testGetBlackList, OnSuccess, output: ", data)
+}
+func (t testGetBlackList) OnError(code int32, msg string) {
+ log.ZInfo(ctx, t.OperationID, "testGetBlackList, OnError, ", code, msg)
+}
+func DoTestGetBlackList() {
+ var test testGetBlackList
+ test.OperationID = utils.OperationIDGenerator()
+ open_im_sdk.GetBlackList(test, test.OperationID)
+}
+
+//////////////////////////////////////////////////////
+
+type testCheckFriend struct {
+ OperationID string
+}
+
+func (t testCheckFriend) OnSuccess(data string) {
+ log.ZInfo(ctx, t.OperationID, "testCheckFriend, OnSuccess, output: ", data)
+}
+func (t testCheckFriend) OnError(code int32, msg string) {
+ log.ZInfo(ctx, t.OperationID, "testCheckFriend, OnError, ", code, msg)
+}
+func DoTestCheckFriend() {
+ var test testCheckFriend
+ test.OperationID = utils.OperationIDGenerator()
+ userIDList := []string{"openIM100"}
+ list := utils.StructToJsonString(userIDList)
+ fmt.Println("CheckFriend, input: ", list)
+ open_im_sdk.CheckFriend(test, test.OperationID, list)
+}
+
+// /////////////////////////////////////////////////////////
+type testSetFriendRemark struct {
+ baseCallback
+}
+
+func DotestSetFriendRemark() {
+ var test testSetFriendRemark
+ test.OperationID = utils.OperationIDGenerator()
+
+ var param sdk_params_callback.SetFriendRemarkParams
+ param.ToUserID = Friend_uid
+ param.Remark = "4444 "
+ jsontest := utils.StructToJsonString(param)
+ log.ZInfo(ctx, test.OperationID, utils.GetSelfFuncName(), "input ", jsontest)
+ open_im_sdk.SetFriendRemark(test, test.OperationID, jsontest)
+}
+
+/////////////////////
+////////////////////////////////////////////////////////
+
+type testDeleteFriend struct {
+ baseCallback
+}
+
+func DotestDeleteFriend(userID string) {
+ var test testDeleteFriend
+ test.OperationID = utils.OperationIDGenerator()
+ open_im_sdk.DeleteFriend(test, test.OperationID, userID)
+}
+
+// /////////////////////////////////////////////////////
+// ///////////////////////////////////////////////////////
+type testaddFriend struct {
+ OperationID string
+}
+
+func (t testaddFriend) OnSuccess(data string) {
+ log.ZInfo(ctx, t.OperationID, "testaddFriend, OnSuccess", data)
+}
+func (t testaddFriend) OnError(code int32, msg string) {
+ log.ZInfo(ctx, t.OperationID, "testaddFriend, OnError", code, msg)
+}
+
+func DoTestAddFriend() {
+ var test testaddFriend
+ test.OperationID = utils.OperationIDGenerator()
+ params := sdk_params_callback.AddFriendParams{
+ ToUserID: Friend_uid,
+ ReqMsg: "777777777777777777777777",
+ }
+ jsontestaddFriend := utils.StructToJsonString(params)
+ log.ZInfo(ctx, test.OperationID, "addFriend input:", jsontestaddFriend)
+ open_im_sdk.AddFriend(test, test.OperationID, jsontestaddFriend)
+}
+
+////////////////////////////////////////////////////////////////////
+
+// ///////////////////////////////////////////////////////
+type testGetSendFriendApplicationList struct {
+ OperationID string
+}
+
+func (t testGetSendFriendApplicationList) OnSuccess(data string) {
+ log.ZInfo(ctx, t.OperationID, "testGetSendFriendApplicationList, OnSuccess", data)
+}
+func (t testGetSendFriendApplicationList) OnError(code int32, msg string) {
+ log.ZInfo(ctx, t.OperationID, "testGetSendFriendApplicationList, OnError", code, msg)
+}
+
+func DoTestGetSendFriendApplicationList() {
+ var test testGetSendFriendApplicationList
+ test.OperationID = utils.OperationIDGenerator()
+ log.ZInfo(ctx, test.OperationID, "GetSendFriendApplicationList input:")
+ // open_im_sdk.GetSendFriendApplicationList(test, test.OperationID)
+}
+
+////////////////////////////////////////////////////////////////////
+
+type testGetFriendList struct {
+ baseCallback
+}
+
+func DotestGetFriendList() {
+ var test testGetFriendList
+ test.OperationID = utils.OperationIDGenerator()
+ log.ZInfo(ctx, test.OperationID, utils.GetSelfFuncName(), "input ")
+ open_im_sdk.GetFriendList(test, test.OperationID)
+}
+
+type testSearchFriends struct {
+ baseCallback
+}
+
+func DotestSearchFriends() {
+ var test testSearchFriends
+ test.OperationID = utils.OperationIDGenerator()
+ test.callName = "SearchFriends"
+ var params sdk_params_callback.SearchFriendsParam
+ params.KeywordList = []string{"G"}
+ params.IsSearchUserID = true
+ params.IsSearchNickname = true
+ params.IsSearchRemark = true
+ log.ZInfo(ctx, test.OperationID, utils.GetSelfFuncName(), "input ", params)
+ open_im_sdk.SearchFriends(test, test.OperationID, utils.StructToJsonString(params))
+}
+
+/////////////////////////////////////////////////////////////////////
+
+type testAcceptFriendApplication struct {
+ baseCallback
+}
+
+func DoTestAcceptFriendApplication() {
+ var test testAcceptFriendApplication
+ test.OperationID = utils.OperationIDGenerator()
+ var param sdk_params_callback.ProcessFriendApplicationParams
+ param.HandleMsg = "ok ok "
+ param.ToUserID = Friend_uid
+ input := utils.StructToJsonString(param)
+ open_im_sdk.AcceptFriendApplication(test, test.OperationID, input)
+}
+
+type testRefuseFriendApplication struct {
+ baseCallback
+}
+
+func DoTestRefuseFriendApplication() {
+ var test testRefuseFriendApplication
+ test.OperationID = utils.OperationIDGenerator()
+ var param sdk_params_callback.ProcessFriendApplicationParams
+ param.HandleMsg = "nonono"
+ param.ToUserID = Friend_uid
+ input := utils.StructToJsonString(param)
+ open_im_sdk.RefuseFriendApplication(test, test.OperationID, input)
+}
+
+/*
+type testRefuseFriendApplication struct {
+ ui2AcceptFriend
+}
+
+func (testRefuseFriendApplication) OnSuccess(info string) {
+ fmt.Println("RefuseFriendApplication OnSuccess", info)
+}
+func (testRefuseFriendApplication) OnError(code int, msg string) {
+ fmt.Println("RefuseFriendApplication, OnError, ", code, msg)
+}
+*/
+/*
+func DoTestRefuseFriendApplication() {
+
+ var test testRefuseFriendApplication
+ test.UID = Friend_uid
+
+ js, _ := json.Marshal(test)
+ RefuseFriendApplication(test, string(js))
+ fmt.Println("RefuseFriendApplication, input: ", string(js))
+}
+
+
+*/
+
+/////////////////////////////////////////////////////////////////////
+
+//type testRefuseFriendApplication struct {
+// open_im_sdk.ui2AcceptFriend
+//}
+//
+//func (testRefuseFriendApplication) OnSuccess(info string) {
+// fmt.Println("testRefuseFriendApplication OnSuccess", info)
+//}
+//func (testRefuseFriendApplication) OnError(code int32, msg string) {
+// fmt.Println("testRefuseFriendApplication, OnError, ", code, msg)
+//}
+//func DoTestRefuseFriendApplication() {
+// var testRefuseFriendApplication testRefuseFriendApplication
+// testRefuseFriendApplication.ui2AcceptFriend = Friend_uid
+//
+// jsontestfusetFriendappclicatrion, _ := json.Marshal(testRefuseFriendApplication.UID)
+// open_im_sdk.RefuseFriendApplication(testRefuseFriendApplication, string(jsontestfusetFriendappclicatrion), "")
+// fmt.Println("RefuseFriendApplication, input: ", string(jsontestfusetFriendappclicatrion))
+//}
+
+////////////////////////////////////////////////////////////////////
+
+func SetListenerAndLogin(uid, tk string) {
+ //
+ //var testConversation conversationCallBack
+ //open_im_sdk.SetConversationListener(&testConversation)
+ //
+ //var testUser userCallback
+ //open_im_sdk.SetUserListener(testUser)
+ //
+ //var msgCallBack MsgListenerCallBak
+ //open_im_sdk.SetAdvancedMsgListener(&msgCallBack)
+ //
+ //var batchMsg BatchMsg
+ //open_im_sdk.SetBatchMsgListener(&batchMsg)
+ //
+ //var friendListener testFriendListener
+ //open_im_sdk.SetFriendListener(friendListener)
+ //
+ //var groupListener testGroupListener
+ //open_im_sdk.SetGroupListener(groupListener)
+ //var signalingListener testSignalingListener
+ //open_im_sdk.SetSignalingListener(&signalingListener)
+ //
+ //var organizationListener testOrganizationListener
+ //open_im_sdk.SetOrganizationListener(organizationListener)
+ //
+ //var workMomentsListener testWorkMomentsListener
+ //open_im_sdk.SetWorkMomentsListener(workMomentsListener)
+
+ //InOutlllogin(uid, tk)
+
+ log.ZWarn(ctx, "SetListenerAndLogin fin", errors.New(""))
+}
+
+func lllogin(uid, tk string) bool {
+ var callback BaseSuccessFailed
+ callback.funcName = utils.GetSelfFuncName()
+ operationID := utils.OperationIDGenerator()
+ open_im_sdk.Login(&callback, uid, operationID, tk)
+
+ for true {
+ if callback.errCode == 1 {
+ fmt.Println("success code 1")
+ return true
+ } else if callback.errCode == -1 {
+ fmt.Println("failed code -1")
+ return false
+ } else {
+ fmt.Println("code sleep")
+ time.Sleep(1 * time.Second)
+ continue
+ }
+ }
+ return true
+}
+func ReliabilityInitAndLogin(index int, uid, tk, ws, api string) {
+ var cf sdk_struct.IMConfig
+ cf.ApiAddr = api
+ cf.WsAddr = ws
+ cf.PlatformID = 1
+ cf.DataDir = "./"
+ cf.IsLogStandardOutput = true
+ cf.LogLevel = uint32(LogLevel)
+
+ operationID := utils.OperationIDGenerator()
+
+ ctx := mcontext.NewCtx(operationID)
+ var testinit testInitLister
+ lg := new(open_im_sdk.LoginMgr)
+ log.ZInfo(ctx, "DoReliabilityTest", "UID", uid, "Token", tk, "WS", ws, "API", api)
+ log.ZInfo(ctx, "New login manager ", "OperationID", operationID)
+
+ allLoginMgr[index].mgr = lg
+ lg.InitSDK(cf, &testinit)
+
+ ctx = ccontext.WithOperationID(lg.Context(), operationID)
+
+ log.ZInfo(ctx, "Initialized SDK with config", "Config", cf)
+
+ var testConversation conversationCallBack
+ lg.SetConversationListener(&testConversation)
+
+ var testUser userCallback
+ lg.SetUserListener(testUser)
+
+ var msgCallBack MsgListenerCallBak
+ lg.SetAdvancedMsgListener(&msgCallBack)
+
+ var friendListener testFriendListener
+ lg.SetFriendListener(friendListener)
+
+ var groupListener testGroupListener
+ lg.SetGroupListener(groupListener)
+
+ var callback BaseSuccessFailed
+ callback.funcName = utils.GetSelfFuncName()
+
+ for {
+ if callback.errCode == 1 && testConversation.SyncFlag == 1 {
+ lg.User().GetSelfUserInfo(ctx)
+ return
+ }
+ }
+}
+
+func PressInitAndLogin(index int, uid, tk, ws, api string) {
+ var cf sdk_struct.IMConfig
+ cf.ApiAddr = api
+ cf.WsAddr = ws
+ cf.PlatformID = 1
+ cf.DataDir = "./"
+ cf.LogLevel = uint32(LogLevel)
+
+ operationID := utils.OperationIDGenerator()
+ ctx := mcontext.NewCtx(operationID)
+ var testinit testInitLister
+ lg := new(open_im_sdk.LoginMgr)
+ log.ZInfo(ctx, "DoReliabilityTest", "UID", uid, "Token", tk, "WS", ws, "API", api)
+
+ log.ZInfo(ctx, "New login manager ", "OperationID", operationID)
+
+ allLoginMgr[index].mgr = lg
+ lg.InitSDK(cf, &testinit)
+
+ log.ZInfo(ctx, "Initialized SDK with config", "Config", cf)
+
+ var testConversation conversationCallBack
+ lg.SetConversationListener(&testConversation)
+
+ var testUser userCallback
+ lg.SetUserListener(testUser)
+
+ var msgCallBack MsgListenerCallBak
+ lg.SetAdvancedMsgListener(&msgCallBack)
+
+ var friendListener testFriendListener
+ lg.SetFriendListener(friendListener)
+
+ var groupListener testGroupListener
+ lg.SetGroupListener(groupListener)
+
+ err := lg.Login(ctx, uid, tk)
+ if err != nil {
+ log.ZError(ctx, "Login failed", err, "OperationID", operationID)
+ }
+}
+
+func DoTest(uid, tk, ws, api string) {
+ var cf sdk_struct.IMConfig
+ cf.ApiAddr = api // "http://120.24.45.199:10000"
+ cf.WsAddr = ws //"ws://120.24.45.199:17778"
+ cf.PlatformID = 1
+ cf.DataDir = "./"
+
+ var s string
+ b, _ := json.Marshal(cf)
+ s = string(b)
+ fmt.Println(s)
+ var testinit testInitLister
+ operationID := utils.OperationIDGenerator()
+ if !open_im_sdk.InitSDK(&testinit, operationID, s) {
+ log.ZError(ctx, "InitSDK failed", errors.New("InitSDK failed"))
+ return
+ }
+
+ var testConversation conversationCallBack
+ open_im_sdk.SetConversationListener(&testConversation)
+
+ var testUser userCallback
+ open_im_sdk.SetUserListener(testUser)
+
+ //var msgCallBack MsgListenerCallBak
+ //open_im_sdk.AddAdvancedMsgListener(msgCallBack)
+
+ var friendListener testFriendListener
+ open_im_sdk.SetFriendListener(friendListener)
+
+ var groupListener testGroupListener
+ open_im_sdk.SetGroupListener(groupListener)
+
+ time.Sleep(1 * time.Second)
+
+ for !lllogin(uid, tk) {
+ fmt.Println("lllogin, failed, login...")
+ time.Sleep(1 * time.Second)
+ }
+
+}
+
+////////////////////////////////////////////////////////////////////
+
+type TestSendMsgCallBack struct {
+ msg string
+ OperationID string
+ sendID string
+ recvID string
+ msgID string
+ sendTime int64
+ recvTime int64
+ groupID string
+}
+
+func (t *TestSendMsgCallBack) OnError(errCode int32, errMsg string) {
+ log.ZError(ctx, "test_openim: send msg failed: ", errors.New("test_openim: send msg failed: "),
+ "operationID", t.OperationID, "errCode", errCode, "errMsg", errMsg, "msgID", t.msgID, "msg", t.msg)
+ SendMsgMapLock.Lock()
+ defer SendMsgMapLock.Unlock()
+ SendFailedAllMsg[t.msgID] = t.sendID + t.recvID
+
+}
+
+func (t *TestSendMsgCallBack) OnSuccess(data string) {
+ log.ZInfo(ctx, "test_openim: send msg success: |", "operationID", t.OperationID,
+ "msgID", t.msgID, "msg", t.msg, "data", data)
+ SendMsgMapLock.Lock()
+ defer SendMsgMapLock.Unlock()
+ //k, _ := SendSuccAllMsg[t.msgID]
+ //k.SendSeccCallbackTime = utils.GetCurrentTimestampByMill()
+ //k.SendIDRecvID = t.sendID + t.recvID
+}
+
+func (t *TestSendMsgCallBack) OnProgress(progress int) {
+ // fmt.Printf("msg_send , onProgress %d\n", progress)
+}
+
+type TestSendMsgCallBackPress struct {
+ msg string
+ OperationID string
+ sendID string
+ recvID string
+ msgID string
+}
+
+func (t *TestSendMsgCallBackPress) OnError(errCode int32, errMsg string) {
+ log.ZWarn(ctx, "TestSendMsgCallBackPress: send msg failed: |", errors.New(""), "operationID", t.OperationID, "errCode",
+ errCode, "errMsg", errMsg, "msgID", t.msgID, "msg", t.msg)
+}
+
+func (t *TestSendMsgCallBackPress) OnSuccess(data string) {
+ log.ZInfo(ctx, "TestSendMsgCallBackPress: send msg success: |", "operationID", t.OperationID, "msgID", t.msgID, "msg", t.msg)
+}
+
+func (t *TestSendMsgCallBackPress) OnProgress(progress int) {
+ // fmt.Printf("msg_send , onProgress %d\n", progress)
+}
+
+type BaseSuccessFailedTest struct {
+ successData string
+ errCode int
+ errMsg string
+ funcName string
+}
+
+func (b *BaseSuccessFailedTest) OnError(errCode int32, errMsg string) {
+ b.errCode = -1
+ b.errMsg = errMsg
+ fmt.Println("22onError ", b.funcName, errCode, errMsg)
+}
+
+func (b *BaseSuccessFailedTest) OnSuccess(data string) {
+ b.errCode = 1
+ b.successData = data
+ fmt.Println("22OnSuccess: ", b.funcName, data)
+}
+
+func InOutDoTestSendMsg(sendId, receiverID string) {
+ m := "test:" + sendId + ":" + receiverID + ":"
+ //s := CreateTextMessage(m)
+ var testSendMsg TestSendMsgCallBack
+ // testSendMsg.msg = SendMessage(&testSendMsg, s, receiverID, "", false)
+ fmt.Println("func send ", m, testSendMsg.msg)
+ fmt.Println("test to recv : ", receiverID)
+}
+
+//func DoTestGetAllConversationList() {
+// var test TestGetAllConversationListCallBack
+// open_im_sdk.GetAllConversationList(test)
+//}
+
+type userCallback struct {
+}
+
+func (c userCallback) OnUserStatusChanged(statusMap string) {
+ log.ZInfo(ctx, "User Status Changed", "statusMap", statusMap)
+}
+
+func (userCallback) OnSelfInfoUpdated(callbackData string) {
+ log.ZInfo(ctx, "Self Info Updated", "callbackData", callbackData)
+}
+func (userCallback) OnUserCommandAdd(callbackData string) {
+ log.ZInfo(ctx, "User Command Added", "callbackData", callbackData)
+}
+func (userCallback) OnUserCommandUpdate(callbackData string) {
+ log.ZInfo(ctx, "User Command Updated", "callbackData", callbackData)
+}
+func (userCallback) OnUserCommandDelete(callbackData string) {
+ log.ZInfo(ctx, "User Command Deleted", "callbackData", callbackData)
+}
+
+// //////////////////////////////////////////////////////////////////
+type testInitLister struct {
+}
+
+func (t *testInitLister) OnUserTokenInvalid(errMsg string) {
+ log.ZInfo(ctx, utils.GetSelfFuncName(), "errMsg", errMsg)
+}
+
+func (t *testInitLister) OnUserTokenExpired() {
+ log.ZInfo(ctx, utils.GetSelfFuncName())
+}
+func (t *testInitLister) OnConnecting() {
+ log.ZInfo(ctx, utils.GetSelfFuncName())
+}
+
+func (t *testInitLister) OnConnectSuccess() {
+ log.ZInfo(ctx, utils.GetSelfFuncName())
+}
+
+func (t *testInitLister) OnConnectFailed(ErrCode int32, ErrMsg string) {
+ log.ZInfo(ctx, utils.GetSelfFuncName(), "errCode", ErrCode, "errMsg", ErrMsg)
+}
+
+func (t *testInitLister) OnKickedOffline() {
+ log.ZInfo(ctx, utils.GetSelfFuncName())
+}
+
+func (t *testInitLister) OnSelfInfoUpdated(info string) {
+ log.ZInfo(ctx, utils.GetSelfFuncName())
+}
+
+func (t *testInitLister) OnUserCommandAdd(info string) {
+ log.ZInfo(ctx, utils.GetSelfFuncName())
+}
+func (t *testInitLister) OnUserCommandDelete(info string) {
+ log.ZInfo(ctx, utils.GetSelfFuncName())
+}
+func (t *testInitLister) OnUserCommandUpdates(info string) {
+ log.ZInfo(ctx, utils.GetSelfFuncName())
+}
+
+func (t *testInitLister) OnSuccess() {
+ log.ZInfo(ctx, utils.GetSelfFuncName())
+}
+
+func (t *testInitLister) OnError(code int32, msg string) {
+ log.ZInfo(ctx, utils.GetSelfFuncName(), "code", code, "msg", msg)
+}
+
+type testLogin struct {
+}
+
+func (testLogin) OnSuccess(string) {
+ fmt.Println("testLogin OnSuccess")
+}
+
+func (testLogin) OnError(code int32, msg string) {
+ fmt.Println("testLogin, OnError", code, msg)
+}
+
+type testFriendListener struct {
+ x int
+}
+
+func (testFriendListener) OnFriendApplicationAdded(callbackInfo string) {
+ log.ZInfo(ctx, utils.GetSelfFuncName(), "CallbackInfo", callbackInfo)
+}
+
+func (testFriendListener) OnFriendApplicationDeleted(callbackInfo string) {
+ log.ZInfo(ctx, utils.GetSelfFuncName(), "CallbackInfo", callbackInfo)
+}
+
+func (testFriendListener) OnFriendApplicationAccepted(callbackInfo string) {
+ log.ZInfo(ctx, utils.GetSelfFuncName(), "CallbackInfo", callbackInfo)
+}
+
+func (testFriendListener) OnFriendApplicationRejected(callbackInfo string) {
+ log.ZInfo(ctx, utils.GetSelfFuncName(), "CallbackInfo", callbackInfo)
+}
+
+func (testFriendListener) OnFriendAdded(callbackInfo string) {
+ log.ZInfo(ctx, utils.GetSelfFuncName(), "CallbackInfo", callbackInfo)
+}
+
+func (testFriendListener) OnFriendDeleted(callbackInfo string) {
+ log.ZInfo(ctx, utils.GetSelfFuncName(), "CallbackInfo", callbackInfo)
+}
+
+func (testFriendListener) OnBlackAdded(callbackInfo string) {
+ log.ZInfo(ctx, utils.GetSelfFuncName(), "CallbackInfo", callbackInfo)
+}
+
+func (testFriendListener) OnBlackDeleted(callbackInfo string) {
+ log.ZInfo(ctx, utils.GetSelfFuncName(), "CallbackInfo", callbackInfo)
+}
+
+func (testFriendListener) OnFriendInfoChanged(callbackInfo string) {
+ log.ZInfo(ctx, utils.GetSelfFuncName(), "CallbackInfo", callbackInfo)
+}
+
+func (testFriendListener) OnSuccess() {
+ log.ZInfo(ctx, utils.GetSelfFuncName())
+}
+
+func (testFriendListener) OnError(code int32, msg string) {
+ log.ZInfo(ctx, utils.GetSelfFuncName(), "Code", code, "Message", msg)
+}
diff --git a/go/chao-sdk-core/test/t_group_sdk.go b/go/chao-sdk-core/test/t_group_sdk.go
new file mode 100644
index 0000000..e0d0406
--- /dev/null
+++ b/go/chao-sdk-core/test/t_group_sdk.go
@@ -0,0 +1,533 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package test
+
+import (
+ "github.com/openimsdk/openim-sdk-core/v3/open_im_sdk"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/sdk_params_callback"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/server_api_params"
+
+ // "encoding/json"
+ "fmt"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/tools/log"
+ //"open_im_sdk/internal/open_im_sdk"
+ //"open_im_sdk/pkg/utils"
+ // "open_im_sdk/internal/common"
+)
+
+type XBase struct {
+}
+
+func (XBase) OnError(errCode int32, errMsg string) {
+ fmt.Println("get groupmenberinfo OnError", errCode, errMsg)
+}
+func (XBase) OnSuccess(data string) {
+ fmt.Println("get groupmenberinfo OnSuccess, ", data)
+}
+
+func (XBase) OnProgress(progress int) {
+ fmt.Println("OnProgress, ", progress)
+}
+
+type testGroupListener struct {
+}
+
+func (testGroupListener) OnJoinedGroupAdded(callbackInfo string) {
+ log.ZInfo(ctx, utils.GetSelfFuncName(), "CallbackInfo", callbackInfo, "operationID", utils.OperationIDGenerator())
+}
+
+func (testGroupListener) OnJoinedGroupDeleted(callbackInfo string) {
+ log.ZInfo(ctx, utils.GetSelfFuncName(), "CallbackInfo", callbackInfo, "operationID", utils.OperationIDGenerator())
+}
+
+func (testGroupListener) OnGroupMemberAdded(callbackInfo string) {
+ log.ZInfo(ctx, utils.GetSelfFuncName(), "CallbackInfo", callbackInfo, "operationID", utils.OperationIDGenerator())
+}
+
+func (testGroupListener) OnGroupMemberDeleted(callbackInfo string) {
+ log.ZInfo(ctx, utils.GetSelfFuncName(), "CallbackInfo", callbackInfo, "operationID", utils.OperationIDGenerator())
+}
+
+func (testGroupListener) OnGroupApplicationAdded(callbackInfo string) {
+ log.ZInfo(ctx, utils.GetSelfFuncName(), "CallbackInfo", callbackInfo, "operationID", utils.OperationIDGenerator())
+}
+
+func (testGroupListener) OnGroupApplicationDeleted(callbackInfo string) {
+ log.ZInfo(ctx, utils.GetSelfFuncName(), "CallbackInfo", callbackInfo, "operationID", utils.OperationIDGenerator())
+}
+
+func (testGroupListener) OnGroupInfoChanged(callbackInfo string) {
+ log.ZInfo(ctx, utils.GetSelfFuncName(), "CallbackInfo", callbackInfo, "operationID", utils.OperationIDGenerator())
+}
+
+func (testGroupListener) OnGroupMemberInfoChanged(callbackInfo string) {
+ log.ZInfo(ctx, utils.GetSelfFuncName(), "CallbackInfo", callbackInfo, "operationID", utils.OperationIDGenerator())
+}
+
+func (testGroupListener) OnGroupApplicationAccepted(callbackInfo string) {
+ log.ZInfo(ctx, utils.GetSelfFuncName(), "CallbackInfo", callbackInfo, "operationID", utils.OperationIDGenerator())
+}
+
+func (testGroupListener) OnGroupApplicationRejected(callbackInfo string) {
+ log.ZInfo(ctx, utils.GetSelfFuncName(), "CallbackInfo", callbackInfo, "operationID", utils.OperationIDGenerator())
+}
+
+func (testGroupListener) OnGroupDismissed(callbackInfo string) {
+ log.ZInfo(ctx, utils.GetSelfFuncName(), "CallbackInfo", callbackInfo, "operationID", utils.OperationIDGenerator())
+}
+
+type testOrganizationListener struct {
+}
+
+func (testOrganizationListener) OnOrganizationUpdated() {
+ log.ZInfo(ctx, utils.GetSelfFuncName(), "on listener callback", "operationID", utils.OperationIDGenerator())
+}
+
+type testWorkMomentsListener struct {
+}
+
+func (testWorkMomentsListener) OnRecvNewNotification() {
+ log.ZInfo(ctx, utils.GetSelfFuncName(), "on listener callback", "operationID", utils.OperationIDGenerator())
+}
+
+type testCreateGroup struct {
+ OperationID string
+}
+
+func (t testCreateGroup) OnSuccess(data string) {
+ log.ZInfo(ctx, utils.GetSelfFuncName(), "operationID", t.OperationID, "Data", data)
+}
+
+func (t testCreateGroup) OnError(errCode int32, errMsg string) {
+ log.ZInfo(ctx, utils.GetSelfFuncName(), "operationID", t.OperationID, "ErrorCode", errCode, "ErrorMsg", errMsg)
+}
+
+func SetTestGroupID(groupID, memberID string) {
+ MemberUserID = memberID
+ TestgroupID = groupID
+}
+
+var MemberUserID = "2101502031"
+var me = "3984071717"
+var TestgroupID = "3109164461"
+
+func DoTestCreateGroup() {
+ var test testCreateGroup
+ test.OperationID = utils.OperationIDGenerator()
+
+ var groupInfo sdk_params_callback.CreateGroupBaseInfoParam
+ groupInfo.GroupName = "ččå¤§įž¤æĩč¯"
+ groupInfo.GroupType = 1
+
+ var memberlist []server_api_params.GroupAddMemberInfo
+ memberlist = append(memberlist, server_api_params.GroupAddMemberInfo{UserID: MemberUserID, RoleLevel: 1})
+ memberlist = append(memberlist, server_api_params.GroupAddMemberInfo{UserID: me, RoleLevel: 2})
+
+ g1 := utils.StructToJsonString(groupInfo)
+ g2 := utils.StructToJsonString(memberlist)
+
+ log.ZInfo(ctx, utils.GetSelfFuncName(), "operationID: ", test.OperationID, "g1", g1, "g2", g2)
+ // open_im_sdk.CreateGroup(test, test.OperationID, g1, g2)
+}
+
+type testSetGroupInfo struct {
+ OperationID string
+}
+
+func (t testSetGroupInfo) OnSuccess(data string) {
+ log.ZInfo(ctx, utils.GetSelfFuncName(), "operationID", t.OperationID, "data", data)
+}
+
+func (t testSetGroupInfo) OnError(errCode int32, errMsg string) {
+ log.ZInfo(ctx, utils.GetSelfFuncName(), "operationID", t.OperationID, "errCode", errCode, "errMsg", errMsg)
+}
+
+func DoSetGroupInfo() {
+ var test testSetGroupInfo
+ operationID := utils.OperationIDGenerator()
+ test.OperationID = operationID
+ var input sdk_params_callback.SetGroupInfoParam
+ input.GroupName = "new group name 11111111"
+ input.Notification = "new notification 11111"
+ var n int32
+ n = 1
+ input.NeedVerification = &n
+ setInfo := utils.StructToJsonString(input)
+ // open_im_sdk.SetGroupInfo(test, operationID, TestgroupID, setInfo)
+ log.ZInfo(ctx, utils.GetSelfFuncName(), "operationID", operationID, "input: ", setInfo)
+}
+
+func DoSetGroupVerification() {
+ var test testSetGroupInfo
+ operationID := utils.OperationIDGenerator()
+ test.OperationID = operationID
+ open_im_sdk.SetGroupVerification(test, operationID, TestgroupID, 1)
+ log.ZInfo(ctx, utils.GetSelfFuncName(), "operationID", operationID, "input: ", TestgroupID, 2)
+}
+
+func DoSetGroupLookMemberInfo() {
+ var test testSetGroupInfo
+ operationID := utils.OperationIDGenerator()
+ test.OperationID = operationID
+ open_im_sdk.SetGroupLookMemberInfo(test, operationID, TestgroupID, 0)
+ log.ZInfo(ctx, utils.GetSelfFuncName(), "operationID", operationID, "input: ", TestgroupID, 1)
+}
+
+func DoSetGroupApplyMemberFriend() {
+ var test testSetGroupInfo
+ operationID := utils.OperationIDGenerator()
+ test.OperationID = operationID
+ open_im_sdk.SetGroupApplyMemberFriend(test, operationID, TestgroupID, 1)
+ log.ZInfo(ctx, utils.GetSelfFuncName(), "operationID", operationID, "input: ", TestgroupID, 1)
+}
+
+type testGetGroupsInfo struct {
+ OperationID string
+}
+
+func (t testGetGroupsInfo) OnSuccess(data string) {
+ log.ZInfo(ctx, utils.GetSelfFuncName(), "operationID", t.OperationID, "testGetGroupsInfo,onSuccess", data)
+}
+
+func (t testGetGroupsInfo) OnError(errCode int32, errMsg string) {
+ log.ZInfo(ctx, utils.GetSelfFuncName(), "operationID", t.OperationID, "testGetGroupsInfo,onError", errCode, errMsg)
+}
+
+type testSearchGroups struct {
+ OperationID string
+}
+
+func (t testSearchGroups) OnSuccess(data string) {
+ log.ZInfo(ctx, utils.GetSelfFuncName(), "operationID", t.OperationID, "data", data)
+}
+
+func (t testSearchGroups) OnError(errCode int32, errMsg string) {
+ log.ZInfo(ctx, utils.GetSelfFuncName(), "operationID", t.OperationID, "errCode", errCode, "errMsg", errMsg)
+}
+
+func DoTestGetGroupsInfo() {
+ var test testGetGroupsInfo
+ groupIDList := []string{TestgroupID}
+ list := utils.StructToJsonString(groupIDList)
+ test.OperationID = utils.OperationIDGenerator()
+ log.ZInfo(ctx, "DoTestGetGroupsInfo", "operationID", test.OperationID, "input", list)
+ // open_im_sdk.GetGroupsInfo(test, test.OperationID, list)
+}
+
+func DoTestSearchGroups() {
+ var test testGetGroupsInfo
+ var params sdk_params_callback.SearchGroupsParam
+ params.KeywordList = []string{"17"}
+ //params.IsSearchGroupID =true
+ params.IsSearchGroupName = true
+ open_im_sdk.SearchGroups(test, test.OperationID, utils.StructToJsonString(params))
+}
+
+type testJoinGroup struct {
+ OperationID string
+}
+
+func (t testJoinGroup) OnSuccess(data string) {
+ log.ZInfo(ctx, "testJoinGroup", "operationID", t.OperationID, "onSuccess", data)
+}
+
+func (t testJoinGroup) OnError(errCode int32, errMsg string) {
+ log.ZInfo(ctx, "testJoinGroup", "operationID", t.OperationID, "onError", errCode, errMsg)
+}
+
+func DoTestJoinGroup() {
+ var test testJoinGroup
+ test.OperationID = utils.OperationIDGenerator()
+ groupID := "1003105543"
+ reqMsg := "121212"
+ ex := "ex"
+ log.ZInfo(ctx, "testJoinGroup", "operationID", test.OperationID, "input", groupID, reqMsg, ex)
+ open_im_sdk.JoinGroup(test, test.OperationID, groupID, reqMsg, constant.JoinBySearch, ex)
+}
+
+type testQuitGroup struct {
+ OperationID string
+}
+
+func (t testQuitGroup) OnSuccess(data string) {
+ log.ZInfo(ctx, "testQuitGroup", "operationID", t.OperationID, "onSuccess", data)
+}
+
+func (t testQuitGroup) OnError(errCode int32, errMsg string) {
+ log.ZInfo(ctx, "testQuitGroup", "operationID", t.OperationID, "onError", errCode, errMsg)
+}
+func DoTestQuitGroup() {
+ var test testQuitGroup
+ test.OperationID = utils.OperationIDGenerator()
+ groupID := "19de93b442a1ca3b772aa0f12761939d"
+ log.ZInfo(ctx, "testQuitGroup", "operationID", test.OperationID, "input", groupID)
+ open_im_sdk.QuitGroup(test, test.OperationID, groupID)
+}
+
+type testGetJoinedGroupList struct {
+ OperationID string
+}
+
+/*
+OnError(errCode int, errMsg string)
+OnSuccess(data string)
+*/
+func (t testGetJoinedGroupList) OnError(errCode int32, errMsg string) {
+ log.ZInfo(ctx, "testGetJoinedGroupList", "operationID", t.OperationID, "OnError", errCode, errMsg)
+}
+
+func (t testGetJoinedGroupList) OnSuccess(data string) {
+ log.ZInfo(ctx, "testGetJoinedGroupList", "operationID", t.OperationID, "OnSuccess", "output", data)
+}
+
+func DoTestGetJoinedGroupList() {
+ var test testGetJoinedGroupList
+ test.OperationID = utils.OperationIDGenerator()
+ open_im_sdk.GetJoinedGroupList(test, test.OperationID)
+}
+
+type testGetGroupMemberList struct {
+ OperationID string
+}
+
+func (t testGetGroupMemberList) OnSuccess(data string) {
+ log.ZInfo(ctx, "testGetGroupMemberList", "operationID", t.OperationID, "function", utils.GetSelfFuncName(), "data", data)
+}
+
+func (t testGetGroupMemberList) OnError(errCode int32, errMsg string) {
+ log.ZInfo(ctx, "testGetGroupMemberList", "operationID", t.OperationID, "function", utils.GetSelfFuncName(), "errCode", errCode, "errMsg", errMsg)
+}
+
+func DotestGetGroupMemberList() {
+ var test testGetGroupMemberList
+ test.OperationID = utils.OperationIDGenerator()
+ var groupId = TestgroupID
+ open_im_sdk.GetGroupMemberList(test, test.OperationID, groupId, 4, 0, 100)
+}
+
+func DotestCos() {
+ //var callback baseCallback
+ //p := ws.NewPostApi(token, UserForSDK.ImConfig().ApiAddr)
+ //var storage common.ObjectStorage = common.NewCOS(p)
+ //test(storage, callback)
+}
+
+//funcation DotestMinio() {
+// var callback baseCallback
+// token := "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJVSUQiOiIxMzkwMDAwMDAwMCIsIlBsYXRmb3JtIjoiSU9TIiwiZXhwIjoxNjQ1NzgyNDY0LCJuYmYiOjE2NDUxNzc2NjQsImlhdCI6MTY0NTE3NzY2NH0.T-SDoLxdlwRGOMZPIKriPtAlOGWCLodsGi1dWxN8kto"
+// p := ws.NewPostApi(token, "https://storage.rentsoft.cn")
+// minio := common.NewMinio(p)
+// var storage common.ObjectStorage = minio
+// log.NewInfo("", *minio)
+// test(storage, callback)
+//}
+//
+//funcation test(storage common.ObjectStorage, callback baseCallback) {
+// dir, newName, err := storage.UploadFile("./cmd/main.go", funcation(progress int) {
+// if progress == 100 {
+// callback.OnSuccess("")
+// }
+// })
+// log.NewInfo("0", dir, newName, err)
+// dir, newName, err = storage.UploadImage("C:\\Users\\Administrator\\Desktop\\1.jpg", funcation(progress int) {
+// if progress == 100 {
+// callback.OnSuccess("")
+// }
+// })
+// log.NewInfo("0", dir, newName, err, err)
+// dir, newName, err = storage.UploadSound("./cmd/main.go", funcation(progress int) {
+// if progress == 100 {
+// callback.OnSuccess("")
+// }
+// })
+// log.NewInfo("0", dir, newName, err, err)
+// snapshotURL, snapshotUUID, videoURL, videoUUID, err := storage.UploadVideo("./cmd/main.go", "C:\\Users\\Administrator\\Desktop\\1.jpg", funcation(progress int) {
+// if progress == 100 {
+// callback.OnSuccess("")
+// }
+// })
+// log.NewInfo(snapshotURL, snapshotUUID, videoURL, videoUUID, err)
+//}
+
+type testGetGroupMembersInfo struct {
+}
+
+func (testGetGroupMembersInfo) OnError(errCode int32, errMsg string) {
+ fmt.Println("testGetGroupMembersInfo OnError", errCode, errMsg)
+}
+
+func (testGetGroupMembersInfo) OnSuccess(data string) {
+ fmt.Println("testGetGroupMembersInfo OnSuccess, output", data)
+}
+
+//
+//funcation DotestGetGroupMembersInfo() {
+// var test testGetGroupMembersInfo
+// var memlist []string
+// memlist = append(memlist, "307edc814bb0d04a")
+// //memlist = append(memlist, "ded01dfe543700402608e19d4e2f839e")
+// jlist, _ := json.Marshal(memlist)
+// fmt.Println("GetGroupMembersInfo input : ", string(jlist))
+// sdk_interface.GetGroupMembersInfo("7ff61d8f9d4a8a0d6d70a14e2683aad5", string(jlist), test)
+// //GetGroupMemberList("05dc84b52829e82242a710ecf999c72c", 0, 0, test)
+//}
+//
+
+type baseCallback struct {
+ OperationID string
+ callName string
+}
+
+func (t baseCallback) OnSuccess(data string) {
+ log.ZInfo(ctx, t.callName, "operationID", t.OperationID, "function", utils.GetSelfFuncName(), "data", data)
+}
+
+func (t baseCallback) OnError(errCode int32, errMsg string) {
+ log.ZInfo(ctx, t.callName, "operationID", t.OperationID, "function", utils.GetSelfFuncName(), "errCode", errCode, "errMsg", errMsg)
+}
+
+type testKickGroupMember struct {
+ baseCallback
+}
+type testGetGroupMemberListByJoinTimeFilter struct {
+ baseCallback
+}
+
+func DotestGetGroupMemberListByJoinTimeFilter() {
+ var test testGetGroupMemberListByJoinTimeFilter
+ test.OperationID = utils.OperationIDGenerator()
+ var memlist []string
+ jlist := utils.StructToJsonString(memlist)
+ log.ZInfo(ctx, "DotestGetGroupMemberListByJoinTimeFilter", "operationID", test.OperationID, "function", utils.GetSelfFuncName(), "input", jlist)
+ open_im_sdk.GetGroupMemberListByJoinTimeFilter(test, test.OperationID, "3750066757", 1, 40, 0, 0, jlist)
+}
+
+func DotestKickGroupMember() {
+ var test testKickGroupMember
+ test.OperationID = utils.OperationIDGenerator()
+ var memlist []string
+ memlist = append(memlist, MemberUserID)
+ jlist := utils.StructToJsonString(memlist)
+ log.ZInfo(ctx, "DotestKickGroupMember", "operationID", test.OperationID, "function", utils.GetSelfFuncName(), "input", jlist)
+ open_im_sdk.KickGroupMember(test, test.OperationID, TestgroupID, "kkk", jlist)
+}
+
+type testInviteUserToGroup struct {
+ baseCallback
+}
+
+func DotestInviteUserToGroup() {
+ var test testInviteUserToGroup
+ test.OperationID = utils.OperationIDGenerator()
+ var memlist []string
+ memlist = append(memlist, MemberUserID)
+ jlist := utils.StructToJsonString(memlist)
+ log.ZInfo(ctx, "DotestInviteUserToGroup", "operationID", test.OperationID, "function", utils.GetSelfFuncName(), "input", jlist)
+ open_im_sdk.InviteUserToGroup(test, test.OperationID, TestgroupID, "come", string(jlist))
+}
+
+type testGetGroupApplicationList struct {
+ baseCallback
+}
+
+func DotestGetRecvGroupApplicationList() string {
+ var test testGetGroupApplicationList
+ test.OperationID = utils.OperationIDGenerator()
+ log.ZInfo(ctx, "DotestGetRecvGroupApplicationList", "operationID", test.OperationID, "function", utils.GetSelfFuncName(), "input", "")
+ // open_im_sdk.GetRecvGroupApplicationList(test, test.OperationID)
+ return ""
+}
+
+// funcation DoGroupApplicationList() {
+// var test testGroupX
+// fmt.Println("test DoGetGroupApplicationList....")
+// sdk_interface.GetGroupApplicationList(test)
+// }
+type testTransferGroupOwner struct {
+ baseCallback
+}
+
+func DotestTransferGroupOwner() {
+ var test testTransferGroupOwner
+ test.OperationID = utils.OperationIDGenerator()
+
+ open_im_sdk.TransferGroupOwner(test, test.OperationID, TestgroupID, MemberUserID)
+
+}
+
+type testProcessGroupApplication struct {
+ baseCallback
+}
+
+func DoTestAcceptGroupApplication(uid string) {
+ var test testProcessGroupApplication
+ test.OperationID = utils.OperationIDGenerator()
+ log.ZInfo(ctx, "DoTestAcceptGroupApplication", "operationID", test.OperationID, "function", utils.GetSelfFuncName(), "input", "")
+ open_im_sdk.AcceptGroupApplication(test, test.OperationID, TestgroupID, MemberUserID, "ok")
+}
+
+func DoTestGetUserReqGroupApplicationList() {
+ var test testProcessGroupApplication
+ test.OperationID = utils.OperationIDGenerator()
+ log.ZInfo(ctx, "DoTestGetUserReqGroupApplicationList", "operationID", test.OperationID, "function", utils.GetSelfFuncName(), "input", "")
+ // open_im_sdk.GetSendGroupApplicationList(test, test.OperationID)
+}
+
+func DoTestGetRecvGroupApplicationList() {
+ var test testProcessGroupApplication
+ test.OperationID = utils.OperationIDGenerator()
+ log.ZInfo(ctx, "DoTestGetRecvGroupApplicationList", "operationID", test.OperationID, "function", utils.GetSelfFuncName(), "input", "")
+ // open_im_sdk.GetRecvGroupApplicationList(test, test.OperationID)
+}
+
+func DotestRefuseGroupApplication(uid string) {
+ var test testProcessGroupApplication
+ test.OperationID = utils.OperationIDGenerator()
+ log.ZInfo(ctx, "DotestRefuseGroupApplication", "operationID", test.OperationID, "function", utils.GetSelfFuncName(), "input", "")
+ open_im_sdk.RefuseGroupApplication(test, test.OperationID, TestgroupID, MemberUserID, "no")
+}
+
+type testSetGroupMemberNickname struct {
+ baseCallback
+}
+
+func DotestSetGroupMemberNickname(myUserID string) {
+ var test testSetGroupMemberNickname
+ test.OperationID = utils.OperationIDGenerator()
+ log.ZInfo(ctx, "DotestSetGroupMemberNickname", "operationID", test.OperationID, "function", utils.GetSelfFuncName(), "input", "")
+ open_im_sdk.SetGroupMemberNickname(test, test.OperationID, TestgroupID, myUserID, "")
+}
+
+func DoTestSetGroupMemberRoleLevel(groupID, userID string, roleLevel int) {
+ var test testSetGroupMemberNickname
+ test.OperationID = utils.OperationIDGenerator()
+ fmt.Println(test.OperationID, utils.GetSelfFuncName(), "inputx: ")
+ open_im_sdk.SetGroupMemberRoleLevel(test, test.OperationID, groupID, userID, roleLevel)
+}
+
+func DoTestSetGroupMemberInfo(groupID, userID string, ex string) {
+ var test testSetGroupMemberNickname
+ test.OperationID = utils.OperationIDGenerator()
+ param := sdk_params_callback.SetGroupMemberInfoParam{GroupID: groupID, UserID: userID}
+ if ex != "" {
+ param.Ex = &ex
+ }
+ g1 := utils.StructToJsonString(param)
+ fmt.Println(test.OperationID, utils.GetSelfFuncName(), "inputx: ", g1)
+
+ open_im_sdk.SetGroupMemberInfo(test, test.OperationID, g1)
+}
diff --git a/go/chao-sdk-core/test/t_signaling.go b/go/chao-sdk-core/test/t_signaling.go
new file mode 100644
index 0000000..052bf1d
--- /dev/null
+++ b/go/chao-sdk-core/test/t_signaling.go
@@ -0,0 +1,160 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package test
+
+import (
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+
+ "github.com/openimsdk/tools/log"
+ "golang.org/x/net/context"
+)
+
+type testSignalingListener struct {
+ ctx context.Context
+}
+
+func (s *testSignalingListener) OnHangUp(hangUpCallback string) {
+ log.ZInfo(s.ctx, utils.GetSelfFuncName(), "OnHangUp ", hangUpCallback)
+}
+
+func (s *testSignalingListener) OnReceiveNewInvitation(receiveNewInvitationCallback string) {
+ log.ZInfo(s.ctx, utils.GetSelfFuncName(), "OnReceiveNewInvitation ", receiveNewInvitationCallback)
+}
+
+func (s *testSignalingListener) OnInviteeAccepted(inviteeAcceptedCallback string) {
+ log.ZInfo(s.ctx, utils.GetSelfFuncName(), "OnInviteeAccepted ", inviteeAcceptedCallback)
+}
+
+func (s *testSignalingListener) OnInviteeRejected(inviteeRejectedCallback string) {
+ log.ZInfo(s.ctx, utils.GetSelfFuncName(), "OnInviteeRejected ", inviteeRejectedCallback)
+}
+
+func (s *testSignalingListener) OnInvitationCancelled(invitationCancelledCallback string) {
+ log.ZInfo(s.ctx, utils.GetSelfFuncName(), "OnInvitationCancelled ", invitationCancelledCallback)
+}
+
+func (s *testSignalingListener) OnInvitationTimeout(invitationTimeoutCallback string) {
+ log.ZInfo(s.ctx, utils.GetSelfFuncName(), "OnInvitationTimeout ", invitationTimeoutCallback)
+}
+
+func (s *testSignalingListener) OnInviteeAcceptedByOtherDevice(inviteeAcceptedCallback string) {
+ log.ZInfo(s.ctx, utils.GetSelfFuncName(), "OnInviteeAcceptedByOtherDevice ", inviteeAcceptedCallback)
+}
+
+func (s *testSignalingListener) OnInviteeRejectedByOtherDevice(inviteeRejectedCallback string) {
+ log.ZInfo(s.ctx, utils.GetSelfFuncName(), "OnInviteeRejectedByOtherDevice ", inviteeRejectedCallback)
+}
+
+func (s *testSignalingListener) OnRoomParticipantConnected(onRoomChangeCallback string) {
+ log.ZInfo(s.ctx, utils.GetSelfFuncName(), "onRoomChangeCallback", onRoomChangeCallback)
+}
+
+func (s *testSignalingListener) OnRoomParticipantDisconnected(onRoomChangeCallback string) {
+ log.ZInfo(s.ctx, utils.GetSelfFuncName(), "onRoomChangeCallback", onRoomChangeCallback)
+}
+
+//type testSingaling struct {
+// baseCallback
+//}
+//
+//funcation DoTestInviteInGroup() {
+// t := testSingaling{baseCallback{OperationID: utils.OperationIDGenerator(), callName: utils.GetSelfFuncName()}}
+// req := &sdkws.SignalInviteInGroupReq{}
+// req.Invitation = SetTestInviteInfo()
+// s := utils.StructToJsonString(req)
+// // log.Info(t.OperationID, utils.GetSelfFuncName(), "input: ", s)
+// open_im_sdk.SignalingInviteInGroup(t, t.OperationID, s)
+//}
+//
+//funcation SetTestInviteInfo() *sdkws.InvitationInfo {
+// req := &sdkws.InvitationInfo{}
+// req.Timeout = 1000
+// req.InviteeUserIDList = []string{"3495023045"}
+// req.MediaType = "video"
+// req.RoomID = "1826384574"
+// req.GroupID = "1826384574"
+// req.SessionType = 2
+// return req
+//}
+//
+//funcation DoTestInvite(userID string) {
+// t := testSingaling{baseCallback{OperationID: utils.OperationIDGenerator(), callName: utils.GetSelfFuncName()}}
+// req := &sdkws.SignalInviteReq{}
+// req.OpUserID = userID
+// req.Invitation = SetTestInviteInfo()
+// req.Invitation.GroupID = ""
+// req.Invitation.SessionType = 1
+// req.Invitation.PlatformID = 1
+// req.Invitation.Timeout = 30
+// req.Invitation.MediaType = "video"
+// req.Invitation.InviteeUserIDList = []string{"17726378428"}
+// s := utils.StructToJsonString(req)
+// fmt.Println(utils.GetSelfFuncName(), "input: ", s, t.OperationID)
+// open_im_sdk.SignalingInvite(t, t.OperationID, s)
+//}
+//
+//funcation DoTestAccept() {
+// t := testSingaling{baseCallback{OperationID: utils.OperationIDGenerator(), callName: utils.GetSelfFuncName()}}
+// req := &sdkws.SignalAcceptReq{Invitation: &sdkws.InvitationInfo{}, OpUserID: "18349115126"}
+// req.Invitation = SetTestInviteInfo()
+// req.Invitation.InviterUserID = "18666662412"
+// s := utils.StructToJsonString(req)
+// // log.Info(t.OperationID, utils.GetSelfFuncName(), "input: ", s, req.String())
+// open_im_sdk.SignalingAccept(t, t.OperationID, s)
+//}
+//
+//funcation DoTestReject() {
+// t := testSingaling{baseCallback{OperationID: utils.OperationIDGenerator(), callName: utils.GetSelfFuncName()}}
+// req := &sdkws.SignalRejectReq{Invitation: &sdkws.InvitationInfo{}, OpUserID: "18349115126"}
+// req.Invitation = SetTestInviteInfo()
+// req.Invitation.InviterUserID = "18666662412"
+// s := utils.StructToJsonString(req)
+// // log.Info(t.OperationID, utils.GetSelfFuncName(), "input: ", s)
+// open_im_sdk.SignalingReject(t, t.OperationID, s)
+//}
+//
+//funcation DoTestCancel() {
+// t := testSingaling{baseCallback{OperationID: utils.OperationIDGenerator(), callName: utils.GetSelfFuncName()}}
+// req := &sdkws.SignalCancelReq{Invitation: &sdkws.InvitationInfo{}}
+// req.Invitation = SetTestInviteInfo()
+// req.Invitation.GroupID = ""
+// req.Invitation.SessionType = 1
+// req.Invitation.PlatformID = 1
+// req.Invitation.Timeout = 10
+// req.Invitation.InviterUserID = "18666662412"
+// req.OpUserID = "18666662412"
+// s := utils.StructToJsonString(req)
+// // log.Info(t.OperationID, utils.GetSelfFuncName(), "input: ", s)
+// open_im_sdk.SignalingCancel(t, t.OperationID, s)
+//}
+//
+//funcation DoTestHungUp() {
+// t := testSingaling{baseCallback{OperationID: utils.OperationIDGenerator(), callName: utils.GetSelfFuncName()}}
+// req := &sdkws.SignalHungUpReq{Invitation: &sdkws.InvitationInfo{}}
+// req.Invitation = SetTestInviteInfo()
+// s := utils.StructToJsonString(req)
+// // log.Info(t.OperationID, utils.GetSelfFuncName(), "input: ", s)
+// open_im_sdk.SignalingHungUp(t, t.OperationID, s)
+//}
+//
+//funcation DoTestSignalGetRoomByGroupID(groupID string) {
+// t := testSingaling{baseCallback{OperationID: utils.OperationIDGenerator(), callName: utils.GetSelfFuncName()}}
+// open_im_sdk.SignalingGetRoomByGroupID(t, t.OperationID, groupID)
+//}
+//
+//funcation DoTestSignalGetTokenByRoomID(roomID string) {
+// t := testSingaling{baseCallback{OperationID: utils.OperationIDGenerator(), callName: utils.GetSelfFuncName()}}
+// open_im_sdk.SignalingGetTokenByRoomID(t, t.OperationID, roomID)
+//}
diff --git a/go/chao-sdk-core/test/work_group_create.go b/go/chao-sdk-core/test/work_group_create.go
new file mode 100644
index 0000000..4bcca79
--- /dev/null
+++ b/go/chao-sdk-core/test/work_group_create.go
@@ -0,0 +1,177 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package test
+
+import (
+ "encoding/json"
+ "errors"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/network"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/server_api_params"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/tools/log"
+ "sync"
+ "time"
+
+ "github.com/openimsdk/protocol/sdkws"
+)
+
+var (
+ INVITEUSERTOGROUP = ""
+)
+
+func InviteListToGroup(userIDList []string, groupID string) {
+ var inviteReq server_api_params.InviteUserToGroupReq
+ inviteReq.OperationID = utils.OperationIDGenerator()
+ inviteReq.GroupID = groupID
+ inviteReq.InvitedUserIDList = userIDList
+ for {
+ resp, err := network.Post2Api(INVITEUSERTOGROUP, inviteReq, AdminToken)
+ if err != nil {
+ log.ZWarn(ctx, "INVITE USER TO GROUP failed", err, "inviteReq", inviteReq)
+
+ continue
+ } else {
+ log.ZInfo(ctx, "InviteResponse", "operationID", inviteReq.OperationID, "response", string(resp))
+
+ return
+ }
+ }
+}
+
+func InviteToGroup(userID string, groupID string) {
+ var inviteReq server_api_params.InviteUserToGroupReq
+ inviteReq.OperationID = utils.OperationIDGenerator()
+ inviteReq.GroupID = groupID
+ inviteReq.InvitedUserIDList = []string{userID}
+ for {
+ resp, err := network.Post2Api(INVITEUSERTOGROUP, inviteReq, AdminToken)
+ if err != nil {
+ log.ZWarn(ctx, "INVITE USER TO GROUP failed", err, "inviteReq", inviteReq)
+
+ continue
+ } else {
+ log.ZInfo(ctx, "invite resp", "operationID", inviteReq.OperationID, "response", string(resp))
+
+ return
+ }
+ }
+}
+
+func CreateWorkGroup(number int) string {
+ t1 := time.Now()
+ RegisterWorkGroupAccounts(number)
+ log.ZInfo(ctx, "RegisterAccounts", "costTime", time.Since(t1), "onlineClientNumber", number)
+
+ groupID := ""
+ var req server_api_params.CreateGroupReq
+
+ //var memberList []*server_api_params.GroupAddMemberInfo
+ //for _, v := range allUserID {
+ // memberList = append(memberList, &server_api_params.GroupAddMemberInfo{UserID: v, RoleLevel: 1})
+ //}
+ // req.MemberList = memberList
+ req.OwnerUserID = "openIM123456"
+ for {
+ req.OperationID = utils.OperationIDGenerator()
+ req.GroupType = constant.WorkingGroup
+ req.OperationID = utils.OperationIDGenerator()
+ resp, err := network.Post2Api(CREATEGROUP, req, AdminToken)
+ if err != nil {
+ log.ZWarn(ctx, "CREATE GROUP failed", err, "resp", resp)
+ continue
+ } else {
+ type CreateGroupResp struct {
+ server_api_params.CommResp
+ GroupInfo sdkws.GroupInfo `json:"data"`
+ }
+
+ var result CreateGroupResp
+ err := json.Unmarshal(resp, &result)
+ if err != nil {
+ log.ZError(ctx, "Unmarshal failed", err, "resp", string(resp))
+
+ }
+ log.ZInfo(ctx, "Unmarshal", "operationID", req.OperationID, "response", string(resp), "result", result)
+ groupID = result.GroupInfo.GroupID
+ log.ZInfo(ctx, "create groupID", "operationID", req.OperationID, "groupID", groupID)
+
+ break
+ }
+ }
+
+ split := 100
+ idx := 0
+ remain := len(allUserID) % split
+ for idx = 0; idx < len(allUserID)/split; idx++ {
+ sub := allUserID[idx*split : (idx+1)*split]
+ log.ZWarn(ctx, "Invite to groupID", errors.New(""), "groupID", groupID)
+
+ InviteListToGroup(sub, groupID)
+ }
+ if remain > 0 {
+ sub := allUserID[idx*split:]
+ log.ZWarn(ctx, "Invite to groupID", errors.New(""), "operationID", req.OperationID, "groupID", groupID)
+
+ InviteListToGroup(sub, groupID)
+ }
+
+ //var wg sync.WaitGroup
+ //for _, v := range allUserID {
+ // wg.Add(1)
+ // go funcation(uID, gID string) {
+ // InviteToGroup(uID, gID)
+ // wg.Done()
+ // }(v, groupID)
+ //}
+ //wg.Wait()
+ return groupID
+}
+
+func RegisterWorkGroupAccounts(number int) {
+ var wg sync.WaitGroup
+ wg.Add(number)
+ for i := 0; i < number; i++ {
+ go func(t int) {
+ userID := GenUid(t, "workgroup")
+ register(userID)
+ log.ZInfo(ctx, "UserRegistered", "userID", userID)
+ wg.Done()
+ }(i)
+ }
+ wg.Wait()
+
+ log.ZInfo(ctx, "RegistrationFinished", "totalUsers", number)
+}
+
+func RegisterWorkGroupPressAccounts(number int) {
+ var wg sync.WaitGroup
+ wg.Add(number)
+ for i := 0; i < number; i++ {
+ go func(t int) {
+ userID := GenUid(t, "press_workgroup")
+ register(userID)
+ log.ZInfo(ctx, "UserRegistered", "userID", userID)
+ wg.Done()
+ }(i)
+ }
+ wg.Wait()
+
+ userID1 := GenUid(1234567, "workgroup")
+ register(userID1)
+ userID2 := GenUid(7654321, "workgroup")
+ register(userID2)
+ log.ZInfo(ctx, "RegistrationFinished", "totalUsers", number+2)
+}
diff --git a/go/chao-sdk-core/test/work_moments.go b/go/chao-sdk-core/test/work_moments.go
new file mode 100644
index 0000000..a85d56b
--- /dev/null
+++ b/go/chao-sdk-core/test/work_moments.go
@@ -0,0 +1,53 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package test
+
+import (
+ "fmt"
+)
+
+type WBase struct {
+}
+
+func (WBase) OnError(errCode int32, errMsg string) {
+ fmt.Println("get workmoments OnError", errCode, errMsg)
+}
+func (WBase) OnSuccess(data string) {
+ fmt.Println("get workmoments OnSuccess, ", data)
+}
+
+func (WBase) OnProgress(progress int) {
+ fmt.Println("OnProgress, ", progress)
+}
+
+//funcation TestGetWorkMomentsUnReadCount() {
+// operationID := utils.OperationIDGenerator()
+// var cb WBase
+// open_im_sdk.GetWorkMomentsUnReadCount(cb, operationID)
+//}
+//
+//funcation TestGetWorkMomentsNotification() {
+// operationID := utils.OperationIDGenerator()
+// var cb WBase
+// offset := 0
+// count := 10
+// open_im_sdk.GetWorkMomentsNotification(cb, operationID, offset, count)
+//}
+//
+//funcation TestClearWorkMomentsNotification() {
+// operationID := utils.OperationIDGenerator()
+// var cb WBase
+// open_im_sdk.ClearWorkMomentsNotification(cb, operationID)
+//}
diff --git a/go/chao-sdk-core/testv2/callback.go b/go/chao-sdk-core/testv2/callback.go
new file mode 100644
index 0000000..32051d4
--- /dev/null
+++ b/go/chao-sdk-core/testv2/callback.go
@@ -0,0 +1,32 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package testv2
+
+import "fmt"
+
+type TestSendMsg struct {
+}
+
+func (TestSendMsg) OnSuccess(data string) {
+ fmt.Println("testSendImg, OnSuccess, output: ", data)
+}
+
+func (TestSendMsg) OnError(code int32, msg string) {
+ fmt.Println("testSendImg, OnError, ", code, msg)
+}
+
+func (TestSendMsg) OnProgress(progress int) {
+ fmt.Println("progress: ", progress)
+}
diff --git a/go/chao-sdk-core/testv2/config.go b/go/chao-sdk-core/testv2/config.go
new file mode 100644
index 0000000..073dce8
--- /dev/null
+++ b/go/chao-sdk-core/testv2/config.go
@@ -0,0 +1,44 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package testv2
+
+import (
+ "github.com/openimsdk/openim-sdk-core/v3/sdk_struct"
+ "github.com/openimsdk/protocol/constant"
+)
+
+const (
+ //APIADDR = "http://172.16.8.48:10002"
+ //WSADDR = "ws://172.16.8.48:10001"
+
+ APIADDR = "http://127.0.0.1:10002"
+ WSADDR = "ws://127.0.0.1:10001"
+
+ UserID = "6864873394"
+ friendUserID = "3281432310"
+)
+
+func getConf(APIADDR, WSADDR string) sdk_struct.IMConfig {
+ var cf sdk_struct.IMConfig
+ cf.ApiAddr = APIADDR
+ cf.WsAddr = WSADDR
+ cf.DataDir = "../"
+ cf.LogLevel = 6
+ cf.IsExternalExtensions = true
+ cf.PlatformID = constant.LinuxPlatformID
+ cf.LogFilePath = ""
+ cf.IsLogStandardOutput = true
+ return cf
+}
diff --git a/go/chao-sdk-core/testv2/conversation_test.go b/go/chao-sdk-core/testv2/conversation_test.go
new file mode 100644
index 0000000..9d925bb
--- /dev/null
+++ b/go/chao-sdk-core/testv2/conversation_test.go
@@ -0,0 +1,308 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package testv2
+
+import (
+ "context"
+ "github.com/openimsdk/openim-sdk-core/v3/open_im_sdk"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/sdk_params_callback"
+ "github.com/openimsdk/openim-sdk-core/v3/sdk_struct"
+ "testing"
+)
+
+func Test_GetAllConversationList(t *testing.T) {
+ conversations, err := open_im_sdk.UserForSDK.Conversation().GetAllConversationList(ctx)
+ if err != nil {
+ t.Fatal(err)
+ }
+ for _, conversation := range conversations {
+ t.Log(conversation)
+ }
+}
+
+func Test_GetConversationListSplit(t *testing.T) {
+ conversations, err := open_im_sdk.UserForSDK.Conversation().GetConversationListSplit(ctx, 0, 20)
+ if err != nil {
+ t.Fatal(err)
+ }
+ for _, conversation := range conversations {
+ t.Log(conversation)
+ }
+}
+
+//func Test_SetConversationRecvMessageOpt(t *testing.T) {
+// err := open_im_sdk.UserForSDK.Conversation().SetConversationRecvMessageOpt(ctx, []string{"asdasd"}, 1)
+// if err != nil {
+// t.Fatal(err)
+// }
+//}
+
+func Test_HideConversation(t *testing.T) {
+ err := open_im_sdk.UserForSDK.Conversation().HideConversation(ctx, "asdasd")
+ if err != nil {
+ t.Fatal(err)
+ }
+}
+
+func Test_GetConversationRecvMessageOpt(t *testing.T) {
+ opts, err := open_im_sdk.UserForSDK.Conversation().GetConversationRecvMessageOpt(ctx, []string{"asdasd"})
+ if err != nil {
+ t.Fatal(err)
+ }
+ for _, v := range opts {
+ t.Log(v.ConversationID, *v.Result)
+ }
+}
+
+func Test_GetGlobalRecvMessageOpt(t *testing.T) {
+ opt, err := open_im_sdk.UserForSDK.Conversation().GetOneConversation(ctx, 2, "1772958501")
+ if err != nil {
+ t.Fatal(err)
+ }
+ t.Log(*opt)
+}
+
+func Test_GetGetMultipleConversation(t *testing.T) {
+ conversations, err := open_im_sdk.UserForSDK.Conversation().GetMultipleConversation(ctx, []string{"asdasd"})
+ if err != nil {
+ t.Fatal(err)
+ }
+ for _, v := range conversations {
+ t.Log(v)
+ }
+}
+
+// funcation Test_DeleteConversation(t *testing.T) {
+// err := open_im_sdk.UserForSDK.Conversation().DeleteConversation(ctx, "group_17729585012")
+// if err != nil {
+// if !strings.Contains(err.Error(), "no update") {
+// t.Fatal(err)
+// }
+// }
+// }
+
+func Test_SetConversationDraft(t *testing.T) {
+ err := open_im_sdk.UserForSDK.Conversation().SetConversationDraft(ctx, "group_17729585012", "draft")
+ if err != nil {
+ t.Fatal(err)
+ }
+}
+
+func Test_ResetConversationGroupAtType(t *testing.T) {
+ err := open_im_sdk.UserForSDK.Conversation().ResetConversationGroupAtType(ctx, "group_17729585012")
+ if err != nil {
+ t.Fatal(err)
+ }
+}
+
+func Test_PinConversation(t *testing.T) {
+ err := open_im_sdk.UserForSDK.Conversation().PinConversation(ctx, "group_17729585012", true)
+ if err != nil {
+ t.Fatal(err)
+ }
+}
+
+func Test_SetOneConversationPrivateChat(t *testing.T) {
+ err := open_im_sdk.UserForSDK.Conversation().SetOneConversationPrivateChat(ctx, "single_3411008330", true)
+ if err != nil {
+ t.Fatal(err)
+ }
+}
+
+func Test_SetOneConversationBurnDuration(t *testing.T) {
+ err := open_im_sdk.UserForSDK.Conversation().SetOneConversationBurnDuration(ctx, "single_3411008330", 10)
+ if err != nil {
+ t.Fatal(err)
+ }
+}
+
+func Test_SetOneConversationRecvMessageOpt(t *testing.T) {
+ err := open_im_sdk.UserForSDK.Conversation().SetOneConversationRecvMessageOpt(ctx, "single_3411008330", 1)
+ if err != nil {
+ t.Fatal(err)
+ }
+}
+
+func Test_GetTotalUnreadMsgCount(t *testing.T) {
+ count, err := open_im_sdk.UserForSDK.Conversation().GetTotalUnreadMsgCount(ctx)
+ if err != nil {
+ t.Fatal(err)
+ }
+ t.Log(count)
+}
+
+func Test_SendMessage(t *testing.T) {
+ ctx = context.WithValue(ctx, "callback", TestSendMsg{})
+ msg, _ := open_im_sdk.UserForSDK.Conversation().CreateTextMessage(ctx, "textMsg")
+ _, err := open_im_sdk.UserForSDK.Conversation().SendMessage(ctx, msg, "3411008330", "", nil, false)
+ if err != nil {
+ t.Fatal(err)
+ }
+}
+
+func Test_SendMessageNotOss(t *testing.T) {
+ ctx = context.WithValue(ctx, "callback", TestSendMsg{})
+ msg, _ := open_im_sdk.UserForSDK.Conversation().CreateTextMessage(ctx, "textMsg")
+ _, err := open_im_sdk.UserForSDK.Conversation().SendMessageNotOss(ctx, msg, "3411008330", "", nil, false)
+ if err != nil {
+ t.Fatal(err)
+ }
+}
+
+func Test_FindMessageList(t *testing.T) {
+ msgs, err := open_im_sdk.UserForSDK.Conversation().FindMessageList(ctx, []*sdk_params_callback.ConversationArgs{})
+ if err != nil {
+ t.Fatal(err)
+ }
+ t.Log(msgs.TotalCount)
+ for _, v := range msgs.FindResultItems {
+ t.Log(v)
+ }
+}
+
+func Test_GetAdvancedHistoryMessageList(t *testing.T) {
+ msgs, err := open_im_sdk.UserForSDK.Conversation().GetAdvancedHistoryMessageList(ctx, sdk_params_callback.GetAdvancedHistoryMessageListParams{})
+ if err != nil {
+ t.Fatal(err)
+ }
+ for _, v := range msgs.MessageList {
+ t.Log(v)
+ }
+}
+
+func Test_GetAdvancedHistoryMessageListReverse(t *testing.T) {
+ msgs, err := open_im_sdk.UserForSDK.Conversation().GetAdvancedHistoryMessageListReverse(ctx, sdk_params_callback.GetAdvancedHistoryMessageListParams{})
+ if err != nil {
+ t.Fatal(err)
+ }
+ for _, v := range msgs.MessageList {
+ t.Log(v)
+ }
+}
+
+func Test_InsertSingleMessageToLocalStorage(t *testing.T) {
+ _, err := open_im_sdk.UserForSDK.Conversation().InsertSingleMessageToLocalStorage(ctx, &sdk_struct.MsgStruct{}, "3411008330", "")
+ if err != nil {
+ t.Fatal(err)
+ }
+}
+
+func Test_InsertGroupMessageToLocalStorage(t *testing.T) {
+ _, err := open_im_sdk.UserForSDK.Conversation().InsertGroupMessageToLocalStorage(ctx, &sdk_struct.MsgStruct{}, "group_17729585012", "")
+ if err != nil {
+ t.Fatal(err)
+ }
+}
+
+func Test_SearchLocalMessages(t *testing.T) {
+ msgs, err := open_im_sdk.UserForSDK.Conversation().SearchLocalMessages(ctx, &sdk_params_callback.SearchLocalMessagesParams{})
+ if err != nil {
+ t.Fatal(err)
+ }
+ for _, v := range msgs.SearchResultItems {
+ t.Log(v)
+ }
+}
+
+// // delete
+// funcation Test_DeleteMessageFromLocalStorage(t *testing.T) {
+// err := open_im_sdk.UserForSDK.Conversation().DeleteMessageFromLocalStorage(ctx, &sdk_struct.MsgStruct{SessionType: 1, ContentType: 1203,
+// ClientMsgID: "ef02943b05b02d02f92b0e92516099a3", Seq: 31, SendID: "kernaltestuid8", RecvID: "kernaltestuid9"})
+// if err != nil {
+// t.Fatal(err)
+// }
+// }
+//
+// funcation Test_DeleteMessage(t *testing.T) {
+// err := open_im_sdk.UserForSDK.Conversation().DeleteMessage(ctx, &sdk_struct.MsgStruct{SessionType: 1, ContentType: 1203,
+// ClientMsgID: "ef02943b05b02d02f92b0e92516099a3", Seq: 31, SendID: "kernaltestuid8", RecvID: "kernaltestuid9"})
+// if err != nil {
+// t.Fatal(err)
+// }
+// }
+
+func Test_DeleteAllMsgFromLocalAndSvr(t *testing.T) {
+ err := open_im_sdk.UserForSDK.Conversation().DeleteAllMsgFromLocalAndSvr(ctx)
+ if err != nil {
+ t.Fatal(err)
+ }
+}
+
+func Test_DeleteAllMessageFromLocalStorage(t *testing.T) {
+ err := open_im_sdk.UserForSDK.Conversation().DeleteAllMessageFromLocalStorage(ctx)
+ if err != nil {
+ t.Fatal(err)
+ }
+}
+
+func Test_ClearConversationAndDeleteAllMsg(t *testing.T) {
+ err := open_im_sdk.UserForSDK.Conversation().ClearConversationAndDeleteAllMsg(ctx, "si_3271407977_7152307910")
+ if err != nil {
+ t.Fatal(err)
+ }
+}
+
+// func Test_RevokeMessage(t *testing.T) {
+// err := open_im_sdk.UserForSDK.Conversation().RevokeMessage(ctx, &sdk_struct.MsgStruct{SessionType: 1, ContentType: 101,
+// ClientMsgID: "380e2eb1709875340d769880982ebb21", Seq: 57, SendID: "9169012630", RecvID: "2456093263"})
+// if err != nil {
+// t.Fatal(err)
+// }
+// time.Sleep(time.Second * 10)
+// }
+
+func Test_MarkConversationMessageAsRead(t *testing.T) {
+ err := open_im_sdk.UserForSDK.Conversation().MarkConversationMessageAsRead(ctx, "si_2688118337_7249315132")
+ if err != nil {
+ t.Fatal(err)
+ }
+}
+
+func Test_MarkMsgsAsRead(t *testing.T) {
+ err := open_im_sdk.UserForSDK.Conversation().MarkMessagesAsReadByMsgID(ctx, "si_2688118337_7249315132",
+ []string{"fb56ed151b675e0837ed3af79dbf66b1",
+ "635715c539be2e7812a0fc802f0cdc54", "1aba3fae3dc3f61c17e8eb09519cf8e1"})
+ if err != nil {
+ t.Fatal(err)
+ }
+}
+
+func Test_SendImgMsg(t *testing.T) {
+ ctx = context.WithValue(ctx, "callback", TestSendMsg{})
+ msg, err := open_im_sdk.UserForSDK.Conversation().CreateImageMessage(ctx, "C:\\Users\\Admin\\Desktop\\test.png")
+ if err != nil {
+ t.Fatal(err)
+ }
+ res, err := open_im_sdk.UserForSDK.Conversation().SendMessage(ctx, msg, "1919501984", "", nil, false)
+ if err != nil {
+ t.Fatal(err)
+ }
+ t.Logf("send smg => %+v\n", res)
+}
+func Test_SetConversationEx(t *testing.T) {
+ err := open_im_sdk.UserForSDK.Conversation().SetOneConversationEx(ctx, "si_1_2", "abc")
+ if err != nil {
+ t.Fatal(err)
+ }
+}
+func Test_SearchConversation(t *testing.T) {
+ result, err := open_im_sdk.UserForSDK.Conversation().SearchConversation(ctx, "a")
+ if err != nil {
+ t.Fatal(err)
+ }
+ for _, v := range result {
+ t.Log(v)
+ }
+}
diff --git a/go/chao-sdk-core/testv2/create_msg_test.go b/go/chao-sdk-core/testv2/create_msg_test.go
new file mode 100644
index 0000000..d91971c
--- /dev/null
+++ b/go/chao-sdk-core/testv2/create_msg_test.go
@@ -0,0 +1,186 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package testv2
+
+import (
+ "github.com/openimsdk/openim-sdk-core/v3/open_im_sdk"
+ "github.com/openimsdk/openim-sdk-core/v3/sdk_struct"
+ "testing"
+)
+
+func Test_CreateTextMessage(t *testing.T) {
+ message, err := open_im_sdk.UserForSDK.Conversation().CreateTextMessage(ctx, "textMsg")
+ if err != nil {
+ t.Error(err)
+ }
+ t.Log(message)
+}
+
+func Test_CreateAdvancedTextMessage(t *testing.T) {
+ message, err := open_im_sdk.UserForSDK.Conversation().CreateAdvancedTextMessage(ctx, "textAdMsg", []*sdk_struct.MessageEntity{})
+ if err != nil {
+ t.Error(err)
+ }
+ t.Log(message)
+}
+
+func Test_CreateTextAtMessage(t *testing.T) {
+ message, err := open_im_sdk.UserForSDK.Conversation().CreateTextAtMessage(ctx, "textATtsg", []string{}, []*sdk_struct.AtInfo{}, &sdk_struct.MsgStruct{})
+ if err != nil {
+ t.Error(err)
+ }
+ t.Log(message)
+}
+
+func Test_CreateQuoteMessage(t *testing.T) {
+ message, err := open_im_sdk.UserForSDK.Conversation().CreateQuoteMessage(ctx, "textATtsg", &sdk_struct.MsgStruct{})
+ if err != nil {
+ t.Error(err)
+ }
+ t.Log(message)
+}
+
+func Test_CreateAdvancedQuoteMessage(t *testing.T) {
+ message, err := open_im_sdk.UserForSDK.Conversation().CreateAdvancedQuoteMessage(ctx, "textATtsg", &sdk_struct.MsgStruct{}, []*sdk_struct.MessageEntity{})
+ if err != nil {
+ t.Error(err)
+ }
+ t.Log(message)
+}
+
+func Test_CreateVideoMessageFromFullPath(t *testing.T) {
+ message, err := open_im_sdk.UserForSDK.Conversation().CreateVideoMessageFromFullPath(ctx, ".\\test.png", "mp4", 10, ".\\test.png")
+ if err != nil {
+ t.Error(err)
+ }
+ t.Log(message)
+}
+
+func Test_CreateCardMessage(t *testing.T) {
+ message, err := open_im_sdk.UserForSDK.Conversation().CreateCardMessage(ctx, &sdk_struct.CardElem{
+ UserID: "123456",
+ Nickname: "testname",
+ FaceURL: "",
+ })
+ if err != nil {
+ t.Error(err)
+ }
+ t.Log(message)
+}
+
+func Test_CreateImageMessage(t *testing.T) {
+ message, err := open_im_sdk.UserForSDK.Conversation().CreateImageMessage(ctx, ".\\test.png")
+ if err != nil {
+ t.Error(err)
+ }
+ t.Log(message)
+}
+
+func Test_CreateImageMessageByURL(t *testing.T) {
+ message, err := open_im_sdk.UserForSDK.Conversation().CreateImageMessageByURL(ctx, "",
+ sdk_struct.PictureBaseInfo{}, sdk_struct.PictureBaseInfo{}, sdk_struct.PictureBaseInfo{})
+ if err != nil {
+ t.Error(err)
+ }
+ t.Log(message)
+}
+
+func Test_CreateSoundMessageByURL(t *testing.T) {
+ message, err := open_im_sdk.UserForSDK.Conversation().CreateSoundMessageByURL(ctx, &sdk_struct.SoundBaseInfo{})
+ if err != nil {
+ t.Error(err)
+ }
+ t.Log(message)
+}
+
+func Test_CreateSoundMessage(t *testing.T) {
+ message, err := open_im_sdk.UserForSDK.Conversation().CreateSoundMessage(ctx, ".\\test.png", 20)
+ if err != nil {
+ t.Error(err)
+ }
+ t.Log(message)
+}
+
+func Test_CreateVideoMessage(t *testing.T) {
+ message, err := open_im_sdk.UserForSDK.Conversation().CreateVideoMessage(ctx, ".\\test.png", "mp4", 10, "")
+ if err != nil {
+ t.Error(err)
+ }
+ t.Log(message)
+}
+
+func Test_CreateVideoMessageByURL(t *testing.T) {
+ message, err := open_im_sdk.UserForSDK.Conversation().CreateVideoMessageByURL(ctx, sdk_struct.VideoBaseInfo{})
+ if err != nil {
+ t.Error(err)
+ }
+ t.Log(message)
+}
+
+func Test_CreateFileMessage(t *testing.T) {
+ message, err := open_im_sdk.UserForSDK.Conversation().CreateFileMessage(ctx, ".\\test.png", "png")
+ if err != nil {
+ t.Error(err)
+ }
+ t.Log(message)
+}
+
+func Test_CreateFileMessageByURL(t *testing.T) {
+ message, err := open_im_sdk.UserForSDK.Conversation().CreateFileMessageByURL(ctx, sdk_struct.FileBaseInfo{})
+ if err != nil {
+ t.Error(err)
+ }
+ t.Log(message)
+}
+
+func Test_CreateLocationMessage(t *testing.T) {
+ message, err := open_im_sdk.UserForSDK.Conversation().CreateLocationMessage(ctx, "", 0, 0)
+ if err != nil {
+ t.Error(err)
+ }
+ t.Log(message)
+}
+
+func Test_CreateCustomMessage(t *testing.T) {
+ message, err := open_im_sdk.UserForSDK.Conversation().CreateCustomMessage(ctx, "", "", "")
+ if err != nil {
+ t.Error(err)
+ }
+ t.Log(message)
+}
+
+func Test_CreateMergerMessage(t *testing.T) {
+ message, err := open_im_sdk.UserForSDK.Conversation().CreateMergerMessage(ctx, []*sdk_struct.MsgStruct{}, "title", []string{"summary"})
+ if err != nil {
+ t.Error(err)
+ }
+ t.Log(message)
+}
+
+func Test_CreateFaceMessage(t *testing.T) {
+ message, err := open_im_sdk.UserForSDK.Conversation().CreateFaceMessage(ctx, 0, "www.faceURL.com")
+ if err != nil {
+ t.Error(err)
+ }
+ t.Log(message)
+}
+
+func Test_CreateForwardMessage(t *testing.T) {
+ message, err := open_im_sdk.UserForSDK.Conversation().CreateForwardMessage(ctx, &sdk_struct.MsgStruct{})
+ if err != nil {
+ t.Error(err)
+ }
+ t.Log(message)
+}
diff --git a/go/chao-sdk-core/testv2/empty_test.go b/go/chao-sdk-core/testv2/empty_test.go
new file mode 100644
index 0000000..fa94f1a
--- /dev/null
+++ b/go/chao-sdk-core/testv2/empty_test.go
@@ -0,0 +1,42 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package testv2
+
+import (
+ "github.com/openimsdk/openim-sdk-core/v3/open_im_sdk"
+ "github.com/openimsdk/tools/log"
+ "testing"
+ "time"
+)
+
+func Test_ChangeInputState(t *testing.T) {
+ for {
+ err := open_im_sdk.UserForSDK.Conversation().ChangeInputStates(ctx, "sg_2309860938", true)
+ if err != nil {
+ log.ZError(ctx, "ChangeInputStates", err)
+ }
+ time.Sleep(time.Second * 1)
+ }
+}
+
+func Test_Empty(t *testing.T) {
+ for {
+ time.Sleep(time.Second * 1)
+ }
+}
+
+func Test_RunWait(t *testing.T) {
+ time.Sleep(time.Second * 10)
+}
diff --git a/go/chao-sdk-core/testv2/file_test.go b/go/chao-sdk-core/testv2/file_test.go
new file mode 100644
index 0000000..c180d73
--- /dev/null
+++ b/go/chao-sdk-core/testv2/file_test.go
@@ -0,0 +1,38 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package testv2
+
+import (
+ "github.com/openimsdk/openim-sdk-core/v3/internal/file"
+ "github.com/openimsdk/openim-sdk-core/v3/open_im_sdk"
+ "path/filepath"
+ "testing"
+)
+
+func TestUploadFile(t *testing.T) {
+
+ fp := `C:\Users\openIM\Desktop\dist.zip`
+
+ resp, err := open_im_sdk.UserForSDK.File().UploadFile(ctx, &file.UploadFileReq{
+ Filepath: fp,
+ Name: filepath.Base(fp),
+ Cause: "test",
+ }, nil)
+ if err != nil {
+ t.Fatal(err)
+ }
+ t.Log(resp)
+
+}
diff --git a/go/chao-sdk-core/testv2/friend_test.go b/go/chao-sdk-core/testv2/friend_test.go
new file mode 100644
index 0000000..48292c6
--- /dev/null
+++ b/go/chao-sdk-core/testv2/friend_test.go
@@ -0,0 +1,182 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package testv2
+
+import (
+ "github.com/openimsdk/openim-sdk-core/v3/open_im_sdk"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/sdk_params_callback"
+ "github.com/openimsdk/protocol/wrapperspb"
+ "testing"
+ "time"
+
+ friend2 "github.com/openimsdk/protocol/relation"
+)
+
+func Test_GetSpecifiedFriendsInfo(t *testing.T) {
+ info, err := open_im_sdk.UserForSDK.Friend().GetSpecifiedFriendsInfo(ctx, []string{"45644221123"})
+ if err != nil {
+ t.Fatal(err)
+ }
+ t.Log("GetDesignatedFriendsInfo success", ctx.Value("operationID"))
+ for _, userInfo := range info {
+ t.Log(userInfo)
+ }
+}
+
+func Test_AddFriend(t *testing.T) {
+ err := open_im_sdk.UserForSDK.Friend().AddFriend(ctx, &friend2.ApplyToAddFriendReq{
+ ToUserID: "2",
+ ReqMsg: "test add",
+ Ex: "add",
+ })
+ if err != nil {
+ t.Fatal(err)
+ }
+ t.Log("AddFriend success", ctx.Value("operationID"))
+}
+
+//funcation Test_GetRecvFriendApplicationList(t *testing.T) {
+// infos, err := open_im_sdk.UserForSDK.Friend().GetRecvFriendApplicationList(ctx)
+// if err != nil {
+// t.Fatal(err)
+// }
+// for _, info := range infos {
+// t.Logf("%#v", info)
+// }
+//}
+//
+//funcation Test_GetSendFriendApplicationList(t *testing.T) {
+// infos, err := open_im_sdk.UserForSDK.Friend().GetSendFriendApplicationList(ctx)
+// if err != nil {
+// t.Fatal(err)
+// }
+// for _, info := range infos {
+// t.Logf("%#v", info)
+// }
+//}
+
+func Test_AcceptFriendApplication(t *testing.T) {
+ req := &sdk_params_callback.ProcessFriendApplicationParams{ToUserID: "1", HandleMsg: "test accept"}
+ err := open_im_sdk.UserForSDK.Friend().AcceptFriendApplication(ctx, req)
+ if err != nil {
+ t.Fatal(err)
+ }
+ t.Log("AcceptFriendApplication success", ctx.Value("operationID"))
+ time.Sleep(time.Second * 30)
+}
+
+func Test_RefuseFriendApplication(t *testing.T) {
+ req := &sdk_params_callback.ProcessFriendApplicationParams{ToUserID: "6754269405", HandleMsg: "test refuse"}
+ err := open_im_sdk.UserForSDK.Friend().RefuseFriendApplication(ctx, req)
+ if err != nil {
+ t.Fatal(err)
+ }
+ t.Log("RefuseFriendApplication success", ctx.Value("operationID"))
+ time.Sleep(time.Second * 30)
+}
+
+func Test_CheckFriend(t *testing.T) {
+ res, err := open_im_sdk.UserForSDK.Friend().CheckFriend(ctx, []string{"863454357", "45644221123"})
+ if err != nil {
+ t.Fatal(err)
+ }
+ t.Log("CheckFriend success", ctx.Value("operationID"))
+ for _, re := range res {
+ t.Log(re)
+ }
+}
+func Test_PinFriend(t *testing.T) {
+ pinParams := &sdk_params_callback.SetFriendPinParams{
+ ToUserIDs: []string{"2", "3"},
+ IsPinned: &wrapperspb.BoolValue{Value: false},
+ }
+
+ err := open_im_sdk.UserForSDK.Friend().PinFriends(ctx, pinParams)
+
+ if err != nil {
+ t.Fatal(err)
+ }
+ t.Log("CheckFriend success", ctx.Value("operationID"))
+}
+func Test_DeleteFriend(t *testing.T) {
+ err := open_im_sdk.UserForSDK.Friend().DeleteFriend(ctx, "863454357")
+ if err != nil {
+ t.Fatal(err)
+ }
+ t.Log("DeleteFriend success", ctx.Value("operationID"))
+}
+
+func Test_GetFriendList(t *testing.T) {
+ infos, err := open_im_sdk.UserForSDK.Friend().GetFriendList(ctx)
+ if err != nil {
+ t.Fatal(err)
+ }
+ t.Log("GetFriendList success", ctx.Value("operationID"))
+ for _, info := range infos {
+ t.Logf("PublicInfo: %#v, FriendInfo: %#v, BlackInfo: %#v", info.PublicInfo, info.FriendInfo, info.BlackInfo)
+ }
+}
+
+func Test_SearchFriends(t *testing.T) {
+ info, err := open_im_sdk.UserForSDK.Friend().SearchFriends(ctx, &sdk_params_callback.SearchFriendsParam{KeywordList: []string{"863454357"}, IsSearchUserID: true})
+ if err != nil {
+ t.Fatal(err)
+ }
+ t.Log("SearchFriends success", ctx.Value("operationID"))
+ for _, item := range info {
+ t.Log(*item)
+ }
+}
+
+func Test_SetFriendRemark(t *testing.T) {
+ err := open_im_sdk.UserForSDK.Friend().SetFriendRemark(ctx, &sdk_params_callback.SetFriendRemarkParams{ToUserID: "863454357", Remark: "testRemark"})
+ if err != nil {
+ t.Fatal(err)
+ }
+ t.Log("SetFriendRemark success", ctx.Value("operationID"))
+}
+
+func Test_AddBlack(t *testing.T) {
+ err := open_im_sdk.UserForSDK.Friend().AddBlack(ctx, "863454357", "ex")
+ if err != nil {
+ t.Fatal(err)
+ }
+ t.Log("AddBlack success", ctx.Value("operationID"))
+}
+
+func Test_RemoveBlack(t *testing.T) {
+ err := open_im_sdk.UserForSDK.Friend().RemoveBlack(ctx, "863454357")
+ if err != nil {
+ t.Fatal(err)
+ }
+ t.Log("RemoveBlack success", ctx.Value("operationID"))
+}
+
+func Test_GetBlackList(t *testing.T) {
+ info, err := open_im_sdk.UserForSDK.Friend().GetBlackList(ctx)
+ if err != nil {
+ t.Fatal(err)
+ }
+ t.Log("GetBlackList success", ctx.Value("operationID"))
+ for _, item := range info {
+ t.Log(*item)
+ }
+}
+func Test_SetFriendsEx(t *testing.T) {
+ err := open_im_sdk.UserForSDK.Friend().SetFriendsEx(ctx, []string{"2"}, "exx")
+ if err != nil {
+ t.Fatal(err)
+ }
+}
diff --git a/go/chao-sdk-core/testv2/group_test.go b/go/chao-sdk-core/testv2/group_test.go
new file mode 100644
index 0000000..73061fd
--- /dev/null
+++ b/go/chao-sdk-core/testv2/group_test.go
@@ -0,0 +1,316 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package testv2
+
+import (
+ "github.com/openimsdk/openim-sdk-core/v3/open_im_sdk"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/sdk_params_callback"
+ "github.com/openimsdk/protocol/group"
+ "github.com/openimsdk/protocol/sdkws"
+ "github.com/openimsdk/protocol/wrapperspb"
+ "testing"
+)
+
+func Test_CreateGroupV2(t *testing.T) {
+ req := &group.CreateGroupReq{
+ MemberUserIDs: []string{"7299270930"},
+ AdminUserIDs: []string{"1"},
+ OwnerUserID: UserID,
+ GroupInfo: &sdkws.GroupInfo{
+ GroupName: "test",
+ GroupType: 2,
+ },
+ }
+ info, err := open_im_sdk.UserForSDK.Group().CreateGroup(ctx, req)
+ if err != nil {
+ t.Fatal(err)
+ }
+ t.Logf("group info: %s", info.String())
+}
+
+func Test_JoinGroup(t *testing.T) {
+ err := open_im_sdk.UserForSDK.Group().JoinGroup(ctx, "3889561099", "1234", 3, "ex")
+ if err != nil {
+ t.Fatal(err)
+ }
+ t.Log("InviteUserToGroup success")
+}
+
+func Test_QuitGroup(t *testing.T) {
+ err := open_im_sdk.UserForSDK.Group().QuitGroup(ctx, "xadxwr24")
+ if err != nil {
+ t.Fatal(err)
+ }
+ t.Log("QuitGroup success")
+}
+
+func Test_DismissGroup(t *testing.T) {
+ err := open_im_sdk.UserForSDK.Group().DismissGroup(ctx, "1728503199")
+ if err != nil {
+ t.Fatal(err)
+ }
+ t.Log("DismissGroup success")
+}
+
+func Test_ChangeGroupMute(t *testing.T) {
+ err := open_im_sdk.UserForSDK.Group().ChangeGroupMute(ctx, "3459296007", true)
+ if err != nil {
+ t.Fatal(err)
+ }
+ t.Log("ChangeGroupMute success", ctx.Value("operationID"))
+}
+
+func Test_CancelMuteGroup(t *testing.T) {
+ err := open_im_sdk.UserForSDK.Group().ChangeGroupMute(ctx, "3459296007", false)
+ if err != nil {
+ t.Fatal(err)
+ }
+ t.Log("ChangeGroupMute success", ctx.Value("operationID"))
+}
+
+func Test_ChangeGroupMemberMute(t *testing.T) {
+ err := open_im_sdk.UserForSDK.Group().ChangeGroupMemberMute(ctx, "3459296007", UserID, 10000)
+ if err != nil {
+ t.Fatal(err)
+ }
+ t.Log("ChangeGroupMute success", ctx.Value("operationID"))
+}
+
+func Test_CancelChangeGroupMemberMute(t *testing.T) {
+ err := open_im_sdk.UserForSDK.Group().ChangeGroupMemberMute(ctx, "3459296007", UserID, 0)
+ if err != nil {
+ t.Fatal(err)
+ }
+ t.Log("CancelChangeGroupMemberMute success", ctx.Value("operationID"))
+}
+
+func Test_SetGroupMemberRoleLevel(t *testing.T) {
+ // 1:æŽéæå 2:įž¤ä¸ģ 3:įŽĄįå
+ err := open_im_sdk.UserForSDK.Group().SetGroupMemberRoleLevel(ctx, "3459296007", "45644221123", 1)
+ if err != nil {
+ t.Fatal(err)
+ }
+ t.Log("SetGroupMemberRoleLevel success", ctx.Value("operationID"))
+}
+
+func Test_SetGroupMemberNickname(t *testing.T) {
+ err := open_im_sdk.UserForSDK.Group().SetGroupMemberNickname(ctx, "3459296007", "45644221123", "test1234")
+ if err != nil {
+ t.Fatal(err)
+ }
+ t.Log("SetGroupMemberNickname success", ctx.Value("operationID"))
+}
+
+func Test_SetGroupMemberInfo(t *testing.T) {
+ // 1:æŽéæå 2:įž¤ä¸ģ 3:įŽĄįå
+ err := open_im_sdk.UserForSDK.Group().SetGroupMemberInfo(ctx, &group.SetGroupMemberInfo{
+ GroupID: "3889561099",
+ UserID: UserID,
+ FaceURL: wrapperspb.String("https://doc.rentsoft.cn/images/logo.png"),
+ Nickname: wrapperspb.String("testupdatename"),
+ Ex: wrapperspb.String("a"),
+ })
+ if err != nil {
+ t.Fatal(err)
+ }
+ t.Log("SetGroupMemberNickname success", ctx.Value("operationID"))
+}
+
+func Test_GetJoinedGroupList(t *testing.T) {
+ info, err := open_im_sdk.UserForSDK.Group().GetJoinedGroupList(ctx)
+ if err != nil {
+ t.Fatal(err)
+ }
+ t.Logf("GetJoinedGroupList: %d\n", len(info))
+ for _, localGroup := range info {
+ t.Logf("%#v", localGroup)
+ }
+}
+
+func Test_GetSpecifiedGroupsInfo(t *testing.T) {
+ info, err := open_im_sdk.UserForSDK.Group().GetSpecifiedGroupsInfo(ctx, []string{"test"})
+ if err != nil {
+ t.Fatal(err)
+ }
+ t.Logf("GetGroupsInfo: %d\n", len(info))
+ for _, localGroup := range info {
+ t.Logf("%#v", localGroup)
+ }
+}
+
+func Test_GetGroupApplicationListAsRecipient(t *testing.T) {
+ info, err := open_im_sdk.UserForSDK.Group().GetGroupApplicationListAsRecipient(ctx)
+ if err != nil {
+ t.Fatal(err)
+ }
+ t.Logf("GetRecvGroupApplicationList: %d\n", len(info))
+ for _, localGroup := range info {
+ t.Logf("%#v", localGroup)
+ }
+}
+
+func Test_GetGroupApplicationListAsApplicant(t *testing.T) {
+ info, err := open_im_sdk.UserForSDK.Group().GetGroupApplicationListAsApplicant(ctx)
+ if err != nil {
+ t.Fatal(err)
+ }
+ t.Logf("GetSendGroupApplicationList: %d\n", len(info))
+ for _, localGroup := range info {
+ t.Logf("%#v", localGroup)
+ }
+}
+
+func Test_AcceptGroupApplication(t *testing.T) {
+ err := open_im_sdk.UserForSDK.Group().AcceptGroupApplication(ctx, "3459296007", "863454357", "test accept")
+ if err != nil {
+ t.Fatal(err)
+ }
+ t.Log("AcceptGroupApplication success", ctx.Value("operationID"))
+}
+
+func Test_RefuseGroupApplication(t *testing.T) {
+ t.Log("operationID:", ctx.Value("operationID"))
+ err := open_im_sdk.UserForSDK.Group().RefuseGroupApplication(ctx, "3459296007", "863454357", "test refuse")
+ if err != nil {
+ t.Fatal(err)
+ }
+ t.Log("AcceptGroupApplication success")
+}
+
+func Test_HandlerGroupApplication(t *testing.T) {
+ err := open_im_sdk.UserForSDK.Group().HandlerGroupApplication(ctx, nil)
+ if err != nil {
+ t.Fatal(err)
+ }
+ t.Log("AcceptGroupApplication success", ctx.Value("operationID"))
+}
+
+func Test_SearchGroupMembers(t *testing.T) {
+ info, err := open_im_sdk.UserForSDK.Group().SearchGroupMembers(ctx, &sdk_params_callback.SearchGroupMembersParam{
+ GroupID: "3459296007",
+ KeywordList: []string{""},
+ IsSearchUserID: false,
+ IsSearchMemberNickname: false,
+ Offset: 0,
+ Count: 10,
+ })
+ if err != nil {
+ t.Fatal(err)
+ }
+ t.Logf("SearchGroupMembers: %d\n", len(info))
+ for _, localGroup := range info {
+ t.Logf("%#v", localGroup)
+ }
+}
+
+func Test_KickGroupMember(t *testing.T) {
+ err := open_im_sdk.UserForSDK.Group().KickGroupMember(ctx, "3459296007", "test", []string{"863454357"})
+ if err != nil {
+ t.Fatal(err)
+ }
+ t.Log("InviteUserToGroup success", ctx.Value("operationID"))
+}
+
+func Test_TransferGroupOwner(t *testing.T) {
+ err := open_im_sdk.UserForSDK.Group().TransferGroupOwner(ctx, "1728503199", "5226390099")
+ if err != nil {
+ t.Fatal(err)
+ }
+ t.Log("TransferGroupOwner success", ctx.Value("operationID"))
+}
+
+func Test_InviteUserToGroup(t *testing.T) {
+ err := open_im_sdk.UserForSDK.Group().InviteUserToGroup(ctx, "3459296007", "test", []string{"45644221123"})
+ if err != nil {
+ t.Fatal(err)
+ }
+ t.Log("InviteUserToGroup success", ctx.Value("operationID"))
+}
+
+//func Test_SyncGroup(t *testing.T) {
+// err := open_im_sdk.UserForSDK.Group().SyncGroupMember(ctx, "3179997540")
+// if err != nil {
+// t.Fatal(err)
+// }
+// time.Sleep(time.Second * 100000)
+//}
+
+func Test_GetGroup(t *testing.T) {
+ t.Log("--------------------------")
+ infos, err := open_im_sdk.UserForSDK.Group().GetSpecifiedGroupsInfo(ctx, []string{"3179997540"})
+ if err != nil {
+ t.Fatal(err)
+ }
+ for i, info := range infos {
+ t.Logf("%d: %#v", i, info)
+ }
+ // time.Sleep(time.Second * 100000)
+}
+func Test_GetGroupApplicantsList(t *testing.T) {
+ t.Log("--------------------------")
+ infos, err := open_im_sdk.UserForSDK.Group().GetGroupApplicationListAsRecipient(ctx)
+ if err != nil {
+ t.Fatal(err)
+ }
+ for i, info := range infos {
+ t.Logf("%d: %#v", i, info)
+ }
+ // time.Sleep(time.Second * 100000)
+}
+func Test_IsJoinGroup(t *testing.T) {
+ t.Log("--------------------------")
+ join, err := open_im_sdk.UserForSDK.Group().IsJoinGroup(ctx, "3889561099")
+ if err != nil {
+ t.Fatal(err)
+ }
+ t.Log("join:", join)
+}
+
+func Test_GetGroupMemberList(t *testing.T) {
+ t.Log("--------------------------")
+ m := map[int32]string{
+ constant.GroupOwner: "įž¤ä¸ģ",
+ constant.GroupAdmin: "įŽĄįå",
+ constant.GroupOrdinaryUsers: "æå",
+ }
+
+ members, err := open_im_sdk.UserForSDK.Group().GetGroupMemberList(ctx, "3889561099", 0, 0, 9999999)
+ if err != nil {
+ panic(err)
+ }
+ for i, member := range members {
+ name := m[member.RoleLevel]
+ t.Log(i, member.UserID, member.Nickname, name)
+ }
+
+ t.Log("--------------------------")
+}
+
+func Test_SyncAllGroupMember(t *testing.T) {
+ err := open_im_sdk.UserForSDK.Group().SyncAllGroupMember(ctx, "3889561099")
+ if err != nil {
+ t.Fatal(err)
+ }
+}
+func Test_SetGroupInfo(t *testing.T) {
+ err := open_im_sdk.UserForSDK.Group().SetGroupInfo(ctx, &sdkws.GroupInfoForSet{
+ GroupID: "3889561099",
+ Ex: &wrapperspb.StringValue{Value: "groupex"},
+ })
+ if err != nil {
+ t.Fatal(err)
+ }
+}
diff --git a/go/chao-sdk-core/testv2/init.go b/go/chao-sdk-core/testv2/init.go
new file mode 100644
index 0000000..354cb73
--- /dev/null
+++ b/go/chao-sdk-core/testv2/init.go
@@ -0,0 +1,336 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package testv2
+
+import (
+ "bytes"
+ "context"
+ "encoding/json"
+ "fmt"
+ "github.com/openimsdk/openim-sdk-core/v3/open_im_sdk"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/ccontext"
+ "github.com/openimsdk/protocol/constant"
+ "io"
+ "math/rand"
+ "net/http"
+ "strconv"
+ "time"
+
+ "github.com/openimsdk/tools/log"
+)
+
+var (
+ ctx context.Context
+)
+
+func init() {
+ fmt.Println("------------------------>>>>>>>>>>>>>>>>>>> test v2 init funcation <<<<<<<<<<<<<<<<<<<------------------------")
+ rand.Seed(time.Now().UnixNano())
+ listner := &OnConnListener{}
+ config := getConf(APIADDR, WSADDR)
+ config.DataDir = "./"
+ configData, err := json.Marshal(config)
+ if err != nil {
+ panic(err)
+ }
+ isInit := open_im_sdk.InitSDK(listner, "test", string(configData))
+ if !isInit {
+ panic("init sdk failed")
+ }
+ ctx = open_im_sdk.UserForSDK.Context()
+ ctx = ccontext.WithOperationID(ctx, "initOperationID_"+strconv.Itoa(int(time.Now().UnixMilli())))
+ token, err := GetUserToken(ctx, UserID)
+ if err != nil {
+ panic(err)
+ }
+ if err := open_im_sdk.UserForSDK.Login(ctx, UserID, token); err != nil {
+ panic(err)
+ }
+ open_im_sdk.UserForSDK.SetConversationListener(&onConversationListener{ctx: ctx})
+ open_im_sdk.UserForSDK.SetGroupListener(&onGroupListener{ctx: ctx})
+ open_im_sdk.UserForSDK.SetAdvancedMsgListener(&onAdvancedMsgListener{ctx: ctx})
+ open_im_sdk.UserForSDK.SetFriendListener(&onFriendListener{ctx: ctx})
+ open_im_sdk.UserForSDK.SetUserListener(&onUserListener{ctx: ctx})
+ time.Sleep(time.Second * 2)
+}
+
+func GetUserToken(ctx context.Context, userID string) (string, error) {
+ jsonReqData, err := json.Marshal(map[string]any{
+ "userID": userID,
+ "platformID": constant.LinuxPlatformID,
+ "secret": "openIM123",
+ })
+ if err != nil {
+ return "", err
+ }
+ path := APIADDR + "/auth/user_token"
+ req, err := http.NewRequestWithContext(ctx, http.MethodPost, path, bytes.NewReader(jsonReqData))
+ if err != nil {
+ return "", err
+ }
+ req.Header.Set("operationID", ctx.Value("operationID").(string))
+ client := http.Client{Timeout: time.Second * 3}
+ resp, err := client.Do(req)
+ if err != nil {
+ return "", err
+ }
+ defer resp.Body.Close()
+ body, err := io.ReadAll(resp.Body)
+ if err != nil {
+ return "", err
+ }
+ type Result struct {
+ ErrCode int `json:"errCode"`
+ ErrMsg string `json:"errMsg"`
+ ErrDlt string `json:"errDlt"`
+ Data struct {
+ Token string `json:"token"`
+ ExpireTimeSeconds int `json:"expireTimeSeconds"`
+ } `json:"data"`
+ }
+ var result Result
+ if err := json.Unmarshal(body, &result); err != nil {
+ return "", err
+ }
+ if result.ErrCode != 0 {
+ return "", fmt.Errorf("errCode:%d, errMsg:%s, errDlt:%s", result.ErrCode, result.ErrMsg, result.ErrDlt)
+ }
+ return result.Data.Token, nil
+}
+
+type onListenerForService struct {
+ ctx context.Context
+}
+
+func (o *onListenerForService) OnGroupApplicationAdded(groupApplication string) {
+ log.ZInfo(o.ctx, "OnGroupApplicationAdded", "groupApplication", groupApplication)
+}
+
+func (o *onListenerForService) OnGroupApplicationAccepted(groupApplication string) {
+ log.ZInfo(o.ctx, "OnGroupApplicationAccepted", "groupApplication", groupApplication)
+}
+
+func (o *onListenerForService) OnFriendApplicationAdded(friendApplication string) {
+ log.ZInfo(o.ctx, "OnFriendApplicationAdded", "friendApplication", friendApplication)
+}
+
+func (o *onListenerForService) OnFriendApplicationAccepted(groupApplication string) {
+ log.ZInfo(o.ctx, "OnFriendApplicationAccepted", "groupApplication", groupApplication)
+}
+
+func (o *onListenerForService) OnRecvNewMessage(message string) {
+ log.ZInfo(o.ctx, "OnRecvNewMessage", "message", message)
+}
+
+type onConversationListener struct {
+ ctx context.Context
+}
+
+func (o *onConversationListener) OnSyncServerStart() {
+ log.ZInfo(o.ctx, "OnSyncServerStart")
+}
+
+func (o *onConversationListener) OnSyncServerFinish() {
+ log.ZInfo(o.ctx, "OnSyncServerFinish")
+}
+
+func (o *onConversationListener) OnSyncServerFailed() {
+ log.ZInfo(o.ctx, "OnSyncServerFailed")
+}
+
+func (o *onConversationListener) OnNewConversation(conversationList string) {
+ log.ZInfo(o.ctx, "OnNewConversation", "conversationList", conversationList)
+}
+
+func (o *onConversationListener) OnConversationChanged(conversationList string) {
+ log.ZInfo(o.ctx, "OnConversationChanged", "conversationList", conversationList)
+}
+
+func (o *onConversationListener) OnTotalUnreadMessageCountChanged(totalUnreadCount int32) {
+ log.ZInfo(o.ctx, "OnTotalUnreadMessageCountChanged", "totalUnreadCount", totalUnreadCount)
+}
+
+func (o *onConversationListener) OnConversationUserInputStatusChanged(change string) {
+ log.ZInfo(o.ctx, "OnConversationUserInputStatusChanged", "change", change)
+}
+
+type onGroupListener struct {
+ ctx context.Context
+}
+
+func (o *onGroupListener) OnGroupDismissed(groupInfo string) {
+ log.ZInfo(o.ctx, "OnGroupDismissed", "groupInfo", groupInfo)
+}
+
+func (o *onGroupListener) OnJoinedGroupAdded(groupInfo string) {
+ log.ZInfo(o.ctx, "OnJoinedGroupAdded", "groupInfo", groupInfo)
+}
+
+func (o *onGroupListener) OnJoinedGroupDeleted(groupInfo string) {
+ log.ZInfo(o.ctx, "OnJoinedGroupDeleted", "groupInfo", groupInfo)
+}
+
+func (o *onGroupListener) OnGroupMemberAdded(groupMemberInfo string) {
+ log.ZInfo(o.ctx, "OnGroupMemberAdded", "groupMemberInfo", groupMemberInfo)
+}
+
+func (o *onGroupListener) OnGroupMemberDeleted(groupMemberInfo string) {
+ log.ZInfo(o.ctx, "OnGroupMemberDeleted", "groupMemberInfo", groupMemberInfo)
+}
+
+func (o *onGroupListener) OnGroupApplicationAdded(groupApplication string) {
+ log.ZInfo(o.ctx, "OnGroupApplicationAdded", "groupApplication", groupApplication)
+}
+
+func (o *onGroupListener) OnGroupApplicationDeleted(groupApplication string) {
+ log.ZInfo(o.ctx, "OnGroupApplicationDeleted", "groupApplication", groupApplication)
+}
+
+func (o *onGroupListener) OnGroupInfoChanged(groupInfo string) {
+ log.ZInfo(o.ctx, "OnGroupInfoChanged", "groupInfo", groupInfo)
+}
+
+func (o *onGroupListener) OnGroupMemberInfoChanged(groupMemberInfo string) {
+ log.ZInfo(o.ctx, "OnGroupMemberInfoChanged", "groupMemberInfo", groupMemberInfo)
+}
+
+func (o *onGroupListener) OnGroupApplicationAccepted(groupApplication string) {
+ log.ZInfo(o.ctx, "OnGroupApplicationAccepted", "groupApplication", groupApplication)
+}
+
+func (o *onGroupListener) OnGroupApplicationRejected(groupApplication string) {
+ log.ZInfo(o.ctx, "OnGroupApplicationRejected", "groupApplication", groupApplication)
+}
+
+type onAdvancedMsgListener struct {
+ ctx context.Context
+}
+
+func (o *onAdvancedMsgListener) OnRecvOnlineOnlyMessage(message string) {
+ log.ZDebug(o.ctx, "OnRecvOnlineOnlyMessage", "message", message)
+}
+
+func (o *onAdvancedMsgListener) OnRecvOfflineNewMessage(message string) {
+ //TODO implement me
+ panic("implement me")
+}
+
+func (o *onAdvancedMsgListener) OnMsgDeleted(message string) {
+ log.ZInfo(o.ctx, "OnMsgDeleted", "message", message)
+}
+
+//funcation (o *onAdvancedMsgListener) OnMsgDeleted(messageList string) {
+// log.ZInfo(o.ctx, "OnRecvOfflineNewMessages", "messageList", messageList)
+//}
+//
+//funcation (o *onAdvancedMsgListener) OnMsgDeleted(message string) {
+// log.ZInfo(o.ctx, "OnMsgDeleted", "message", message)
+//}
+
+func (o *onAdvancedMsgListener) OnRecvOfflineNewMessages(messageList string) {
+ log.ZInfo(o.ctx, "OnRecvOfflineNewMessages", "messageList", messageList)
+}
+
+func (o *onAdvancedMsgListener) OnRecvNewMessage(message string) {
+ log.ZInfo(o.ctx, "OnRecvNewMessage", "message", message)
+}
+
+func (o *onAdvancedMsgListener) OnRecvC2CReadReceipt(msgReceiptList string) {
+ log.ZInfo(o.ctx, "OnRecvC2CReadReceipt", "msgReceiptList", msgReceiptList)
+}
+
+func (o *onAdvancedMsgListener) OnRecvGroupReadReceipt(groupMsgReceiptList string) {
+ log.ZInfo(o.ctx, "OnRecvGroupReadReceipt", "groupMsgReceiptList", groupMsgReceiptList)
+}
+
+func (o *onAdvancedMsgListener) OnRecvMessageRevoked(msgID string) {
+ log.ZInfo(o.ctx, "OnRecvMessageRevoked", "msgID", msgID)
+}
+
+func (o *onAdvancedMsgListener) OnNewRecvMessageRevoked(messageRevoked string) {
+ log.ZInfo(o.ctx, "OnNewRecvMessageRevoked", "messageRevoked", messageRevoked)
+}
+
+func (o *onAdvancedMsgListener) OnRecvMessageExtensionsChanged(msgID string, reactionExtensionList string) {
+ log.ZInfo(o.ctx, "OnRecvMessageExtensionsChanged", "msgID", msgID, "reactionExtensionList", reactionExtensionList)
+}
+
+func (o *onAdvancedMsgListener) OnRecvMessageExtensionsDeleted(msgID string, reactionExtensionKeyList string) {
+ log.ZInfo(o.ctx, "OnRecvMessageExtensionsDeleted", "msgID", msgID, "reactionExtensionKeyList", reactionExtensionKeyList)
+}
+
+func (o *onAdvancedMsgListener) OnRecvMessageExtensionsAdded(msgID string, reactionExtensionList string) {
+ log.ZInfo(o.ctx, "OnRecvMessageExtensionsAdded", "msgID", msgID, "reactionExtensionList", reactionExtensionList)
+}
+
+type onFriendListener struct {
+ ctx context.Context
+}
+
+func (o *onFriendListener) OnFriendApplicationAdded(friendApplication string) {
+ log.ZDebug(context.Background(), "OnFriendApplicationAdded", "friendApplication", friendApplication)
+}
+
+func (o *onFriendListener) OnFriendApplicationDeleted(friendApplication string) {
+ log.ZDebug(context.Background(), "OnFriendApplicationDeleted", "friendApplication", friendApplication)
+}
+
+func (o *onFriendListener) OnFriendApplicationAccepted(friendApplication string) {
+ log.ZDebug(context.Background(), "OnFriendApplicationAccepted", "friendApplication", friendApplication)
+}
+
+func (o *onFriendListener) OnFriendApplicationRejected(friendApplication string) {
+ log.ZDebug(context.Background(), "OnFriendApplicationRejected", "friendApplication", friendApplication)
+}
+
+func (o *onFriendListener) OnFriendAdded(friendInfo string) {
+ log.ZDebug(context.Background(), "OnFriendAdded", "friendInfo", friendInfo)
+}
+
+func (o *onFriendListener) OnFriendDeleted(friendInfo string) {
+ log.ZDebug(context.Background(), "OnFriendDeleted", "friendInfo", friendInfo)
+}
+
+func (o *onFriendListener) OnFriendInfoChanged(friendInfo string) {
+ log.ZDebug(context.Background(), "OnFriendInfoChanged", "friendInfo", friendInfo)
+}
+
+func (o *onFriendListener) OnBlackAdded(blackInfo string) {
+ log.ZDebug(context.Background(), "OnBlackAdded", "blackInfo", blackInfo)
+}
+
+func (o *onFriendListener) OnBlackDeleted(blackInfo string) {
+ log.ZDebug(context.Background(), "OnBlackDeleted", "blackInfo", blackInfo)
+}
+
+type onUserListener struct {
+ ctx context.Context
+}
+
+func (o *onUserListener) OnSelfInfoUpdated(userInfo string) {
+ log.ZDebug(context.Background(), "OnSelfInfoUpdated", "userInfo", userInfo)
+}
+func (o *onUserListener) OnUserCommandAdd(userInfo string) {
+ log.ZDebug(context.Background(), "OnUserCommandAdd", "blackInfo", userInfo)
+}
+func (o *onUserListener) OnUserCommandDelete(userInfo string) {
+ log.ZDebug(context.Background(), "OnUserCommandDelete", "blackInfo", userInfo)
+}
+func (o *onUserListener) OnUserCommandUpdate(userInfo string) {
+ log.ZDebug(context.Background(), "OnUserCommandUpdate", "blackInfo", userInfo)
+}
+func (o *onUserListener) OnUserStatusChanged(statusMap string) {
+ log.ZDebug(context.Background(), "OnUserStatusChanged", "OnUserStatusChanged", statusMap)
+}
diff --git a/go/chao-sdk-core/testv2/listener.go b/go/chao-sdk-core/testv2/listener.go
new file mode 100644
index 0000000..0855523
--- /dev/null
+++ b/go/chao-sdk-core/testv2/listener.go
@@ -0,0 +1,39 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package testv2
+
+type OnConnListener struct{}
+
+func (c *OnConnListener) OnUserTokenInvalid(errMsg string) {}
+
+func (c *OnConnListener) OnConnecting() {
+ // fmt.Println("OnConnecting")
+}
+
+func (c *OnConnListener) OnConnectSuccess() {
+ // fmt.Println("OnConnectSuccess")
+}
+
+func (c *OnConnListener) OnConnectFailed(errCode int32, errMsg string) {
+ // fmt.Println("OnConnectFailed")
+}
+
+func (c *OnConnListener) OnKickedOffline() {
+ // fmt.Println("OnKickedOffline")
+}
+
+func (c *OnConnListener) OnUserTokenExpired() {
+ // fmt.Println("OnUserTokenExpired")
+}
diff --git a/go/chao-sdk-core/testv2/signaling_test.go b/go/chao-sdk-core/testv2/signaling_test.go
new file mode 100644
index 0000000..e741cc5
--- /dev/null
+++ b/go/chao-sdk-core/testv2/signaling_test.go
@@ -0,0 +1,148 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package testv2
+
+// func Test_SignalingInviteInGroup(t *testing.T) {
+// resp, err := open_im_sdk.UserForSDK.Signaling().SignalingInviteInGroup(ctx, &sdkws.SignalInviteInGroupReq{
+// Invitation: &sdkws.InvitationInfo{
+// InviterUserID: UserID,
+// InviteeUserIDList: []string{"targetUser"},
+// CustomData: "",
+// GroupID: "testgroup",
+// RoomID: "testgroup",
+// Timeout: 30,
+// MediaType: "video",
+// PlatformID: 1,
+// SessionType: 3,
+// },
+// })
+// if err != nil {
+// t.Error(err)
+// }
+// t.Log(resp)
+// }
+
+// func Test_SignalingInite(t *testing.T) {
+// resp, err := open_im_sdk.UserForSDK.Signaling().SignalingInvite(ctx, &sdkws.SignalInviteReq{
+// Invitation: &sdkws.InvitationInfo{
+// InviterUserID: UserID,
+// InviteeUserIDList: []string{"targetUser"},
+// CustomData: "",
+// GroupID: "",
+// RoomID: "testroomID",
+// Timeout: 30,
+// MediaType: "video",
+// PlatformID: 1,
+// SessionType: 1,
+// },
+// })
+// if err != nil {
+// t.Error(err)
+// }
+// t.Log(resp)
+// }
+
+// func Test_SignalingAccept(t *testing.T) {
+// resp, err := open_im_sdk.UserForSDK.Signaling().SignalingAccept(ctx, &sdkws.SignalAcceptReq{
+// Invitation: &sdkws.InvitationInfo{
+// InviterUserID: UserID,
+// InviteeUserIDList: []string{"targetUser"},
+// CustomData: "",
+// GroupID: "",
+// RoomID: "testroomID",
+// Timeout: 30,
+// MediaType: "video",
+// PlatformID: 1,
+// SessionType: 1,
+// },
+// })
+// if err != nil {
+// t.Error(err)
+// }
+// t.Log(resp)
+// }
+
+// func Test_SignalingReject(t *testing.T) {
+// err := open_im_sdk.UserForSDK.Signaling().SignalingReject(ctx, &sdkws.SignalRejectReq{
+// Invitation: &sdkws.InvitationInfo{
+// InviterUserID: UserID,
+// InviteeUserIDList: []string{"targetUser"},
+// CustomData: "",
+// GroupID: "",
+// RoomID: "testroomID",
+// Timeout: 30,
+// MediaType: "video",
+// PlatformID: 1,
+// SessionType: 1,
+// },
+// })
+// if err != nil {
+// t.Error(err)
+// }
+// }
+
+// func Test_SignalingCancel(t *testing.T) {
+// err := open_im_sdk.UserForSDK.Signaling().SignalingCancel(ctx, &sdkws.SignalCancelReq{
+// Invitation: &sdkws.InvitationInfo{
+// InviterUserID: UserID,
+// InviteeUserIDList: []string{"targetUser"},
+// CustomData: "",
+// GroupID: "",
+// RoomID: "testroomID",
+// Timeout: 30,
+// MediaType: "video",
+// PlatformID: 1,
+// SessionType: 1,
+// },
+// })
+// if err != nil {
+// t.Error(err)
+// }
+// }
+
+// func Test_SignalingHungUp(t *testing.T) {
+// err := open_im_sdk.UserForSDK.Signaling().SignalingHungUp(ctx, &sdkws.SignalHungUpReq{
+// Invitation: &sdkws.InvitationInfo{
+// InviterUserID: UserID,
+// InviteeUserIDList: []string{"targetUser"},
+// CustomData: "",
+// GroupID: "",
+// RoomID: "testroomID",
+// Timeout: 30,
+// MediaType: "video",
+// PlatformID: 1,
+// SessionType: 1,
+// },
+// })
+// if err != nil {
+// t.Error(err)
+// }
+// }
+
+// func Test_SignalingGetRoomByGroupID(t *testing.T) {
+// resp, err := open_im_sdk.UserForSDK.Signaling().SignalingGetRoomByGroupID(ctx, "testgroupID")
+// if err != nil {
+// t.Error(err)
+// }
+// t.Log(resp)
+// }
+
+// func Test_SignalingGetTokenByRoomID(t *testing.T) {
+// resp, err := open_im_sdk.UserForSDK.Signaling().SignalingGetTokenByRoomID(ctx, "testroomID")
+// if err != nil {
+// t.Error(err)
+// }
+// t.Log(resp)
+// }
diff --git a/go/chao-sdk-core/testv2/sync2_test.go b/go/chao-sdk-core/testv2/sync2_test.go
new file mode 100644
index 0000000..16e9a0b
--- /dev/null
+++ b/go/chao-sdk-core/testv2/sync2_test.go
@@ -0,0 +1,71 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package testv2
+
+import (
+ "fmt"
+ "github.com/openimsdk/openim-sdk-core/v3/open_im_sdk"
+ "github.com/openimsdk/protocol/constant"
+ "github.com/openimsdk/protocol/group"
+ "github.com/openimsdk/protocol/sdkws"
+ "github.com/openimsdk/tools/log"
+ "testing"
+ "time"
+)
+
+func TestSyncFriend2(t *testing.T) {
+ for i := 0; ; i++ {
+ if err := open_im_sdk.UserForSDK.Friend().IncrSyncFriends(ctx); err != nil {
+ t.Log("IncrSyncFriends error-->", err)
+ continue
+ }
+ time.Sleep(time.Second)
+ }
+}
+
+func TestSyncJoinGroup2(t *testing.T) {
+ for i := 0; ; i++ {
+ if err := open_im_sdk.UserForSDK.Group().IncrSyncJoinGroup(ctx); err != nil {
+ t.Log("IncrSyncJoinGroup error-->", err)
+ continue
+ }
+ time.Sleep(time.Second)
+ }
+}
+
+func TestSyncGroupMember2(t *testing.T) {
+ for i := 0; ; i++ {
+ if err := open_im_sdk.UserForSDK.Group().IncrSyncJoinGroupMember(ctx); err != nil {
+ t.Log("IncrSyncGroupAndMember error-->", err)
+ continue
+ }
+ time.Sleep(time.Second)
+ }
+}
+
+func TestName(t *testing.T) {
+ for i := 1; i <= 600; i++ {
+ _, err := open_im_sdk.UserForSDK.Group().CreateGroup(ctx, &group.CreateGroupReq{
+ GroupInfo: &sdkws.GroupInfo{
+ GroupType: constant.WorkingGroup,
+ GroupName: fmt.Sprintf("group_%d", i),
+ },
+ MemberUserIDs: []string{"9556972319", "9719689061", "3872159645"},
+ })
+ if err != nil {
+ log.ZError(ctx, "group create failed", err, "index", i)
+ }
+ }
+}
diff --git a/go/chao-sdk-core/testv2/sync_test.go b/go/chao-sdk-core/testv2/sync_test.go
new file mode 100644
index 0000000..c0b3663
--- /dev/null
+++ b/go/chao-sdk-core/testv2/sync_test.go
@@ -0,0 +1,89 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package testv2
+
+import (
+ "github.com/openimsdk/openim-sdk-core/v3/open_im_sdk"
+ "testing"
+)
+
+//func Test_SyncJoinGroup(t *testing.T) {
+// err := open_im_sdk.UserForSDK.Group().SyncJoinedGroup(ctx)
+// if err != nil {
+// t.Fatal(err)
+// }
+//}
+
+func Test_SyncGroupMember(t *testing.T) {
+ //groups, err := open_im_sdk.UserForSDK.Group().GetServerJoinGroup(ctx)
+ //if err != nil {
+ // t.Fatal(err)
+ //}
+ //for _, group := range groups {
+ // err := open_im_sdk.UserForSDK.Group().SyncGroupMember(ctx, group.GroupID)
+ // if err != nil {
+ // t.Fatal(err)
+ // }
+ //}
+}
+
+//func Test_SyncSelfGroupApplication(t *testing.T) {
+// err := open_im_sdk.UserForSDK.Group().SyncSelfGroupApplication(ctx)
+// if err != nil {
+// t.Fatal(err)
+// }
+//}
+
+//func Test_SyncAdminGroupApplication(t *testing.T) {
+// err := open_im_sdk.UserForSDK.Group().SyncAdminGroupApplication(ctx)
+// if err != nil {
+// t.Fatal(err)
+// }
+//}
+
+func Test_SyncSelfFriendApplication(t *testing.T) {
+ err := open_im_sdk.UserForSDK.Friend().SyncAllSelfFriendApplication(ctx)
+ if err != nil {
+ t.Fatal(err)
+ }
+}
+
+func Test_SyncFriendApplication(t *testing.T) {
+ err := open_im_sdk.UserForSDK.Friend().SyncAllFriendApplication(ctx)
+ if err != nil {
+ t.Fatal(err)
+ }
+}
+
+func Test_SyncFriend(t *testing.T) {
+ err := open_im_sdk.UserForSDK.Friend().SyncAllFriendList(ctx)
+ if err != nil {
+ t.Fatal(err)
+ }
+}
+
+func Test_SyncBlack(t *testing.T) {
+ err := open_im_sdk.UserForSDK.Friend().SyncAllBlackList(ctx)
+ if err != nil {
+ t.Fatal(err)
+ }
+}
+
+func Test_SyncAllConversation(t *testing.T) {
+ err := open_im_sdk.UserForSDK.Conversation().SyncAllConversations(ctx)
+ if err != nil {
+ t.Fatal(err)
+ }
+}
diff --git a/go/chao-sdk-core/testv2/user_test.go b/go/chao-sdk-core/testv2/user_test.go
new file mode 100644
index 0000000..229928f
--- /dev/null
+++ b/go/chao-sdk-core/testv2/user_test.go
@@ -0,0 +1,226 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package testv2
+
+import (
+ "fmt"
+ "github.com/openimsdk/protocol/user"
+ "github.com/openimsdk/protocol/wrapperspb"
+ "testing"
+ "time"
+
+ "github.com/openimsdk/openim-sdk-core/v3/open_im_sdk"
+
+ "github.com/openimsdk/protocol/sdkws"
+)
+
+func Test_GetSelfUserInfo(t *testing.T) {
+ userInfo, err := open_im_sdk.UserForSDK.User().GetSelfUserInfo(ctx)
+ if err != nil {
+ t.Error(err)
+ }
+
+ t.Log(userInfo)
+}
+
+func Test_GetUsersInfo(t *testing.T) {
+ userInfo, err := open_im_sdk.UserForSDK.Full().GetUsersInfo(ctx, []string{"friendUserID"})
+ if err != nil {
+ t.Error(err)
+ }
+ if userInfo[0].BlackInfo != nil {
+ t.Log(userInfo[0].BlackInfo)
+ }
+ if userInfo[0].FriendInfo != nil {
+ t.Log(userInfo[0].FriendInfo)
+ }
+ if userInfo[0].PublicInfo != nil {
+ t.Log(userInfo[0].PublicInfo)
+ }
+}
+func Test_GetUsersInfoWithCache(t *testing.T) {
+ userInfo, err := open_im_sdk.UserForSDK.Full().GetUsersInfoWithCache(ctx, []string{"1"}, "")
+ if err != nil {
+ t.Error(err)
+ }
+ if userInfo[0].BlackInfo != nil {
+ t.Log(userInfo[0].BlackInfo)
+ }
+ if userInfo[0].FriendInfo != nil {
+ t.Log(userInfo[0].FriendInfo)
+ }
+ if userInfo[0].PublicInfo != nil {
+ t.Log(userInfo[0].PublicInfo)
+ }
+}
+func Test_SetSelfInfo(t *testing.T) {
+ newNickName := "test"
+ //newFaceURL := "http://test.com"
+ err := open_im_sdk.UserForSDK.User().SetSelfInfo(ctx, &sdkws.UserInfo{
+ Nickname: newNickName,
+ //FaceURL: newFaceURL,
+ })
+ newFaceURL := "http://test.com"
+
+ if err != nil {
+ t.Error(err)
+ }
+ userInfo, err := open_im_sdk.UserForSDK.User().GetSelfUserInfo(ctx)
+ if err != nil {
+ t.Error(err)
+ }
+ if userInfo.UserID != UserID && userInfo.Nickname != newNickName && userInfo.FaceURL != newFaceURL {
+ t.Error("user id not match")
+ }
+ t.Log(userInfo)
+ time.Sleep(time.Second * 10)
+}
+func Test_SetSelfInfoEx(t *testing.T) {
+ newNickName := "test"
+ //newFaceURL := "http://test.com"
+ err := open_im_sdk.UserForSDK.User().SetSelfInfoEx(ctx, &sdkws.UserInfoWithEx{
+ Nickname: &wrapperspb.StringValue{
+ Value: newNickName,
+ },
+ //FaceURL: newFaceURL,
+ Ex: &wrapperspb.StringValue{
+ Value: "ASD",
+ },
+ })
+ newFaceURL := "http://test.com"
+
+ if err != nil {
+ t.Error(err)
+ }
+ userInfo, err := open_im_sdk.UserForSDK.User().GetSelfUserInfo(ctx)
+ if err != nil {
+ t.Error(err)
+ }
+ if userInfo.UserID != UserID && userInfo.Nickname != newNickName && userInfo.FaceURL != newFaceURL {
+ t.Error("user id not match")
+ }
+ t.Log(userInfo)
+ time.Sleep(time.Second * 10)
+}
+
+func Test_UpdateMsgSenderInfo(t *testing.T) {
+ err := open_im_sdk.UserForSDK.User().UpdateMsgSenderInfo(ctx, "test", "http://test.com")
+ if err != nil {
+ t.Error(err)
+ }
+ userInfo, err := open_im_sdk.UserForSDK.User().GetSelfUserInfo(ctx)
+ if err != nil {
+ t.Error(err)
+ }
+ t.Log(userInfo)
+}
+
+func Test_SetSetGlobalRecvMessageOpt(t *testing.T) {
+ err := open_im_sdk.UserForSDK.User().SetGlobalRecvMessageOpt(ctx, 1)
+ if err != nil {
+ t.Fatal(err)
+ }
+}
+
+func Test_Sub(t *testing.T) {
+ var users []string
+ users = append(users, "2926672950")
+ status, err := open_im_sdk.UserForSDK.User().SubscribeUsersStatus(ctx, users)
+ if err != nil {
+ t.Error(err)
+ }
+ t.Log(status)
+
+ for i := 0; i < 20; i++ {
+ status, err = open_im_sdk.UserForSDK.User().SubscribeUsersStatus(ctx, users)
+ t.Log(status)
+ time.Sleep(time.Second * 3)
+ }
+}
+
+func Test_GetSubscribeUsersStatus(t *testing.T) {
+ status, err := open_im_sdk.UserForSDK.User().GetSubscribeUsersStatus(ctx)
+ if err != nil {
+ return
+ }
+ t.Log(status)
+}
+
+func Test_GetUserStatus(t *testing.T) {
+ var UserIDs []string
+ UserIDs = append(UserIDs, "2926672950")
+ status, err := open_im_sdk.UserForSDK.User().GetUserStatus(ctx, UserIDs)
+ if err != nil {
+ return
+ }
+ t.Log(status)
+}
+
+func Test_UnSub(t *testing.T) {
+ var users []string
+ users = append(users, "2926672950")
+ err := open_im_sdk.UserForSDK.User().UnsubscribeUsersStatus(ctx, users)
+ if err != nil {
+ t.Error(err)
+ }
+}
+
+func Test_UserCommandAdd(t *testing.T) {
+ // Creating a request with a pointer
+ req := &user.ProcessUserCommandAddReq{
+ UserID: "3",
+ Type: 8,
+ Uuid: "1",
+ Value: &wrapperspb.StringValue{
+ Value: "ASD",
+ },
+ Ex: &wrapperspb.StringValue{
+ Value: "ASD",
+ },
+ }
+
+ // Passing the pointer to the function
+ err := open_im_sdk.UserForSDK.User().ProcessUserCommandAdd(ctx, req)
+ if err != nil {
+ // Handle the error
+ t.Errorf("Failed to add favorite: %v", err)
+ }
+}
+func Test_UserCommandGet(t *testing.T) {
+ // Creating a request with a pointer
+
+ // Passing the pointer to the function
+ result, err := open_im_sdk.UserForSDK.User().ProcessUserCommandGetAll(ctx)
+ if err != nil {
+ // Handle the error
+ t.Errorf("Failed to add favorite: %v", err)
+ }
+ fmt.Printf("%v\n", result)
+}
+func Test_UserCommandDelete(t *testing.T) {
+ // Creating a request with a pointer
+ req := &user.ProcessUserCommandDeleteReq{
+ UserID: "3",
+ Type: 8,
+ Uuid: "1",
+ }
+
+ // Passing the pointer to the function
+ err := open_im_sdk.UserForSDK.User().ProcessUserCommandDelete(ctx, req)
+ if err != nil {
+ // Handle the error
+ t.Errorf("Failed to add favorite: %v", err)
+ }
+}
diff --git a/go/chao-sdk-core/testv2/work_moment_test.go b/go/chao-sdk-core/testv2/work_moment_test.go
new file mode 100644
index 0000000..15b2425
--- /dev/null
+++ b/go/chao-sdk-core/testv2/work_moment_test.go
@@ -0,0 +1,43 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+package testv2
+
+//
+//import (
+// "open_im_sdk/open_im_sdk"
+// "testing"
+//)
+//
+//funcation Test_GetWorkMomentsUnReadCount(t *testing.T) {
+// unreadCount, err := open_im_sdk.UserForSDK.WorkMoments().GetWorkMomentsUnReadCount(ctx)
+// if err != nil {
+// t.Error(err)
+// }
+// t.Log(unreadCount)
+//}
+//
+//funcation Test_GetWorkMomentsNotification(t *testing.T) {
+// notifications, err := open_im_sdk.UserForSDK.WorkMoments().GetWorkMomentsNotification(ctx, 0, 10)
+// if err != nil {
+// t.Error(err)
+// }
+// t.Log(notifications)
+//}
+//
+//funcation Test_ClearWorkMomentsNotification(t *testing.T) {
+// err := open_im_sdk.UserForSDK.WorkMoments().ClearWorkMomentsNotification(ctx)
+// if err != nil {
+// t.Error(err)
+// }
+//}
diff --git a/go/chao-sdk-core/version/version b/go/chao-sdk-core/version/version
new file mode 100644
index 0000000..240bba9
--- /dev/null
+++ b/go/chao-sdk-core/version/version
@@ -0,0 +1 @@
+3.7.0
\ No newline at end of file
diff --git a/go/chao-sdk-core/version/version.go b/go/chao-sdk-core/version/version.go
new file mode 100644
index 0000000..23b3a82
--- /dev/null
+++ b/go/chao-sdk-core/version/version.go
@@ -0,0 +1,6 @@
+package version
+
+import _ "embed"
+
+//go:embed version
+var Version string
diff --git a/go/chao-sdk-core/wasm/cmd/Makefile b/go/chao-sdk-core/wasm/cmd/Makefile
new file mode 100644
index 0000000..6b42a34
--- /dev/null
+++ b/go/chao-sdk-core/wasm/cmd/Makefile
@@ -0,0 +1,17 @@
+.PHONY: ios build install mac windows
+
+WASM_BIN_NAME=openIM.wasm
+
+
+#æ°å targetįæļåīŧä¸éĸįåŊäģ¤čĄčްåžį¨tabéĄļæ ŧ
+wasm:
+ GOOS=js GOARCH=wasm go build -trimpath -ldflags "-s -w" -o ${WASM_BIN_NAME} main.go
+
+build: static/main.wasm static/wasm_exec.js
+ goexec 'http.ListenAndServe(`:9999`, http.FileServer(http.Dir(`.`)))'
+
+static/wasm_exec.js:
+ cp "$(shell go env GOROOT)/misc/wasm/wasm_exec.js" static
+
+static/main.wasm : main.go
+ GO111MODULE=auto GOOS=js GOARCH=wasm go build -o static/${WASM_BIN_NAME}.wasm main.go
\ No newline at end of file
diff --git a/go/chao-sdk-core/wasm/cmd/main.go b/go/chao-sdk-core/wasm/cmd/main.go
new file mode 100644
index 0000000..f2f87fc
--- /dev/null
+++ b/go/chao-sdk-core/wasm/cmd/main.go
@@ -0,0 +1,196 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build js && wasm
+// +build js,wasm
+
+package main
+
+import (
+ "fmt"
+ "github.com/openimsdk/openim-sdk-core/v3/wasm/wasm_wrapper"
+ "runtime"
+ "runtime/debug"
+
+ "syscall/js"
+)
+
+func main() {
+ defer func() {
+ if r := recover(); r != nil {
+ fmt.Println("MAIN", "panic info is:", r, debug.Stack())
+ }
+ }()
+ fmt.Println("runtime env", runtime.GOARCH, runtime.GOOS)
+ registerFunc()
+ <-make(chan bool)
+}
+
+func registerFunc() {
+ //register global listener function
+ globalFuc := wasm_wrapper.NewWrapperCommon()
+ js.Global().Set(wasm_wrapper.COMMONEVENTFUNC, js.FuncOf(globalFuc.CommonEventFunc))
+ //register init login function
+ wrapperInitLogin := wasm_wrapper.NewWrapperInitLogin(globalFuc)
+ js.Global().Set("initSDK", js.FuncOf(wrapperInitLogin.InitSDK))
+ js.Global().Set("login", js.FuncOf(wrapperInitLogin.Login))
+ js.Global().Set("logout", js.FuncOf(wrapperInitLogin.Logout))
+ js.Global().Set("getLoginStatus", js.FuncOf(wrapperInitLogin.GetLoginStatus))
+ js.Global().Set("setAppBackgroundStatus", js.FuncOf(wrapperInitLogin.SetAppBackgroundStatus))
+ js.Global().Set("networkStatusChanged", js.FuncOf(wrapperInitLogin.NetworkStatusChanged))
+ //register conversation and message function
+ wrapperConMsg := wasm_wrapper.NewWrapperConMsg(globalFuc)
+ js.Global().Set("createTextMessage", js.FuncOf(wrapperConMsg.CreateTextMessage))
+ js.Global().Set("createImageMessage", js.FuncOf(wrapperConMsg.CreateImageMessage))
+ js.Global().Set("createImageMessageByURL", js.FuncOf(wrapperConMsg.CreateImageMessageByURL))
+ js.Global().Set("createSoundMessageByURL", js.FuncOf(wrapperConMsg.CreateSoundMessageByURL))
+ js.Global().Set("createVideoMessageByURL", js.FuncOf(wrapperConMsg.CreateVideoMessageByURL))
+ js.Global().Set("createFileMessageByURL", js.FuncOf(wrapperConMsg.CreateFileMessageByURL))
+ js.Global().Set("createCustomMessage", js.FuncOf(wrapperConMsg.CreateCustomMessage))
+ js.Global().Set("createQuoteMessage", js.FuncOf(wrapperConMsg.CreateQuoteMessage))
+ js.Global().Set("createAdvancedQuoteMessage", js.FuncOf(wrapperConMsg.CreateAdvancedQuoteMessage))
+ js.Global().Set("createAdvancedTextMessage", js.FuncOf(wrapperConMsg.CreateAdvancedTextMessage))
+ js.Global().Set("createCardMessage", js.FuncOf(wrapperConMsg.CreateCardMessage))
+ js.Global().Set("createTextAtMessage", js.FuncOf(wrapperConMsg.CreateTextAtMessage))
+ js.Global().Set("createVideoMessage", js.FuncOf(wrapperConMsg.CreateVideoMessage))
+ js.Global().Set("createFileMessage", js.FuncOf(wrapperConMsg.CreateFileMessage))
+ js.Global().Set("createMergerMessage", js.FuncOf(wrapperConMsg.CreateMergerMessage))
+ js.Global().Set("createFaceMessage", js.FuncOf(wrapperConMsg.CreateFaceMessage))
+ js.Global().Set("createForwardMessage", js.FuncOf(wrapperConMsg.CreateForwardMessage))
+ js.Global().Set("createLocationMessage", js.FuncOf(wrapperConMsg.CreateLocationMessage))
+ js.Global().Set("createVideoMessageFromFullPath", js.FuncOf(wrapperConMsg.CreateVideoMessageFromFullPath))
+ js.Global().Set("createImageMessageFromFullPath", js.FuncOf(wrapperConMsg.CreateImageMessageFromFullPath))
+
+ js.Global().Set("createSoundMessageFromFullPath", js.FuncOf(wrapperConMsg.CreateSoundMessageFromFullPath))
+ js.Global().Set("createFileMessageFromFullPath", js.FuncOf(wrapperConMsg.CreateFileMessageFromFullPath))
+ js.Global().Set("createSoundMessage", js.FuncOf(wrapperConMsg.CreateSoundMessage))
+ js.Global().Set("createForwardMessage", js.FuncOf(wrapperConMsg.CreateForwardMessage))
+ js.Global().Set("createLocationMessage", js.FuncOf(wrapperConMsg.CreateLocationMessage))
+ js.Global().Set("createVideoMessageFromFullPath", js.FuncOf(wrapperConMsg.CreateVideoMessageFromFullPath))
+ js.Global().Set("createImageMessageFromFullPath", js.FuncOf(wrapperConMsg.CreateImageMessageFromFullPath))
+ js.Global().Set("getAtAllTag", js.FuncOf(wrapperConMsg.GetAtAllTag))
+ js.Global().Set("markConversationMessageAsRead", js.FuncOf(wrapperConMsg.MarkConversationMessageAsRead))
+ js.Global().Set("markMessagesAsReadByMsgID", js.FuncOf(wrapperConMsg.MarkMessagesAsReadByMsgID))
+ js.Global().Set("sendMessage", js.FuncOf(wrapperConMsg.SendMessage))
+ js.Global().Set("sendMessageNotOss", js.FuncOf(wrapperConMsg.SendMessageNotOss))
+ //js.Global().Set("setMessageReactionExtensions", js.FuncOf(wrapperConMsg.SetMessageReactionExtensions))
+ //js.Global().Set("addMessageReactionExtensions", js.FuncOf(wrapperConMsg.AddMessageReactionExtensions))
+ //js.Global().Set("deleteMessageReactionExtensions", js.FuncOf(wrapperConMsg.DeleteMessageReactionExtensions))
+ //js.Global().Set("getMessageListReactionExtensions", js.FuncOf(wrapperConMsg.GetMessageListReactionExtensions))
+ //js.Global().Set("getMessageListSomeReactionExtensions", js.FuncOf(wrapperConMsg.GetMessageListSomeReactionExtensions))
+ js.Global().Set("getAllConversationList", js.FuncOf(wrapperConMsg.GetAllConversationList))
+ js.Global().Set("getConversationListSplit", js.FuncOf(wrapperConMsg.GetConversationListSplit))
+ js.Global().Set("getOneConversation", js.FuncOf(wrapperConMsg.GetOneConversation))
+ js.Global().Set("deleteConversationAndDeleteAllMsg", js.FuncOf(wrapperConMsg.DeleteConversationAndDeleteAllMsg))
+ js.Global().Set("getAdvancedHistoryMessageList", js.FuncOf(wrapperConMsg.GetAdvancedHistoryMessageList))
+ js.Global().Set("getAdvancedHistoryMessageListReverse", js.FuncOf(wrapperConMsg.GetAdvancedHistoryMessageListReverse))
+ js.Global().Set("getMultipleConversation", js.FuncOf(wrapperConMsg.GetMultipleConversation))
+ js.Global().Set("setConversationPrivateChat", js.FuncOf(wrapperConMsg.SetConversationPrivateChat))
+ js.Global().Set("setConversationRecvMessageOpt", js.FuncOf(wrapperConMsg.SetConversationRecvMessageOpt))
+ js.Global().Set("setGlobalRecvMessageOpt", js.FuncOf(wrapperConMsg.SetGlobalRecvMessageOpt))
+ js.Global().Set("hideConversation", js.FuncOf(wrapperConMsg.HideConversation))
+ js.Global().Set("setConversationDraft", js.FuncOf(wrapperConMsg.SetConversationDraft))
+ js.Global().Set("searchConversation", js.FuncOf(wrapperConMsg.SearchConversation))
+ js.Global().Set("resetConversationGroupAtType", js.FuncOf(wrapperConMsg.ResetConversationGroupAtType))
+ js.Global().Set("pinConversation", js.FuncOf(wrapperConMsg.PinConversation))
+ js.Global().Set("getTotalUnreadMsgCount", js.FuncOf(wrapperConMsg.GetTotalUnreadMsgCount))
+ js.Global().Set("setConversationBurnDuration", js.FuncOf(wrapperConMsg.SetConversationBurnDuration))
+ js.Global().Set("setConversationEx", js.FuncOf(wrapperConMsg.SetConversationEx))
+ js.Global().Set("findMessageList", js.FuncOf(wrapperConMsg.FindMessageList))
+
+ js.Global().Set("revokeMessage", js.FuncOf(wrapperConMsg.RevokeMessage))
+ js.Global().Set("typingStatusUpdate", js.FuncOf(wrapperConMsg.TypingStatusUpdate))
+ js.Global().Set("deleteMessageFromLocalStorage", js.FuncOf(wrapperConMsg.DeleteMessageFromLocalStorage))
+ js.Global().Set("deleteMessage", js.FuncOf(wrapperConMsg.DeleteMessage))
+ js.Global().Set("hideAllConversations", js.FuncOf(wrapperConMsg.HideAllConversations))
+ js.Global().Set("deleteAllMsgFromLocalAndSvr", js.FuncOf(wrapperConMsg.DeleteAllMsgFromLocalAndSvr))
+ js.Global().Set("deleteAllMsgFromLocal", js.FuncOf(wrapperConMsg.DeleteAllMsgFromLocal))
+ js.Global().Set("clearConversationAndDeleteAllMsg", js.FuncOf(wrapperConMsg.ClearConversationAndDeleteAllMsg))
+ js.Global().Set("insertSingleMessageToLocalStorage", js.FuncOf(wrapperConMsg.InsertSingleMessageToLocalStorage))
+ js.Global().Set("insertGroupMessageToLocalStorage", js.FuncOf(wrapperConMsg.InsertGroupMessageToLocalStorage))
+ js.Global().Set("searchLocalMessages", js.FuncOf(wrapperConMsg.SearchLocalMessages))
+ js.Global().Set("setMessageLocalEx", js.FuncOf(wrapperConMsg.SetMessageLocalEx))
+
+ js.Global().Set("changeInputStates", js.FuncOf(wrapperConMsg.ChangeInputStates))
+ js.Global().Set("getInputStates", js.FuncOf(wrapperConMsg.GetInputStates))
+
+ //register group funcation
+ wrapperGroup := wasm_wrapper.NewWrapperGroup(globalFuc)
+ js.Global().Set("createGroup", js.FuncOf(wrapperGroup.CreateGroup))
+ js.Global().Set("getSpecifiedGroupsInfo", js.FuncOf(wrapperGroup.GetSpecifiedGroupsInfo))
+ js.Global().Set("joinGroup", js.FuncOf(wrapperGroup.JoinGroup))
+ js.Global().Set("quitGroup", js.FuncOf(wrapperGroup.QuitGroup))
+ js.Global().Set("dismissGroup", js.FuncOf(wrapperGroup.DismissGroup))
+ js.Global().Set("changeGroupMute", js.FuncOf(wrapperGroup.ChangeGroupMute))
+ js.Global().Set("changeGroupMemberMute", js.FuncOf(wrapperGroup.ChangeGroupMemberMute))
+ js.Global().Set("setGroupMemberRoleLevel", js.FuncOf(wrapperGroup.SetGroupMemberRoleLevel))
+ js.Global().Set("setGroupMemberInfo", js.FuncOf(wrapperGroup.SetGroupMemberInfo))
+ js.Global().Set("getJoinedGroupList", js.FuncOf(wrapperGroup.GetJoinedGroupList))
+ js.Global().Set("searchGroups", js.FuncOf(wrapperGroup.SearchGroups))
+ js.Global().Set("setGroupInfo", js.FuncOf(wrapperGroup.SetGroupInfo))
+ js.Global().Set("setGroupVerification", js.FuncOf(wrapperGroup.SetGroupVerification))
+ js.Global().Set("setGroupLookMemberInfo", js.FuncOf(wrapperGroup.SetGroupLookMemberInfo))
+ js.Global().Set("setGroupApplyMemberFriend", js.FuncOf(wrapperGroup.SetGroupApplyMemberFriend))
+ js.Global().Set("getGroupMemberList", js.FuncOf(wrapperGroup.GetGroupMemberList))
+ js.Global().Set("getGroupMemberOwnerAndAdmin", js.FuncOf(wrapperGroup.GetGroupMemberOwnerAndAdmin))
+ js.Global().Set("getGroupMemberListByJoinTimeFilter", js.FuncOf(wrapperGroup.GetGroupMemberListByJoinTimeFilter))
+ js.Global().Set("getSpecifiedGroupMembersInfo", js.FuncOf(wrapperGroup.GetSpecifiedGroupMembersInfo))
+ js.Global().Set("kickGroupMember", js.FuncOf(wrapperGroup.KickGroupMember))
+ js.Global().Set("transferGroupOwner", js.FuncOf(wrapperGroup.TransferGroupOwner))
+ js.Global().Set("inviteUserToGroup", js.FuncOf(wrapperGroup.InviteUserToGroup))
+ js.Global().Set("getGroupApplicationListAsRecipient", js.FuncOf(wrapperGroup.GetGroupApplicationListAsRecipient))
+ js.Global().Set("getGroupApplicationListAsApplicant", js.FuncOf(wrapperGroup.GetGroupApplicationListAsApplicant))
+ js.Global().Set("acceptGroupApplication", js.FuncOf(wrapperGroup.AcceptGroupApplication))
+ js.Global().Set("refuseGroupApplication", js.FuncOf(wrapperGroup.RefuseGroupApplication))
+ js.Global().Set("setGroupMemberNickname", js.FuncOf(wrapperGroup.SetGroupMemberNickname))
+ js.Global().Set("searchGroupMembers", js.FuncOf(wrapperGroup.SearchGroupMembers))
+ js.Global().Set("isJoinGroup", js.FuncOf(wrapperGroup.IsJoinGroup))
+
+ wrapperUser := wasm_wrapper.NewWrapperUser(globalFuc)
+ js.Global().Set("getSelfUserInfo", js.FuncOf(wrapperUser.GetSelfUserInfo))
+ js.Global().Set("setSelfInfo", js.FuncOf(wrapperUser.SetSelfInfo))
+ js.Global().Set("setSelfInfoEx", js.FuncOf(wrapperUser.SetSelfInfoEx))
+ js.Global().Set("getUsersInfo", js.FuncOf(wrapperUser.GetUsersInfo))
+ js.Global().Set("getUsersInfoWithCache", js.FuncOf(wrapperUser.GetUsersInfoWithCache))
+ js.Global().Set("subscribeUsersStatus", js.FuncOf(wrapperUser.SubscribeUsersStatus))
+ js.Global().Set("unsubscribeUsersStatus", js.FuncOf(wrapperUser.UnsubscribeUsersStatus))
+ js.Global().Set("getSubscribeUsersStatus", js.FuncOf(wrapperUser.GetSubscribeUsersStatus))
+ js.Global().Set("getUserStatus", js.FuncOf(wrapperUser.GetUserStatus))
+ js.Global().Set("addUserCommand", js.FuncOf(wrapperUser.AddUserCommand))
+ js.Global().Set("deleteUserCommand", js.FuncOf(wrapperUser.DeleteUserCommand))
+ js.Global().Set("getAllUserCommands", js.FuncOf(wrapperUser.GetAllUserCommands))
+
+ wrapperFriend := wasm_wrapper.NewWrapperFriend(globalFuc)
+ js.Global().Set("getSpecifiedFriendsInfo", js.FuncOf(wrapperFriend.GetSpecifiedFriendsInfo))
+ js.Global().Set("getFriendList", js.FuncOf(wrapperFriend.GetFriendList))
+ js.Global().Set("searchFriends", js.FuncOf(wrapperFriend.SearchFriends))
+ js.Global().Set("checkFriend", js.FuncOf(wrapperFriend.CheckFriend))
+ js.Global().Set("addFriend", js.FuncOf(wrapperFriend.AddFriend))
+ js.Global().Set("setFriendRemark", js.FuncOf(wrapperFriend.SetFriendRemark))
+ js.Global().Set("pinFriends", js.FuncOf(wrapperFriend.PinFriends))
+ js.Global().Set("deleteFriend", js.FuncOf(wrapperFriend.DeleteFriend))
+ js.Global().Set("getFriendApplicationListAsRecipient", js.FuncOf(wrapperFriend.GetFriendApplicationListAsRecipient))
+ js.Global().Set("getFriendApplicationListAsApplicant", js.FuncOf(wrapperFriend.GetFriendApplicationListAsApplicant))
+ js.Global().Set("acceptFriendApplication", js.FuncOf(wrapperFriend.AcceptFriendApplication))
+ js.Global().Set("refuseFriendApplication", js.FuncOf(wrapperFriend.RefuseFriendApplication))
+ js.Global().Set("getBlackList", js.FuncOf(wrapperFriend.GetBlackList))
+ js.Global().Set("removeBlack", js.FuncOf(wrapperFriend.RemoveBlack))
+ js.Global().Set("addBlack", js.FuncOf(wrapperFriend.AddBlack))
+ js.Global().Set("setFriendsEx", js.FuncOf(wrapperFriend.SetFriendsEx))
+
+ wrapperThird := wasm_wrapper.NewWrapperThird(globalFuc)
+ js.Global().Set("updateFcmToken", js.FuncOf(wrapperThird.UpdateFcmToken))
+ js.Global().Set("uploadFile", js.FuncOf(wrapperThird.UploadFile))
+
+}
diff --git a/go/chao-sdk-core/wasm/cmd/static/wasm_exec.js b/go/chao-sdk-core/wasm/cmd/static/wasm_exec.js
new file mode 100644
index 0000000..9cd1ba7
--- /dev/null
+++ b/go/chao-sdk-core/wasm/cmd/static/wasm_exec.js
@@ -0,0 +1,554 @@
+// Copyright 2018 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+"use strict";
+
+(() => {
+ const enosys = () => {
+ const err = new Error("not implemented");
+ err.code = "ENOSYS";
+ return err;
+ };
+
+ if (!globalThis.fs) {
+ let outputBuf = "";
+ globalThis.fs = {
+ constants: { O_WRONLY: -1, O_RDWR: -1, O_CREAT: -1, O_TRUNC: -1, O_APPEND: -1, O_EXCL: -1 }, // unused
+ writeSync(fd, buf) {
+ outputBuf += decoder.decode(buf);
+ const nl = outputBuf.lastIndexOf("\n");
+ if (nl != -1) {
+ console.log(outputBuf.substring(0, nl));
+ outputBuf = outputBuf.substring(nl + 1);
+ }
+ return buf.length;
+ },
+ write(fd, buf, offset, length, position, callback) {
+ if (offset !== 0 || length !== buf.length || position !== null) {
+ callback(enosys());
+ return;
+ }
+ const n = this.writeSync(fd, buf);
+ callback(null, n);
+ },
+ chmod(path, mode, callback) { callback(enosys()); },
+ chown(path, uid, gid, callback) { callback(enosys()); },
+ close(fd, callback) { callback(enosys()); },
+ fchmod(fd, mode, callback) { callback(enosys()); },
+ fchown(fd, uid, gid, callback) { callback(enosys()); },
+ fstat(fd, callback) { callback(enosys()); },
+ fsync(fd, callback) { callback(null); },
+ ftruncate(fd, length, callback) { callback(enosys()); },
+ lchown(path, uid, gid, callback) { callback(enosys()); },
+ link(path, link, callback) { callback(enosys()); },
+ lstat(path, callback) { callback(enosys()); },
+ mkdir(path, perm, callback) { callback(enosys()); },
+ open(path, flags, mode, callback) { callback(enosys()); },
+ read(fd, buffer, offset, length, position, callback) { callback(enosys()); },
+ readdir(path, callback) { callback(enosys()); },
+ readlink(path, callback) { callback(enosys()); },
+ rename(from, to, callback) { callback(enosys()); },
+ rmdir(path, callback) { callback(enosys()); },
+ stat(path, callback) { callback(enosys()); },
+ symlink(path, link, callback) { callback(enosys()); },
+ truncate(path, length, callback) { callback(enosys()); },
+ unlink(path, callback) { callback(enosys()); },
+ utimes(path, atime, mtime, callback) { callback(enosys()); },
+ };
+ }
+
+ if (!globalThis.process) {
+ globalThis.process = {
+ getuid() { return -1; },
+ getgid() { return -1; },
+ geteuid() { return -1; },
+ getegid() { return -1; },
+ getgroups() { throw enosys(); },
+ pid: -1,
+ ppid: -1,
+ umask() { throw enosys(); },
+ cwd() { throw enosys(); },
+ chdir() { throw enosys(); },
+ }
+ }
+
+ if (!globalThis.crypto) {
+ throw new Error("globalThis.crypto is not available, polyfill required (crypto.getRandomValues only)");
+ }
+
+ if (!globalThis.performance) {
+ throw new Error("globalThis.performance is not available, polyfill required (performance.now only)");
+ }
+
+ if (!globalThis.TextEncoder) {
+ throw new Error("globalThis.TextEncoder is not available, polyfill required");
+ }
+
+ if (!globalThis.TextDecoder) {
+ throw new Error("globalThis.TextDecoder is not available, polyfill required");
+ }
+
+ const encoder = new TextEncoder("utf-8");
+ const decoder = new TextDecoder("utf-8");
+
+ globalThis.Go = class {
+ constructor() {
+ this.argv = ["js"];
+ this.env = {};
+ this.exit = (code) => {
+ if (code !== 0) {
+ console.warn("exit code:", code);
+ }
+ };
+ this._exitPromise = new Promise((resolve) => {
+ this._resolveExitPromise = resolve;
+ });
+ this._pendingEvent = null;
+ this._scheduledTimeouts = new Map();
+ this._nextCallbackTimeoutID = 1;
+
+ const setInt64 = (addr, v) => {
+ this.mem.setUint32(addr + 0, v, true);
+ this.mem.setUint32(addr + 4, Math.floor(v / 4294967296), true);
+ }
+
+ const getInt64 = (addr) => {
+ const low = this.mem.getUint32(addr + 0, true);
+ const high = this.mem.getInt32(addr + 4, true);
+ return low + high * 4294967296;
+ }
+
+ const loadValue = (addr) => {
+ const f = this.mem.getFloat64(addr, true);
+ if (f === 0) {
+ return undefined;
+ }
+ if (!isNaN(f)) {
+ return f;
+ }
+
+ const id = this.mem.getUint32(addr, true);
+ return this._values[id];
+ }
+
+ const storeValue = (addr, v) => {
+ const nanHead = 0x7FF80000;
+
+ if (typeof v === "number" && v !== 0) {
+ if (isNaN(v)) {
+ this.mem.setUint32(addr + 4, nanHead, true);
+ this.mem.setUint32(addr, 0, true);
+ return;
+ }
+ this.mem.setFloat64(addr, v, true);
+ return;
+ }
+
+ if (v === undefined) {
+ this.mem.setFloat64(addr, 0, true);
+ return;
+ }
+
+ let id = this._ids.get(v);
+ if (id === undefined) {
+ id = this._idPool.pop();
+ if (id === undefined) {
+ id = this._values.length;
+ }
+ this._values[id] = v;
+ this._goRefCounts[id] = 0;
+ this._ids.set(v, id);
+ }
+ this._goRefCounts[id]++;
+ let typeFlag = 0;
+ switch (typeof v) {
+ case "object":
+ if (v !== null) {
+ typeFlag = 1;
+ }
+ break;
+ case "string":
+ typeFlag = 2;
+ break;
+ case "symbol":
+ typeFlag = 3;
+ break;
+ case "function":
+ typeFlag = 4;
+ break;
+ }
+ this.mem.setUint32(addr + 4, nanHead | typeFlag, true);
+ this.mem.setUint32(addr, id, true);
+ }
+
+ const loadSlice = (addr) => {
+ const array = getInt64(addr + 0);
+ const len = getInt64(addr + 8);
+ return new Uint8Array(this._inst.exports.mem.buffer, array, len);
+ }
+
+ const loadSliceOfValues = (addr) => {
+ const array = getInt64(addr + 0);
+ const len = getInt64(addr + 8);
+ const a = new Array(len);
+ for (let i = 0; i < len; i++) {
+ a[i] = loadValue(array + i * 8);
+ }
+ return a;
+ }
+
+ const loadString = (addr) => {
+ const saddr = getInt64(addr + 0);
+ const len = getInt64(addr + 8);
+ return decoder.decode(new DataView(this._inst.exports.mem.buffer, saddr, len));
+ }
+
+ const timeOrigin = Date.now() - performance.now();
+ this.importObject = {
+ go: {
+ // Go's SP does not change as long as no Go code is running. Some operations (e.g. calls, getters and setters)
+ // may synchronously trigger a Go event handler. This makes Go code get executed in the middle of the imported
+ // function. A goroutine can switch to a new stack if the current stack is too small (see morestack function).
+ // This changes the SP, thus we have to update the SP used by the imported function.
+
+ // funcation wasmExit(code int32)
+ "runtime.wasmExit": (sp) => {
+ sp >>>= 0;
+ const code = this.mem.getInt32(sp + 8, true);
+ this.exited = true;
+ delete this._inst;
+ delete this._values;
+ delete this._goRefCounts;
+ delete this._ids;
+ delete this._idPool;
+ this.exit(code);
+ },
+
+ // funcation wasmWrite(fd uintptr, p unsafe.Pointer, n int32)
+ "runtime.wasmWrite": (sp) => {
+ sp >>>= 0;
+ const fd = getInt64(sp + 8);
+ const p = getInt64(sp + 16);
+ const n = this.mem.getInt32(sp + 24, true);
+ fs.writeSync(fd, new Uint8Array(this._inst.exports.mem.buffer, p, n));
+ },
+
+ // funcation resetMemoryDataView()
+ "runtime.resetMemoryDataView": (sp) => {
+ sp >>>= 0;
+ this.mem = new DataView(this._inst.exports.mem.buffer);
+ },
+
+ // funcation nanotime1() int64
+ "runtime.nanotime1": (sp) => {
+ sp >>>= 0;
+ setInt64(sp + 8, (timeOrigin + performance.now()) * 1000000);
+ },
+
+ // funcation walltime() (sec int64, nsec int32)
+ "runtime.walltime": (sp) => {
+ sp >>>= 0;
+ const msec = (new Date).getTime();
+ setInt64(sp + 8, msec / 1000);
+ this.mem.setInt32(sp + 16, (msec % 1000) * 1000000, true);
+ },
+
+ // funcation scheduleTimeoutEvent(delay int64) int32
+ "runtime.scheduleTimeoutEvent": (sp) => {
+ sp >>>= 0;
+ const id = this._nextCallbackTimeoutID;
+ this._nextCallbackTimeoutID++;
+ this._scheduledTimeouts.set(id, setTimeout(
+ () => {
+ this._resume();
+ while (this._scheduledTimeouts.has(id)) {
+ // for some reason Go failed to register the timeout event, log and try again
+ // (temporary workaround for https://github.com/golang/go/issues/28975)
+ console.warn("scheduleTimeoutEvent: missed timeout event");
+ this._resume();
+ }
+ },
+ getInt64(sp + 8) + 1, // setTimeout has been seen to fire up to 1 millisecond early
+ ));
+ this.mem.setInt32(sp + 16, id, true);
+ },
+
+ // funcation clearTimeoutEvent(id int32)
+ "runtime.clearTimeoutEvent": (sp) => {
+ sp >>>= 0;
+ const id = this.mem.getInt32(sp + 8, true);
+ clearTimeout(this._scheduledTimeouts.get(id));
+ this._scheduledTimeouts.delete(id);
+ },
+
+ // funcation getRandomData(r []byte)
+ "runtime.getRandomData": (sp) => {
+ sp >>>= 0;
+ crypto.getRandomValues(loadSlice(sp + 8));
+ },
+
+ // funcation finalizeRef(v ref)
+ "syscall/js.finalizeRef": (sp) => {
+ sp >>>= 0;
+ const id = this.mem.getUint32(sp + 8, true);
+ this._goRefCounts[id]--;
+ if (this._goRefCounts[id] === 0) {
+ const v = this._values[id];
+ this._values[id] = null;
+ this._ids.delete(v);
+ this._idPool.push(id);
+ }
+ },
+
+ // funcation stringVal(value string) ref
+ "syscall/js.stringVal": (sp) => {
+ sp >>>= 0;
+ storeValue(sp + 24, loadString(sp + 8));
+ },
+
+ // funcation valueGet(v ref, p string) ref
+ "syscall/js.valueGet": (sp) => {
+ sp >>>= 0;
+ const result = Reflect.get(loadValue(sp + 8), loadString(sp + 16));
+ sp = this._inst.exports.getsp() >>> 0; // see comment above
+ storeValue(sp + 32, result);
+ },
+
+ // funcation valueSet(v ref, p string, x ref)
+ "syscall/js.valueSet": (sp) => {
+ sp >>>= 0;
+ Reflect.set(loadValue(sp + 8), loadString(sp + 16), loadValue(sp + 32));
+ },
+
+ // funcation valueDelete(v ref, p string)
+ "syscall/js.valueDelete": (sp) => {
+ sp >>>= 0;
+ Reflect.deleteProperty(loadValue(sp + 8), loadString(sp + 16));
+ },
+
+ // funcation valueIndex(v ref, i int) ref
+ "syscall/js.valueIndex": (sp) => {
+ sp >>>= 0;
+ storeValue(sp + 24, Reflect.get(loadValue(sp + 8), getInt64(sp + 16)));
+ },
+
+ // valueSetIndex(v ref, i int, x ref)
+ "syscall/js.valueSetIndex": (sp) => {
+ sp >>>= 0;
+ Reflect.set(loadValue(sp + 8), getInt64(sp + 16), loadValue(sp + 24));
+ },
+
+ // funcation valueCall(v ref, m string, args []ref) (ref, bool)
+ "syscall/js.valueCall": (sp) => {
+ sp >>>= 0;
+ try {
+ const v = loadValue(sp + 8);
+ const m = Reflect.get(v, loadString(sp + 16));
+ const args = loadSliceOfValues(sp + 32);
+ const result = Reflect.apply(m, v, args);
+ sp = this._inst.exports.getsp() >>> 0; // see comment above
+ storeValue(sp + 56, result);
+ this.mem.setUint8(sp + 64, 1);
+ } catch (err) {
+ sp = this._inst.exports.getsp() >>> 0; // see comment above
+ storeValue(sp + 56, err);
+ this.mem.setUint8(sp + 64, 0);
+ }
+ },
+
+ // funcation valueInvoke(v ref, args []ref) (ref, bool)
+ "syscall/js.valueInvoke": (sp) => {
+ sp >>>= 0;
+ try {
+ const v = loadValue(sp + 8);
+ const args = loadSliceOfValues(sp + 16);
+ const result = Reflect.apply(v, undefined, args);
+ sp = this._inst.exports.getsp() >>> 0; // see comment above
+ storeValue(sp + 40, result);
+ this.mem.setUint8(sp + 48, 1);
+ } catch (err) {
+ sp = this._inst.exports.getsp() >>> 0; // see comment above
+ storeValue(sp + 40, err);
+ this.mem.setUint8(sp + 48, 0);
+ }
+ },
+
+ // funcation valueNew(v ref, args []ref) (ref, bool)
+ "syscall/js.valueNew": (sp) => {
+ sp >>>= 0;
+ try {
+ const v = loadValue(sp + 8);
+ const args = loadSliceOfValues(sp + 16);
+ const result = Reflect.construct(v, args);
+ sp = this._inst.exports.getsp() >>> 0; // see comment above
+ storeValue(sp + 40, result);
+ this.mem.setUint8(sp + 48, 1);
+ } catch (err) {
+ sp = this._inst.exports.getsp() >>> 0; // see comment above
+ storeValue(sp + 40, err);
+ this.mem.setUint8(sp + 48, 0);
+ }
+ },
+
+ // funcation valueLength(v ref) int
+ "syscall/js.valueLength": (sp) => {
+ sp >>>= 0;
+ setInt64(sp + 16, parseInt(loadValue(sp + 8).length));
+ },
+
+ // valuePrepareString(v ref) (ref, int)
+ "syscall/js.valuePrepareString": (sp) => {
+ sp >>>= 0;
+ const str = encoder.encode(String(loadValue(sp + 8)));
+ storeValue(sp + 16, str);
+ setInt64(sp + 24, str.length);
+ },
+
+ // valueLoadString(v ref, b []byte)
+ "syscall/js.valueLoadString": (sp) => {
+ sp >>>= 0;
+ const str = loadValue(sp + 8);
+ loadSlice(sp + 16).set(str);
+ },
+
+ // funcation valueInstanceOf(v ref, t ref) bool
+ "syscall/js.valueInstanceOf": (sp) => {
+ sp >>>= 0;
+ this.mem.setUint8(sp + 24, (loadValue(sp + 8) instanceof loadValue(sp + 16)) ? 1 : 0);
+ },
+
+ // funcation copyBytesToGo(dst []byte, src ref) (int, bool)
+ "syscall/js.copyBytesToGo": (sp) => {
+ sp >>>= 0;
+ const dst = loadSlice(sp + 8);
+ const src = loadValue(sp + 32);
+ if (!(src instanceof Uint8Array || src instanceof Uint8ClampedArray)) {
+ this.mem.setUint8(sp + 48, 0);
+ return;
+ }
+ const toCopy = src.subarray(0, dst.length);
+ dst.set(toCopy);
+ setInt64(sp + 40, toCopy.length);
+ this.mem.setUint8(sp + 48, 1);
+ },
+
+ // funcation copyBytesToJS(dst ref, src []byte) (int, bool)
+ "syscall/js.copyBytesToJS": (sp) => {
+ sp >>>= 0;
+ const dst = loadValue(sp + 8);
+ const src = loadSlice(sp + 16);
+ if (!(dst instanceof Uint8Array || dst instanceof Uint8ClampedArray)) {
+ this.mem.setUint8(sp + 48, 0);
+ return;
+ }
+ const toCopy = src.subarray(0, dst.length);
+ dst.set(toCopy);
+ setInt64(sp + 40, toCopy.length);
+ this.mem.setUint8(sp + 48, 1);
+ },
+
+ "debug": (value) => {
+ console.log(value);
+ },
+ }
+ };
+ }
+
+ async run(instance) {
+ if (!(instance instanceof WebAssembly.Instance)) {
+ throw new Error("Go.run: WebAssembly.Instance expected");
+ }
+ this._inst = instance;
+ this.mem = new DataView(this._inst.exports.mem.buffer);
+ this._values = [ // JS values that Go currently has references to, indexed by reference id
+ NaN,
+ 0,
+ null,
+ true,
+ false,
+ globalThis,
+ this,
+ ];
+ this._goRefCounts = new Array(this._values.length).fill(Infinity); // number of references that Go has to a JS value, indexed by reference id
+ this._ids = new Map([ // mapping from JS values to reference ids
+ [0, 1],
+ [null, 2],
+ [true, 3],
+ [false, 4],
+ [globalThis, 5],
+ [this, 6],
+ ]);
+ this._idPool = []; // unused ids that have been garbage collected
+ this.exited = false; // whether the Go program has exited
+
+ // Pass command line arguments and environment variables to WebAssembly by writing them to the linear memory.
+ let offset = 4096;
+
+ const strPtr = (str) => {
+ const ptr = offset;
+ const bytes = encoder.encode(str + "\0");
+ new Uint8Array(this.mem.buffer, offset, bytes.length).set(bytes);
+ offset += bytes.length;
+ if (offset % 8 !== 0) {
+ offset += 8 - (offset % 8);
+ }
+ return ptr;
+ };
+
+ const argc = this.argv.length;
+
+ const argvPtrs = [];
+ this.argv.forEach((arg) => {
+ argvPtrs.push(strPtr(arg));
+ });
+ argvPtrs.push(0);
+
+ const keys = Object.keys(this.env).sort();
+ keys.forEach((key) => {
+ argvPtrs.push(strPtr(`${key}=${this.env[key]}`));
+ });
+ argvPtrs.push(0);
+
+ const argv = offset;
+ argvPtrs.forEach((ptr) => {
+ this.mem.setUint32(offset, ptr, true);
+ this.mem.setUint32(offset + 4, 0, true);
+ offset += 8;
+ });
+
+ // The linker guarantees global data starts from at least wasmMinDataAddr.
+ // Keep in sync with cmd/link/internal/ld/data.go:wasmMinDataAddr.
+ const wasmMinDataAddr = 4096 + 8192;
+ if (offset >= wasmMinDataAddr) {
+ throw new Error("total length of command line and environment variables exceeds limit");
+ }
+
+ this._inst.exports.run(argc, argv);
+ if (this.exited) {
+ this._resolveExitPromise();
+ }
+ await this._exitPromise;
+ }
+
+ _resume() {
+ if (this.exited) {
+ throw new Error("Go program has already exited");
+ }
+ this._inst.exports.resume();
+ if (this.exited) {
+ this._resolveExitPromise();
+ }
+ }
+
+ _makeFuncWrapper(id) {
+ const go = this;
+ return function () {
+ const event = { id: id, this: this, args: arguments };
+ go._pendingEvent = event;
+ go._resume();
+ return event.result;
+ };
+ }
+ }
+})();
diff --git a/go/chao-sdk-core/wasm/event_listener/callback_writer.go b/go/chao-sdk-core/wasm/event_listener/callback_writer.go
new file mode 100644
index 0000000..dddcbbb
--- /dev/null
+++ b/go/chao-sdk-core/wasm/event_listener/callback_writer.go
@@ -0,0 +1,144 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build js && wasm
+// +build js,wasm
+
+package event_listener
+
+import (
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "syscall/js"
+)
+
+type CallbackWriter interface {
+ SendMessage()
+ SetEvent(event string) CallbackWriter
+ SetData(data interface{}) CallbackWriter
+ SetErrCode(errCode int32) CallbackWriter
+ SetOperationID(operationID string) CallbackWriter
+ SetErrMsg(errMsg string) CallbackWriter
+ GetOperationID() string
+ HandlerFunc(fn FuncLogic) interface{}
+}
+
+type EventData struct {
+ Event string `json:"event"`
+ ErrCode int32 `json:"errCode"`
+ ErrMsg string `json:"errMsg"`
+ Data interface{} `json:"data,omitempty"`
+ OperationID string `json:"operationID"`
+ callback *js.Value
+}
+
+func (e *EventData) HandlerFunc(fn FuncLogic) interface{} {
+ panic("implement me")
+}
+
+func (e *EventData) GetOperationID() string {
+ return e.OperationID
+}
+
+func NewEventData(callback *js.Value) *EventData {
+ return &EventData{callback: callback}
+}
+func (e *EventData) SendMessage() {
+ e.callback.Invoke(utils.StructToJsonString(e))
+}
+func (e *EventData) SetEvent(event string) CallbackWriter {
+ e.Event = event
+ return e
+}
+
+func (e *EventData) SetData(data interface{}) CallbackWriter {
+ e.Data = data
+ return e
+}
+func (e *EventData) SetErrCode(errCode int32) CallbackWriter {
+ e.ErrCode = errCode
+ return e
+}
+func (e *EventData) SetOperationID(operationID string) CallbackWriter {
+ e.OperationID = operationID
+ return e
+}
+func (e *EventData) SetErrMsg(errMsg string) CallbackWriter {
+ e.ErrMsg = errMsg
+ return e
+}
+
+var (
+ jsErr = js.Global().Get("Error")
+ jsPromise = js.Global().Get("Promise")
+)
+
+type PromiseHandler struct {
+ Event string `json:"event"`
+ ErrCode int32 `json:"errCode"`
+ ErrMsg string `json:"errMsg"`
+ Data interface{} `json:"data,omitempty"`
+ OperationID string `json:"operationID"`
+ resolve *js.Value
+ reject *js.Value
+}
+
+func NewPromiseHandler() *PromiseHandler {
+ return &PromiseHandler{}
+}
+func (p *PromiseHandler) HandlerFunc(fn FuncLogic) interface{} {
+ handler := js.FuncOf(func(_ js.Value, promFn []js.Value) interface{} {
+ p.resolve, p.reject = &promFn[0], &promFn[1]
+ fn()
+ return nil
+ })
+ return jsPromise.New(handler)
+}
+
+func (p *PromiseHandler) GetOperationID() string {
+ return p.OperationID
+}
+
+func (p *PromiseHandler) SendMessage() {
+ if p.Data != nil {
+ p.resolve.Invoke(p.Data)
+ } else {
+ //p.reject.Invoke(jsErr.New(fmt.Sprintf("erCode:%d,errMsg:%s,operationID:%s", p.ErrCode, p.ErrMsg, p.OperationID)))
+ errInfo := make(map[string]interface{})
+ errInfo["errCode"] = p.ErrCode
+ errInfo["errMsg"] = p.ErrMsg
+ errInfo["operationID"] = p.OperationID
+ p.reject.Invoke(errInfo)
+ }
+}
+func (p *PromiseHandler) SetEvent(event string) CallbackWriter {
+ p.Event = event
+ return p
+}
+
+func (p *PromiseHandler) SetData(data interface{}) CallbackWriter {
+ p.Data = data
+ return p
+}
+func (p *PromiseHandler) SetErrCode(errCode int32) CallbackWriter {
+ p.ErrCode = errCode
+ return p
+}
+func (p *PromiseHandler) SetOperationID(operationID string) CallbackWriter {
+ p.OperationID = operationID
+ return p
+}
+func (p *PromiseHandler) SetErrMsg(errMsg string) CallbackWriter {
+ p.ErrMsg = errMsg
+ return p
+}
diff --git a/go/chao-sdk-core/wasm/event_listener/caller.go b/go/chao-sdk-core/wasm/event_listener/caller.go
new file mode 100644
index 0000000..efe71ea
--- /dev/null
+++ b/go/chao-sdk-core/wasm/event_listener/caller.go
@@ -0,0 +1,294 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build js && wasm
+// +build js,wasm
+
+package event_listener
+
+import (
+ "bytes"
+ "context"
+ "errors"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/wasm/exec"
+ "github.com/openimsdk/tools/log"
+ "reflect"
+ "strconv"
+ "strings"
+ "syscall/js"
+)
+
+type Caller interface {
+ // AsyncCallWithCallback has promise object return
+ AsyncCallWithCallback() interface{}
+ // AsyncCallWithOutCallback has promise object return
+ AsyncCallWithOutCallback() interface{}
+ // SyncCall has not promise
+ SyncCall() (result []interface{})
+}
+
+type FuncLogic func()
+
+var ErrNotSetCallback = errors.New("not set callback to call")
+var ErrNotSetFunc = errors.New("not set funcation to call")
+
+type ReflectCall struct {
+ funcName interface{}
+ callback CallbackWriter
+ arguments []js.Value
+}
+
+func NewCaller(funcName interface{}, callback CallbackWriter, arguments *[]js.Value) Caller {
+ return &ReflectCall{funcName: funcName, callback: callback, arguments: *arguments}
+}
+
+func (r *ReflectCall) AsyncCallWithCallback() interface{} {
+ return r.callback.HandlerFunc(r.asyncCallWithCallback)
+
+}
+func (r *ReflectCall) asyncCallWithCallback() {
+ defer func() {
+ if rc := recover(); rc != nil {
+ r.ErrHandle(rc)
+ }
+ }()
+ ctx := context.Background()
+ var funcName reflect.Value
+ var typeFuncName reflect.Type
+ var hasCallback bool
+ var temp int
+ if r.funcName == nil {
+ panic(ErrNotSetFunc)
+ } else {
+ funcName = reflect.ValueOf(r.funcName)
+ typeFuncName = reflect.TypeOf(r.funcName)
+ }
+ var values []reflect.Value
+ if r.callback != nil {
+ hasCallback = true
+ r.callback.SetOperationID(r.arguments[0].String())
+ values = append(values, reflect.ValueOf(r.callback))
+ } else {
+ log.ZDebug(ctx, "AsyncCallWithCallback not set callback")
+ panic(ErrNotSetCallback)
+ }
+ funcFieldsNum := typeFuncName.NumIn()
+ if funcFieldsNum-len(r.arguments) > 1 {
+ r.arguments = append(r.arguments, js.Value{})
+ }
+ for i := 0; i < len(r.arguments); i++ {
+ if hasCallback {
+ temp++
+ } else {
+ temp = i
+ }
+ //log.NewDebug(r.callback.GetOperationID(), "type is ", typeFuncName.In(temp).Kind(), r.arguments[i].IsNaN())
+ switch typeFuncName.In(temp).Kind() {
+ case reflect.String:
+ convertValue := r.arguments[i].String()
+ if !strings.HasPrefix(convertValue, " (main go context) "+funcName+" "+
+ "with response ", args[0].String())
+ thenChannel <- args
+ return nil
+ })
+ defer thenFunc.Release()
+ catchFunc := js.FuncOf(func(this js.Value, args []js.Value) interface{} {
+ defer func() {
+ if r := recover(); r != nil {
+ switch x := r.(type) {
+ case string:
+ err = utils.Wrap(errors.New(x), "")
+ case error:
+ err = x
+ default:
+ err = utils.Wrap(errors.New("unknown panic"), "")
+ }
+ }
+ }()
+ log.ZDebug(ctx, "js catch function", "=> (main go context) "+funcName+" with respone ", args[0].String())
+ catchChannel <- args
+ return nil
+ })
+ defer catchFunc.Release()
+ js.Global().Call(utils.FirstLower(funcName), args...).Call("then", thenFunc).Call("catch", catchFunc)
+ select {
+ case result := <-thenChannel:
+ if len(result) > 0 {
+ switch result[0].Type() {
+ case js.TypeString:
+ interErr := utils.JsonStringToStruct(result[0].String(), &data)
+ if interErr != nil {
+ err = utils.Wrap(err, "return json unmarshal err from javascript")
+ }
+ case js.TypeObject:
+ return result[0], nil
+
+ default:
+ err = errors.New("unknown return type from javascript")
+ }
+
+ } else {
+ err = errors.New("args err,length is 0")
+ }
+
+ case catch := <-catchChannel:
+ if catch[0].InstanceOf(jsErr) {
+ return nil, js.Error{Value: catch[0]}
+ } else {
+ panic("unknown javascript exception")
+ }
+ case <-time.After(TIMEOUT * time.Second):
+ panic(ErrTimoutFromJavaScript)
+ }
+ if data.ErrCode != 0 {
+ if data.ErrCode == JSNOTFOUND {
+ return nil, errs.ErrRecordNotFound
+ }
+ return "", errors.New(data.ErrMsg)
+ }
+ return data.Data, err
+}
+
+func ExtractArrayBuffer(arrayBuffer js.Value) []byte {
+ uint8Array := js.Global().Get("Uint8Array").New(arrayBuffer)
+ dst := make([]byte, uint8Array.Length())
+ js.CopyBytesToGo(dst, uint8Array)
+ return dst
+}
diff --git a/go/chao-sdk-core/wasm/indexdb/black_model.go b/go/chao-sdk-core/wasm/indexdb/black_model.go
new file mode 100644
index 0000000..007692d
--- /dev/null
+++ b/go/chao-sdk-core/wasm/indexdb/black_model.go
@@ -0,0 +1,144 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build js && wasm
+// +build js,wasm
+
+package indexdb
+
+import (
+ "context"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/wasm/exec"
+ "github.com/openimsdk/openim-sdk-core/v3/wasm/indexdb/temp_struct"
+)
+
+type Black struct {
+ loginUserID string
+}
+
+func NewBlack(loginUserID string) *Black {
+ return &Black{loginUserID: loginUserID}
+}
+
+// GetBlackListDB gets the blacklist list from the database
+func (i Black) GetBlackListDB(ctx context.Context) (result []*model_struct.LocalBlack, err error) {
+ gList, err := exec.Exec()
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := gList.(string); ok {
+ var temp []model_struct.LocalBlack
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ for _, v := range temp {
+ v1 := v
+ result = append(result, &v1)
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+// GetBlackListUserID gets the list of blocked user IDs
+func (i Black) GetBlackListUserID(ctx context.Context) (result []string, err error) {
+ gList, err := exec.Exec()
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := gList.(string); ok {
+ err := utils.JsonStringToStruct(v, &result)
+ if err != nil {
+ return nil, err
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+// GetBlackInfoByBlockUserID gets the information of a blocked user by their user ID
+func (i Black) GetBlackInfoByBlockUserID(ctx context.Context, blockUserID string) (result *model_struct.LocalBlack, err error) {
+ gList, err := exec.Exec(blockUserID, i.loginUserID)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := gList.(string); ok {
+ var temp model_struct.LocalBlack
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ return &temp, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+// GetBlackInfoList gets the information of multiple blocked users by their user IDs
+func (i Black) GetBlackInfoList(ctx context.Context, blockUserIDList []string) (result []*model_struct.LocalBlack, err error) {
+ gList, err := exec.Exec(utils.StructToJsonString(blockUserIDList))
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := gList.(string); ok {
+ var temp []model_struct.LocalBlack
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ for _, v := range temp {
+ v1 := v
+ result = append(result, &v1)
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+// InsertBlack inserts a new blocked user into the database
+func (i Black) InsertBlack(ctx context.Context, black *model_struct.LocalBlack) error {
+ _, err := exec.Exec(utils.StructToJsonString(black))
+ return err
+}
+
+// UpdateBlack updates the information of a blocked user in the database
+func (i Black) UpdateBlack(ctx context.Context, black *model_struct.LocalBlack) error {
+ tempLocalBlack := temp_struct.LocalBlack{
+ Nickname: black.Nickname,
+ FaceURL: black.FaceURL,
+ CreateTime: black.CreateTime,
+ AddSource: black.AddSource,
+ OperatorUserID: black.OperatorUserID,
+ Ex: black.Ex,
+ AttachedInfo: black.AttachedInfo,
+ }
+ _, err := exec.Exec(black.OwnerUserID, black.BlockUserID, utils.StructToJsonString(tempLocalBlack))
+ return err
+}
+
+// DeleteBlack removes a blocked user from the database
+func (i Black) DeleteBlack(ctx context.Context, blockUserID string) error {
+ _, err := exec.Exec(blockUserID, i.loginUserID)
+ return err
+}
diff --git a/go/chao-sdk-core/wasm/indexdb/cache_message.go b/go/chao-sdk-core/wasm/indexdb/cache_message.go
new file mode 100644
index 0000000..223a6fe
--- /dev/null
+++ b/go/chao-sdk-core/wasm/indexdb/cache_message.go
@@ -0,0 +1,45 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build js && wasm
+// +build js,wasm
+
+package indexdb
+
+import (
+ "context"
+ "github.com/openimsdk/openim-sdk-core/v3/wasm/exec"
+)
+
+import (
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+)
+
+type LocalCacheMessage struct {
+}
+
+func NewLocalCacheMessage() *LocalCacheMessage {
+ return &LocalCacheMessage{}
+}
+
+func (i *LocalCacheMessage) BatchInsertTempCacheMessageList(ctx context.Context, MessageList []*model_struct.TempCacheLocalChatLog) error {
+ _, err := exec.Exec(utils.StructToJsonString(MessageList))
+ return err
+}
+
+func (i *LocalCacheMessage) InsertTempCacheMessage(ctx context.Context, Message *model_struct.TempCacheLocalChatLog) error {
+ _, err := exec.Exec(utils.StructToJsonString(Message))
+ return err
+}
diff --git a/go/chao-sdk-core/wasm/indexdb/chat_log_model.go b/go/chao-sdk-core/wasm/indexdb/chat_log_model.go
new file mode 100644
index 0000000..2ec157a
--- /dev/null
+++ b/go/chao-sdk-core/wasm/indexdb/chat_log_model.go
@@ -0,0 +1,759 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build js && wasm
+// +build js,wasm
+
+package indexdb
+
+import (
+ "context"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/wasm/exec"
+ "github.com/openimsdk/openim-sdk-core/v3/wasm/indexdb/temp_struct"
+)
+
+type LocalChatLogs struct {
+ loginUserID string
+}
+
+// NewLocalChatLogs creates a new LocalChatLogs
+func NewLocalChatLogs(loginUserID string) *LocalChatLogs {
+ return &LocalChatLogs{loginUserID: loginUserID}
+}
+
+// GetMessage gets the message from the database
+func (i *LocalChatLogs) GetMessage(ctx context.Context, conversationID, clientMsgID string) (*model_struct.LocalChatLog, error) {
+ msg, err := exec.Exec(conversationID, clientMsgID)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := msg.(string); ok {
+ result := model_struct.LocalChatLog{}
+ err := utils.JsonStringToStruct(v, &result)
+ if err != nil {
+ return nil, err
+ }
+ return &result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+// UpdateMessage updates the message in the database
+func (i *LocalChatLogs) UpdateMessage(ctx context.Context, conversationID string, c *model_struct.LocalChatLog) error {
+ if c.ClientMsgID == "" {
+ return exec.PrimaryKeyNull
+ }
+ tempLocalChatLog := temp_struct.LocalChatLog{
+ ServerMsgID: c.ServerMsgID,
+ SendID: c.SendID,
+ RecvID: c.RecvID,
+ SenderPlatformID: c.SenderPlatformID,
+ SenderNickname: c.SenderNickname,
+ SenderFaceURL: c.SenderFaceURL,
+ SessionType: c.SessionType,
+ MsgFrom: c.MsgFrom,
+ ContentType: c.ContentType,
+ Content: c.Content,
+ IsRead: c.IsRead,
+ Status: c.Status,
+ Seq: c.Seq,
+ SendTime: c.SendTime,
+ CreateTime: c.CreateTime,
+ AttachedInfo: c.AttachedInfo,
+ Ex: c.Ex,
+ IsReact: c.IsReact,
+ IsExternalExtensions: c.IsExternalExtensions,
+ MsgFirstModifyTime: c.MsgFirstModifyTime,
+ }
+ _, err := exec.Exec(conversationID, c.ClientMsgID, utils.StructToJsonString(tempLocalChatLog))
+ return err
+}
+
+// UpdateMessageStatus updates the message status in the database
+func (i *LocalChatLogs) BatchInsertMessageList(ctx context.Context, conversationID string, messageList []*model_struct.LocalChatLog) error {
+ _, err := exec.Exec(conversationID, utils.StructToJsonString(messageList))
+ return err
+}
+
+// InsertMessage inserts a message into the local chat log.
+func (i *LocalChatLogs) InsertMessage(ctx context.Context, conversationID string, message *model_struct.LocalChatLog) error {
+ _, err := exec.Exec(conversationID, utils.StructToJsonString(message))
+ return err
+}
+
+// UpdateColumnsMessageList updates multiple columns of a message in the local chat log.
+func (i *LocalChatLogs) UpdateColumnsMessageList(ctx context.Context, clientMsgIDList []string, args map[string]interface{}) error {
+ _, err := exec.Exec(utils.StructToJsonString(clientMsgIDList), args)
+ return err
+}
+
+// UpdateColumnsMessage updates a column of a message in the local chat log.
+func (i *LocalChatLogs) UpdateColumnsMessage(ctx context.Context, conversationID, clientMsgID string, args map[string]interface{}) error {
+ _, err := exec.Exec(conversationID, clientMsgID, utils.StructToJsonString(args))
+ return err
+}
+
+// DeleteAllMessage deletes all messages from the local chat log.
+func (i *LocalChatLogs) DeleteAllMessage(ctx context.Context) error {
+ _, err := exec.Exec()
+ return err
+}
+
+// UpdateMessageStatusBySourceID updates the status of a message in the local chat log by its source ID.
+func (i *LocalChatLogs) UpdateMessageStatusBySourceID(ctx context.Context, sourceID string, status, sessionType int32) error {
+ _, err := exec.Exec(sourceID, status, sessionType, i.loginUserID)
+ return err
+}
+
+// UpdateMessageTimeAndStatus updates the time and status of a message in the local chat log.
+func (i *LocalChatLogs) UpdateMessageTimeAndStatus(ctx context.Context, conversationID, clientMsgID string, serverMsgID string, sendTime int64, status int32) error {
+ _, err := exec.Exec(conversationID, clientMsgID, serverMsgID, sendTime, status)
+ return err
+}
+
+// GetMessageList retrieves a list of messages from the local chat log.
+func (i *LocalChatLogs) GetMessageList(ctx context.Context, conversationID string, count int, startTime int64, isReverse bool) (result []*model_struct.LocalChatLog, err error) {
+ msgList, err := exec.Exec(conversationID, count, startTime, isReverse, i.loginUserID)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := msgList.(string); ok {
+ var temp []model_struct.LocalChatLog
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ for _, v := range temp {
+ v1 := v
+ result = append(result, &v1)
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+// GetMessageListNoTime retrieves a list of messages from the local chat log without specifying a start time.
+func (i *LocalChatLogs) GetMessageListNoTime(ctx context.Context, conversationID string, count int, isReverse bool) (result []*model_struct.LocalChatLog, err error) {
+ msgList, err := exec.Exec(conversationID, count, isReverse)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := msgList.(string); ok {
+ var temp []model_struct.LocalChatLog
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ for _, v := range temp {
+ v1 := v
+ result = append(result, &v1)
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+// UpdateSingleMessageHasRead updates the hasRead field of a single message in the local chat log.
+func (i *LocalChatLogs) UpdateSingleMessageHasRead(ctx context.Context, sendID string, msgIDList []string) error {
+ _, err := exec.Exec(sendID, utils.StructToJsonString(msgIDList))
+ return err
+}
+
+// SearchMessageByContentType searches for messages in the local chat log by content type.
+func (i *LocalChatLogs) SearchMessageByContentType(ctx context.Context, contentType []int, conversationID string, startTime, endTime int64, offset, count int) (messages []*model_struct.LocalChatLog, err error) {
+ msgList, err := exec.Exec(conversationID, utils.StructToJsonString(contentType), startTime, endTime, offset, count)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := msgList.(string); ok {
+ var temp []model_struct.LocalChatLog
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ for _, v := range temp {
+ v1 := v
+ messages = append(messages, &v1)
+ }
+ return messages, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+//funcation (i *LocalChatLogs) SuperGroupSearchMessageByContentType(ctx context.Context, contentType []int, sourceID string, startTime, endTime int64, sessionType, offset, count int) (messages []*model_struct.LocalChatLog, err error) {
+// msgList, err := Exec(utils.StructToJsonString(contentType), sourceID, startTime, endTime, sessionType, offset, count)
+// if err != nil {
+// return nil, err
+// } else {
+// if v, ok := msgList.(string); ok {
+// var temp []model_struct.LocalChatLog
+// err := utils.JsonStringToStruct(v, &temp)
+// if err != nil {
+// return nil, err
+// }
+// for _, v := range temp {
+// v1 := v
+// messages = append(messages, &v1)
+// }
+// return messages, err
+// } else {
+// return nil, ErrType
+// }
+// }
+//}
+
+// SearchMessageByKeyword searches for messages in the local chat log by keyword.
+func (i *LocalChatLogs) SearchMessageByContentTypeAndKeyword(ctx context.Context, contentType []int, conversationID string, keywordList []string, keywordListMatchType int, startTime, endTime int64) (result []*model_struct.LocalChatLog, err error) {
+ msgList, err := exec.Exec(conversationID, utils.StructToJsonString(contentType), utils.StructToJsonString(keywordList), keywordListMatchType, startTime, endTime)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := msgList.(string); ok {
+ var temp []model_struct.LocalChatLog
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ for _, v := range temp {
+ v1 := v
+ result = append(result, &v1)
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+// MessageIfExists check if message exists
+func (i *LocalChatLogs) MessageIfExists(ctx context.Context, clientMsgID string) (bool, error) {
+ isExist, err := exec.Exec(clientMsgID)
+ if err != nil {
+ return false, err
+ } else {
+ if v, ok := isExist.(bool); ok {
+ return v, nil
+ } else {
+ return false, exec.ErrType
+ }
+ }
+}
+
+// IsExistsInErrChatLogBySeq check if message exists in error chat log by seq
+func (i *LocalChatLogs) IsExistsInErrChatLogBySeq(ctx context.Context, seq int64) bool {
+ isExist, err := exec.Exec(seq)
+ if err != nil {
+ return false
+ } else {
+ if v, ok := isExist.(bool); ok {
+ return v
+ } else {
+ return false
+ }
+ }
+}
+
+// MessageIfExistsBySeq check if message exists by seq
+func (i *LocalChatLogs) MessageIfExistsBySeq(ctx context.Context, seq int64) (bool, error) {
+ isExist, err := exec.Exec(seq)
+ if err != nil {
+ return false, err
+ } else {
+ if v, ok := isExist.(bool); ok {
+ return v, nil
+ } else {
+ return false, exec.ErrType
+ }
+ }
+}
+
+// GetMultipleMessage gets multiple messages from the local chat log.
+func (i *LocalChatLogs) GetMultipleMessage(ctx context.Context, msgIDList []string) (result []*model_struct.LocalChatLog, err error) {
+ msgList, err := exec.Exec(utils.StructToJsonString(msgIDList))
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := msgList.(string); ok {
+ var temp []model_struct.LocalChatLog
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ for _, v := range temp {
+ v1 := v
+ result = append(result, &v1)
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+// GetLostMsgSeqList gets lost message seq list.
+func (i *LocalChatLogs) GetLostMsgSeqList(ctx context.Context, minSeqInSvr uint32) (result []uint32, err error) {
+ l, err := exec.Exec(minSeqInSvr)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := l.(string); ok {
+ err := utils.JsonStringToStruct(v, &result)
+ if err != nil {
+ return nil, err
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+// GetTestMessage gets test message.
+func (i *LocalChatLogs) GetTestMessage(ctx context.Context, seq uint32) (*model_struct.LocalChatLog, error) {
+ msg, err := exec.Exec(seq)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := msg.(model_struct.LocalChatLog); ok {
+ return &v, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+// Update the sender's nickname in the chat logs
+func (i *LocalChatLogs) UpdateMsgSenderNickname(ctx context.Context, sendID, nickname string, sType int) error {
+ _, err := exec.Exec(sendID, nickname, sType)
+ return err
+}
+
+// Update the sender's face URL in the chat logs
+func (i *LocalChatLogs) UpdateMsgSenderFaceURL(ctx context.Context, sendID, faceURL string, sType int) error {
+ _, err := exec.Exec(sendID, faceURL, sType)
+ return err
+}
+
+// Update the sender's face URL and nickname in the chat logs
+func (i *LocalChatLogs) UpdateMsgSenderFaceURLAndSenderNickname(ctx context.Context, conversationID, sendID, faceURL, nickname string) error {
+ _, err := exec.Exec(conversationID, sendID, faceURL, nickname)
+ return err
+}
+
+// Get the message sequence number by client message ID
+func (i *LocalChatLogs) GetMsgSeqByClientMsgID(ctx context.Context, clientMsgID string) (uint32, error) {
+ result, err := exec.Exec(clientMsgID)
+ if err != nil {
+ return 0, err
+ }
+ if v, ok := result.(float64); ok {
+ return uint32(v), nil
+ }
+ return 0, exec.ErrType
+}
+
+// Search all messages by content type
+func (i *LocalChatLogs) SearchAllMessageByContentType(ctx context.Context, conversationID string, contentType int) (result []*model_struct.LocalChatLog, err error) {
+ msgList, err := exec.Exec(conversationID, contentType)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := msgList.(string); ok {
+ var temp []*model_struct.LocalChatLog
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ for _, v := range temp {
+ v1 := v
+ result = append(result, v1)
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+// Get the message sequence number list by group ID
+func (i *LocalChatLogs) GetMsgSeqListByGroupID(ctx context.Context, groupID string) (result []uint32, err error) {
+ l, err := exec.Exec(groupID)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := l.(string); ok {
+ err := utils.JsonStringToStruct(v, &result)
+ if err != nil {
+ return nil, err
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+// Get the message sequence number list by peer user ID
+func (i *LocalChatLogs) GetMsgSeqListByPeerUserID(ctx context.Context, userID string) (result []uint32, err error) {
+ l, err := exec.Exec(userID)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := l.(string); ok {
+ err := utils.JsonStringToStruct(v, &result)
+ if err != nil {
+ return nil, err
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+// Get the message sequence number list by self user ID
+func (i *LocalChatLogs) GetMsgSeqListBySelfUserID(ctx context.Context, userID string) (result []uint32, err error) {
+ l, err := exec.Exec(userID)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := l.(string); ok {
+ err := utils.JsonStringToStruct(v, &result)
+ if err != nil {
+ return nil, err
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+// Get the abnormal message sequence number
+func (i *LocalChatLogs) GetAbnormalMsgSeq(ctx context.Context) (int64, error) {
+ result, err := exec.Exec()
+ if err != nil {
+ return 0, err
+ }
+ if v, ok := result.(float64); ok {
+ return int64(v), nil
+ }
+ return 0, exec.ErrType
+}
+
+// Get the list of abnormal message sequence numbers
+func (i *LocalChatLogs) GetAbnormalMsgSeqList(ctx context.Context) (result []int64, err error) {
+ l, err := exec.Exec()
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := l.(string); ok {
+ err := utils.JsonStringToStruct(v, &result)
+ if err != nil {
+ return nil, err
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+// Batch insert exception messages into the chat logs
+func (i *LocalChatLogs) BatchInsertExceptionMsg(ctx context.Context, MessageList []*model_struct.LocalErrChatLog) error {
+ _, err := exec.Exec(utils.StructToJsonString(MessageList))
+ return err
+}
+
+// Update the message status to read in the chat logs
+func (i *LocalChatLogs) UpdateGroupMessageHasRead(ctx context.Context, msgIDList []string, sessionType int32) error {
+ _, err := exec.Exec(utils.StructToJsonString(msgIDList), sessionType)
+ return err
+}
+
+// Get the message by message ID
+func (i *LocalChatLogs) SearchMessageByKeyword(ctx context.Context, contentType []int, keywordList []string, keywordListMatchType int, conversationID string, startTime, endTime int64, offset, count int) (result []*model_struct.LocalChatLog, err error) {
+ msgList, err := exec.Exec(conversationID, utils.StructToJsonString(contentType), utils.StructToJsonString(keywordList), keywordListMatchType, startTime, endTime, offset, count)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := msgList.(string); ok {
+ var temp []model_struct.LocalChatLog
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ for _, v := range temp {
+ v1 := v
+ result = append(result, &v1)
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+// GetSuperGroupAbnormalMsgSeq get super group abnormal msg seq
+func (i *LocalChatLogs) GetSuperGroupAbnormalMsgSeq(ctx context.Context, groupID string) (uint32, error) {
+ isExist, err := exec.Exec(groupID)
+ if err != nil {
+ return 0, err
+ } else {
+ if v, ok := isExist.(uint32); ok {
+ return v, nil
+ } else {
+ return 0, exec.ErrType
+ }
+ }
+}
+
+// GetAlreadyExistSeqList get already exist seq list
+func (i *LocalChatLogs) GetAlreadyExistSeqList(ctx context.Context, conversationID string, lostSeqList []int64) (result []int64, err error) {
+ seqList, err := exec.Exec(conversationID, utils.StructToJsonString(lostSeqList))
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := seqList.(string); ok {
+ err := utils.JsonStringToStruct(v, &result)
+ if err != nil {
+ return nil, err
+ }
+ return result, nil
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+// GetMessagesBySeq get message by seq
+func (i *LocalChatLogs) GetMessageBySeq(ctx context.Context, conversationID string, seq int64) (*model_struct.LocalChatLog, error) {
+ msg, err := exec.Exec(conversationID, seq)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := msg.(string); ok {
+ result := model_struct.LocalChatLog{}
+ err := utils.JsonStringToStruct(v, &result)
+ if err != nil {
+ return nil, err
+ }
+ return &result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+// UpdateMessageBySeq update message
+func (i *LocalChatLogs) UpdateMessageBySeq(ctx context.Context, conversationID string, c *model_struct.LocalChatLog) error {
+ if c.Seq == 0 {
+ return exec.PrimaryKeyNull
+ }
+ tempLocalChatLog := temp_struct.LocalChatLog{
+ ServerMsgID: c.ServerMsgID,
+ SendID: c.SendID,
+ RecvID: c.RecvID,
+ SenderPlatformID: c.SenderPlatformID,
+ SenderNickname: c.SenderNickname,
+ SenderFaceURL: c.SenderFaceURL,
+ SessionType: c.SessionType,
+ MsgFrom: c.MsgFrom,
+ ContentType: c.ContentType,
+ Content: c.Content,
+ IsRead: c.IsRead,
+ Status: c.Status,
+ Seq: c.Seq,
+ SendTime: c.SendTime,
+ CreateTime: c.CreateTime,
+ AttachedInfo: c.AttachedInfo,
+ Ex: c.Ex,
+ IsReact: c.IsReact,
+ IsExternalExtensions: c.IsExternalExtensions,
+ MsgFirstModifyTime: c.MsgFirstModifyTime,
+ }
+ _, err := exec.Exec(conversationID, c.Seq, utils.StructToJsonString(tempLocalChatLog))
+ return err
+}
+
+func (i *LocalChatLogs) MarkConversationMessageAsReadDB(ctx context.Context, conversationID string, msgIDs []string) (rowsAffected int64, err error) {
+ rows, err := exec.Exec(conversationID, utils.StructToJsonString(msgIDs), i.loginUserID)
+ if err != nil {
+ return 0, err
+ } else {
+ if v, ok := rows.(float64); ok {
+ rowsAffected = int64(v)
+ return rowsAffected, err
+ } else {
+ return 0, exec.ErrType
+ }
+ }
+}
+
+func (i *LocalChatLogs) MarkConversationMessageAsReadBySeqs(ctx context.Context, conversationID string, seqs []int64) (rowsAffected int64, err error) {
+ rows, err := exec.Exec(conversationID, utils.StructToJsonString(seqs), i.loginUserID)
+ if err != nil {
+ return 0, err
+ } else {
+ if v, ok := rows.(float64); ok {
+ rowsAffected = int64(v)
+ return rowsAffected, err
+ } else {
+ return 0, exec.ErrType
+ }
+ }
+}
+
+func (i *LocalChatLogs) MarkConversationAllMessageAsRead(ctx context.Context, conversationID string) (rowsAffected int64, err error) {
+ rows, err := exec.Exec(conversationID, i.loginUserID)
+ if err != nil {
+ return 0, err
+ } else {
+ if v, ok := rows.(float64); ok {
+ rowsAffected = int64(v)
+ return rowsAffected, err
+ } else {
+ return 0, exec.ErrType
+ }
+ }
+}
+
+func (i *LocalChatLogs) GetUnreadMessage(ctx context.Context, conversationID string) (result []*model_struct.LocalChatLog, err error) {
+ msgs, err := exec.Exec(conversationID, i.loginUserID)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := msgs.(string); ok {
+ err := utils.JsonStringToStruct(v, &result)
+ if err != nil {
+ return nil, err
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+func (i *LocalChatLogs) GetMessagesByClientMsgIDs(ctx context.Context, conversationID string, msgIDs []string) (result []*model_struct.LocalChatLog, err error) {
+ msgs, err := exec.Exec(conversationID, utils.StructToJsonString(msgIDs))
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := msgs.(string); ok {
+ err := utils.JsonStringToStruct(v, &result)
+ if err != nil {
+ return nil, err
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+// GetMessagesBySeqs gets messages by seqs
+func (i *LocalChatLogs) GetMessagesBySeqs(ctx context.Context, conversationID string, seqs []int64) (result []*model_struct.LocalChatLog, err error) {
+ msgs, err := exec.Exec(conversationID, utils.StructToJsonString(seqs))
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := msgs.(string); ok {
+ var temp []model_struct.LocalChatLog
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ for _, v := range temp {
+ v1 := v
+ result = append(result, &v1)
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+// GetConversationNormalMsgSeq gets the maximum seq of the session
+func (i *LocalChatLogs) GetConversationNormalMsgSeq(ctx context.Context, conversationID string) (int64, error) {
+ seq, err := exec.Exec(conversationID)
+ if err != nil {
+ return 0, err
+ } else {
+ if v, ok := seq.(float64); ok {
+ var result int64
+ result = int64(v)
+ return result, err
+ } else {
+ return 0, exec.ErrType
+ }
+ }
+}
+
+// GetConversationPeerNormalMsgSeq gets the maximum seq of the peer in the session
+func (i *LocalChatLogs) GetConversationPeerNormalMsgSeq(ctx context.Context, conversationID string) (int64, error) {
+ seq, err := exec.Exec(conversationID)
+ if err != nil {
+ return 0, err
+ } else {
+ if v, ok := seq.(float64); ok {
+ var result int64
+ result = int64(v)
+ return result, nil
+ } else {
+ return 0, exec.ErrType
+ }
+ }
+}
+
+// GetConversationAbnormalMsgSeq gets the maximum abnormal seq of the session
+func (i *LocalChatLogs) GetConversationAbnormalMsgSeq(ctx context.Context, groupID string) (int64, error) {
+ //TODO implement me
+ panic("implement me")
+}
+
+// DeleteConversationAllMessages deletes all messages of the session
+func (i *LocalChatLogs) DeleteConversationAllMessages(ctx context.Context, conversationID string) error {
+ _, err := exec.Exec(conversationID)
+ return err
+}
+
+// MarkDeleteConversationAllMessages marks all messages of the session as deleted
+func (i *LocalChatLogs) MarkDeleteConversationAllMessages(ctx context.Context, conversationID string) error {
+ _, err := exec.Exec(conversationID)
+ return err
+}
+
+// DeleteConversationMsgs deletes messages of the session
+func (i *LocalChatLogs) DeleteConversationMsgs(ctx context.Context, conversationID string, msgIDs []string) error {
+ _, err := exec.Exec(conversationID, utils.StructToJsonString(msgIDs))
+ return err
+}
+
+// DeleteConversationMsgsBySeqs deletes messages of the session
+func (i *LocalChatLogs) DeleteConversationMsgsBySeqs(ctx context.Context, conversationID string, seqs []int64) error {
+ _, err := exec.Exec(conversationID, utils.StructToJsonString(seqs))
+ return err
+}
diff --git a/go/chao-sdk-core/wasm/indexdb/chat_log_reaction_extension_model.go b/go/chao-sdk-core/wasm/indexdb/chat_log_reaction_extension_model.go
new file mode 100644
index 0000000..d117640
--- /dev/null
+++ b/go/chao-sdk-core/wasm/indexdb/chat_log_reaction_extension_model.go
@@ -0,0 +1,98 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build js && wasm
+// +build js,wasm
+
+package indexdb
+
+import (
+ "context"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/wasm/exec"
+)
+
+type LocalChatLogReactionExtensions struct {
+ ExtKey string `json:"ext_key"`
+ ExtVal string `json:"ext_val"`
+ ExtKey2 string `json:"ext_key2"`
+ ExtVal2 string `json:"ext_val2"`
+}
+
+func NewLocalChatLogReactionExtensions() *LocalChatLogReactionExtensions {
+ return &LocalChatLogReactionExtensions{}
+}
+
+func (i *LocalChatLogReactionExtensions) GetMessageReactionExtension(ctx context.Context, clientMsgID string) (result *model_struct.LocalChatLogReactionExtensions, err error) {
+ msg, err := exec.Exec(clientMsgID)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := msg.(string); ok {
+ result := model_struct.LocalChatLogReactionExtensions{}
+ err := utils.JsonStringToStruct(v, &result)
+ if err != nil {
+ return nil, err
+ }
+ return &result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+func (i *LocalChatLogReactionExtensions) InsertMessageReactionExtension(ctx context.Context, messageReactionExtension *model_struct.LocalChatLogReactionExtensions) error {
+ _, err := exec.Exec(utils.StructToJsonString(messageReactionExtension))
+ return err
+}
+
+// func (i *LocalChatLogReactionExtensions) GetAndUpdateMessageReactionExtension(ctx context.Context, clientMsgID string, m map[string]*sdkws.KeyValue) error {
+// _, err := exec.Exec(clientMsgID, utils.StructToJsonString(m))
+// return err
+// }
+//
+// func (i *LocalChatLogReactionExtensions) DeleteAndUpdateMessageReactionExtension(ctx context.Context, clientMsgID string, m map[string]*sdkws.KeyValue) error {
+// _, err := exec.Exec(clientMsgID, utils.StructToJsonString(m))
+// return err
+// }
+func (i *LocalChatLogReactionExtensions) GetMultipleMessageReactionExtension(ctx context.Context, msgIDList []string) (result []*model_struct.LocalChatLogReactionExtensions, err error) {
+ msgReactionExtensionList, err := exec.Exec(utils.StructToJsonString(msgIDList))
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := msgReactionExtensionList.(string); ok {
+ var temp []model_struct.LocalChatLogReactionExtensions
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ for _, v := range temp {
+ v1 := v
+ result = append(result, &v1)
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+func (i *LocalChatLogReactionExtensions) DeleteMessageReactionExtension(ctx context.Context, msgID string) error {
+ _, err := exec.Exec(msgID)
+ return err
+}
+func (i *LocalChatLogReactionExtensions) UpdateMessageReactionExtension(ctx context.Context, c *model_struct.LocalChatLogReactionExtensions) error {
+ _, err := exec.Exec(c.ClientMsgID, utils.StructToJsonString(c))
+ return err
+}
diff --git a/go/chao-sdk-core/wasm/indexdb/conversation_model.go b/go/chao-sdk-core/wasm/indexdb/conversation_model.go
new file mode 100644
index 0000000..025986b
--- /dev/null
+++ b/go/chao-sdk-core/wasm/indexdb/conversation_model.go
@@ -0,0 +1,430 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build js && wasm
+// +build js,wasm
+
+package indexdb
+
+import (
+ "context"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/wasm/exec"
+ "github.com/openimsdk/openim-sdk-core/v3/wasm/indexdb/temp_struct"
+)
+
+type LocalConversations struct {
+}
+
+func NewLocalConversations() *LocalConversations {
+ return &LocalConversations{}
+}
+
+func (i *LocalConversations) GetAllConversationListDB(ctx context.Context) (result []*model_struct.LocalConversation, err error) {
+ cList, err := exec.Exec()
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := cList.(string); ok {
+ var temp []model_struct.LocalConversation
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ for _, v := range temp {
+ v1 := v
+ result = append(result, &v1)
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+func (i *LocalConversations) GetConversation(ctx context.Context, conversationID string) (*model_struct.LocalConversation, error) {
+ c, err := exec.Exec(conversationID)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := c.(string); ok {
+ result := model_struct.LocalConversation{}
+ err := utils.JsonStringToStruct(v, &result)
+ if err != nil {
+ return nil, err
+ }
+ return &result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+func (i *LocalConversations) GetHiddenConversationList(ctx context.Context) (result []*model_struct.LocalConversation, err error) {
+ cList, err := exec.Exec()
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := cList.(string); ok {
+ var temp []model_struct.LocalConversation
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ for _, v := range temp {
+ v1 := v
+ result = append(result, &v1)
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+func (i *LocalConversations) GetAllConversations(ctx context.Context) (result []*model_struct.LocalConversation, err error) {
+ cList, err := exec.Exec()
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := cList.(string); ok {
+ var temp []model_struct.LocalConversation
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ for _, v := range temp {
+ v1 := v
+ result = append(result, &v1)
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+func (i *LocalConversations) UpdateColumnsConversation(ctx context.Context, conversationID string, args map[string]interface{}) error {
+ _, err := exec.Exec(conversationID, utils.StructToJsonString(args))
+ return err
+}
+func (i *LocalConversations) GetConversationByUserID(ctx context.Context, userID string) (*model_struct.LocalConversation, error) {
+ c, err := exec.Exec(userID)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := c.(string); ok {
+ result := model_struct.LocalConversation{}
+ err := utils.JsonStringToStruct(v, &result)
+ if err != nil {
+ return nil, err
+ }
+ return &result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+func (i *LocalConversations) GetConversationListSplitDB(ctx context.Context, offset, count int) (result []*model_struct.LocalConversation, err error) {
+ cList, err := exec.Exec(offset, count)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := cList.(string); ok {
+ var temp []model_struct.LocalConversation
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ for _, v := range temp {
+ v1 := v
+ result = append(result, &v1)
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+func (i *LocalConversations) BatchInsertConversationList(ctx context.Context, conversationList []*model_struct.LocalConversation) error {
+ _, err := exec.Exec(utils.StructToJsonString(conversationList))
+ return err
+}
+
+func (i *LocalConversations) InsertConversation(ctx context.Context, conversationList *model_struct.LocalConversation) error {
+ _, err := exec.Exec(utils.StructToJsonString(conversationList))
+ return err
+}
+
+func (i *LocalConversations) DeleteConversation(ctx context.Context, conversationID string) error {
+ _, err := exec.Exec(conversationID)
+ return err
+}
+
+func (i *LocalConversations) UpdateConversation(ctx context.Context, c *model_struct.LocalConversation) error {
+ if c.ConversationID == "" {
+ return exec.PrimaryKeyNull
+ }
+ tempLocalConversation := temp_struct.LocalConversation{
+ ConversationType: c.ConversationType,
+ UserID: c.UserID,
+ GroupID: c.GroupID,
+ ShowName: c.ShowName,
+ FaceURL: c.FaceURL,
+ RecvMsgOpt: c.RecvMsgOpt,
+ UnreadCount: c.UnreadCount,
+ GroupAtType: c.GroupAtType,
+ LatestMsg: c.LatestMsg,
+ LatestMsgSendTime: c.LatestMsgSendTime,
+ DraftText: c.DraftText,
+ DraftTextTime: c.DraftTextTime,
+ IsPinned: c.IsPinned,
+ IsPrivateChat: c.IsPrivateChat,
+ BurnDuration: c.BurnDuration,
+ IsNotInGroup: c.IsNotInGroup,
+ UpdateUnreadCountTime: c.UpdateUnreadCountTime,
+ AttachedInfo: c.AttachedInfo,
+ Ex: c.Ex,
+ }
+ _, err := exec.Exec(c.ConversationID, utils.StructToJsonString(tempLocalConversation))
+ return err
+}
+
+func (i *LocalConversations) UpdateConversationForSync(ctx context.Context, c *model_struct.LocalConversation) error {
+ if c.ConversationID == "" {
+ return exec.PrimaryKeyNull
+ }
+ tempLocalConversation := temp_struct.LocalPartConversation{
+ RecvMsgOpt: c.RecvMsgOpt,
+ GroupAtType: c.GroupAtType,
+ IsPinned: c.IsPinned,
+ IsPrivateChat: c.IsPrivateChat,
+ IsNotInGroup: c.IsNotInGroup,
+ UpdateUnreadCountTime: c.UpdateUnreadCountTime,
+ BurnDuration: c.BurnDuration,
+ AttachedInfo: c.AttachedInfo,
+ Ex: c.Ex,
+ }
+ _, err := exec.Exec(c.ConversationID, utils.StructToJsonString(tempLocalConversation))
+ return err
+}
+
+func (i *LocalConversations) BatchUpdateConversationList(ctx context.Context, conversationList []*model_struct.LocalConversation) error {
+ for _, v := range conversationList {
+ err := i.UpdateConversation(ctx, v)
+ if err != nil {
+ return utils.Wrap(err, "BatchUpdateConversationList failed")
+ }
+
+ }
+ return nil
+}
+
+func (i *LocalConversations) ConversationIfExists(ctx context.Context, conversationID string) (bool, error) {
+ seq, err := exec.Exec(conversationID)
+ if err != nil {
+ return false, err
+ } else {
+ if v, ok := seq.(bool); ok {
+ return v, err
+ } else {
+ return false, exec.ErrType
+ }
+ }
+}
+
+func (i *LocalConversations) ResetConversation(ctx context.Context, conversationID string) error {
+ _, err := exec.Exec(conversationID)
+ return err
+}
+
+func (i *LocalConversations) ResetAllConversation(ctx context.Context) error {
+ _, err := exec.Exec()
+ return err
+}
+
+func (i *LocalConversations) ClearConversation(ctx context.Context, conversationID string) error {
+ _, err := exec.Exec(conversationID)
+ return err
+}
+
+func (i *LocalConversations) ClearAllConversation(ctx context.Context) error {
+ _, err := exec.Exec()
+ return err
+}
+
+func (i *LocalConversations) SetConversationDraftDB(ctx context.Context, conversationID, draftText string) error {
+ _, err := exec.Exec(conversationID, draftText)
+ return err
+}
+
+func (i *LocalConversations) RemoveConversationDraft(ctx context.Context, conversationID, draftText string) error {
+ _, err := exec.Exec(conversationID, draftText)
+ return err
+}
+
+func (i *LocalConversations) UnPinConversation(ctx context.Context, conversationID string, isPinned int) error {
+ _, err := exec.Exec(conversationID, isPinned)
+ return err
+}
+
+func (i *LocalConversations) UpdateAllConversation(ctx context.Context, conversation *model_struct.LocalConversation) error {
+ _, err := exec.Exec()
+ return err
+}
+
+func (i *LocalConversations) IncrConversationUnreadCount(ctx context.Context, conversationID string) error {
+ _, err := exec.Exec(conversationID)
+ return err
+}
+func (i *LocalConversations) DecrConversationUnreadCount(ctx context.Context, conversationID string, count int64) error {
+ _, err := exec.Exec(conversationID, count)
+ return err
+}
+func (i *LocalConversations) GetTotalUnreadMsgCountDB(ctx context.Context) (totalUnreadCount int32, err error) {
+ count, err := exec.Exec()
+ if err != nil {
+ return 0, err
+ } else {
+ if v, ok := count.(float64); ok {
+ var result int32
+ result = int32(v)
+ return result, err
+ } else {
+ return 0, exec.ErrType
+ }
+ }
+}
+
+func (i *LocalConversations) SetMultipleConversationRecvMsgOpt(ctx context.Context, conversationIDList []string, opt int) (err error) {
+ _, err = exec.Exec(utils.StructToJsonString(conversationIDList), opt)
+ return err
+}
+
+func (i *LocalConversations) GetMultipleConversationDB(ctx context.Context, conversationIDList []string) (result []*model_struct.LocalConversation, err error) {
+ cList, err := exec.Exec(utils.StructToJsonString(conversationIDList))
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := cList.(string); ok {
+ var temp []model_struct.LocalConversation
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ for _, v := range temp {
+ v1 := v
+ result = append(result, &v1)
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+func (i *LocalConversations) GetAllSingleConversationIDList(ctx context.Context) (result []string, err error) {
+ conversationIDs, err := exec.Exec()
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := conversationIDs.(string); ok {
+ err := utils.JsonStringToStruct(v, &result)
+ if err != nil {
+ return nil, err
+ }
+ return result, nil
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+func (i *LocalConversations) GetAllConversationIDList(ctx context.Context) ([]string, error) {
+ conversationIDList, err := exec.Exec()
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := conversationIDList.(string); ok {
+ var result []string
+ err := utils.JsonStringToStruct(v, &result)
+ if err != nil {
+ return nil, err
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+func (i *LocalConversations) SearchConversations(ctx context.Context, searchParam string) ([]*model_struct.LocalConversation, error) {
+
+ var result []*model_struct.LocalConversation
+ // Perform the search operation. Replace the below line with the actual search logic.
+ searchResult, err := exec.Exec(searchParam)
+ if err != nil {
+ return nil, utils.Wrap(err, "SearchConversations failed")
+ }
+
+ // Convert searchResult to []*model_struct.LocalConversation
+ // Assuming searchResult is in a format that can be converted to the required type
+ err = utils.JsonStringToStruct(searchResult.(string), &result)
+ if err != nil {
+ return nil, utils.Wrap(err, "Failed to parse search results")
+ }
+
+ return result, nil
+}
+
+func (i *LocalConversations) UpdateOrCreateConversations(ctx context.Context, conversationList []*model_struct.LocalConversation) error {
+ //conversationIDs, err := Exec(ctx)
+ return nil
+ //if err != nil {
+ // return err
+ //} else {
+ // if v, ok := conversationIDs.(string); ok {
+ // var conversationIDs []string
+ // err := utils.JsonStringToStruct(v, &conversationIDs)
+ // if err != nil {
+ // return err
+ // }
+ // var notExistConversations []*model_struct.LocalConversation
+ // var existConversations []*model_struct.LocalConversation
+ // for i, v := range conversationList {
+ // if utils.IsContain(v.ConversationID, conversationIDs) {
+ // existConversations = append(existConversations, v)
+ // continue
+ // } else {
+ // notExistConversations = append(notExistConversations, conversationList[i])
+ // }
+ // }
+ // if len(notExistConversations) > 0 {
+ // err := Exec(ctx, notExistConversations)
+ // if err != nil {
+ // return err
+ // }
+ // }
+ // for _, v := range existConversations {
+ // err := Exec(ctx, v)
+ // if err != nil {
+ // return err
+ // }
+ // }
+ // return nil
+ // } else {
+ // return ErrType
+ // }
+ //}
+}
diff --git a/go/chao-sdk-core/wasm/indexdb/conversation_unread_message_model.go b/go/chao-sdk-core/wasm/indexdb/conversation_unread_message_model.go
new file mode 100644
index 0000000..534946d
--- /dev/null
+++ b/go/chao-sdk-core/wasm/indexdb/conversation_unread_message_model.go
@@ -0,0 +1,58 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build js && wasm
+// +build js,wasm
+
+package indexdb
+
+import (
+ "context"
+ "github.com/openimsdk/openim-sdk-core/v3/wasm/exec"
+)
+
+import (
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+)
+
+type LocalConversationUnreadMessages struct {
+}
+
+func NewLocalConversationUnreadMessages() *LocalConversationUnreadMessages {
+ return &LocalConversationUnreadMessages{}
+}
+
+func (i *LocalConversationUnreadMessages) BatchInsertConversationUnreadMessageList(ctx context.Context, messageList []*model_struct.LocalConversationUnreadMessage) error {
+ if messageList == nil {
+ return nil
+ }
+ _, err := exec.Exec(utils.StructToJsonString(messageList))
+ return err
+}
+
+func (i *LocalConversationUnreadMessages) DeleteConversationUnreadMessageList(ctx context.Context, conversationID string, sendTime int64) int64 {
+ deleteRows, err := exec.Exec(conversationID, sendTime)
+ if err != nil {
+ return 0
+ } else {
+ if v, ok := deleteRows.(float64); ok {
+ var result int64
+ result = int64(v)
+ return result
+ } else {
+ return 0
+ }
+ }
+}
diff --git a/go/chao-sdk-core/wasm/indexdb/friend_model.go b/go/chao-sdk-core/wasm/indexdb/friend_model.go
new file mode 100644
index 0000000..1427120
--- /dev/null
+++ b/go/chao-sdk-core/wasm/indexdb/friend_model.go
@@ -0,0 +1,172 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build js && wasm
+// +build js,wasm
+
+package indexdb
+
+import (
+ "context"
+ "github.com/openimsdk/openim-sdk-core/v3/wasm/exec"
+)
+
+import (
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/wasm/indexdb/temp_struct"
+)
+
+type Friend struct {
+ loginUserID string
+}
+
+func NewFriend(loginUserID string) *Friend {
+ return &Friend{loginUserID: loginUserID}
+}
+
+func (i *Friend) InsertFriend(ctx context.Context, friend *model_struct.LocalFriend) error {
+ _, err := exec.Exec(utils.StructToJsonString(friend))
+ return err
+}
+
+func (i *Friend) DeleteFriendDB(ctx context.Context, friendUserID string) error {
+ _, err := exec.Exec(friendUserID, i.loginUserID)
+ return err
+}
+
+func (i *Friend) UpdateFriend(ctx context.Context, friend *model_struct.LocalFriend) error {
+ tempLocalFriend := temp_struct.LocalFriend{
+ OwnerUserID: friend.OwnerUserID,
+ FriendUserID: friend.FriendUserID,
+ Remark: friend.Remark,
+ CreateTime: friend.CreateTime,
+ AddSource: friend.AddSource,
+ OperatorUserID: friend.OperatorUserID,
+ Nickname: friend.Nickname,
+ FaceURL: friend.FaceURL,
+ Ex: friend.Ex,
+ AttachedInfo: friend.AttachedInfo,
+ IsPinned: friend.IsPinned,
+ }
+ _, err := exec.Exec(utils.StructToJsonString(tempLocalFriend))
+ return err
+}
+
+func (i *Friend) GetAllFriendList(ctx context.Context) (result []*model_struct.LocalFriend, err error) {
+ gList, err := exec.Exec(i.loginUserID)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := gList.(string); ok {
+ var temp []model_struct.LocalFriend
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ for _, v := range temp {
+ v1 := v
+ result = append(result, &v1)
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+func (i *Friend) SearchFriendList(ctx context.Context, keyword string, isSearchUserID, isSearchNickname, isSearchRemark bool) (result []*model_struct.LocalFriend, err error) {
+ gList, err := exec.Exec(keyword, isSearchUserID, isSearchNickname, isSearchRemark)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := gList.(string); ok {
+ var temp []model_struct.LocalFriend
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ for _, v := range temp {
+ v1 := v
+ result = append(result, &v1)
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+func (i *Friend) UpdateColumnsFriend(ctx context.Context, friendIDs []string, args map[string]interface{}) error {
+ _, err := exec.Exec(utils.StructToJsonString(friendIDs), utils.StructToJsonString(args))
+ if err != nil {
+ return err // Return immediately if there's an error with any friendID
+ }
+ return nil
+}
+
+func (i *Friend) GetFriendInfoByFriendUserID(ctx context.Context, FriendUserID string) (*model_struct.LocalFriend, error) {
+ c, err := exec.Exec(FriendUserID, i.loginUserID)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := c.(string); ok {
+ result := model_struct.LocalFriend{}
+ err := utils.JsonStringToStruct(v, &result)
+ if err != nil {
+ return nil, err
+ }
+ return &result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+func (i *Friend) GetFriendInfoList(ctx context.Context, friendUserIDList []string) (result []*model_struct.LocalFriend, err error) {
+ gList, err := exec.Exec(utils.StructToJsonString(friendUserIDList))
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := gList.(string); ok {
+ var temp []model_struct.LocalFriend
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ for _, v := range temp {
+ v1 := v
+ result = append(result, &v1)
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+func (i *Friend) GetPageFriendList(ctx context.Context, offset, count int) (result []*model_struct.LocalFriend, err error) {
+ gList, err := exec.Exec(offset, count, i.loginUserID)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := gList.(string); ok {
+ err := utils.JsonStringToStruct(v, &result)
+ if err != nil {
+ return nil, err
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
diff --git a/go/chao-sdk-core/wasm/indexdb/friend_request_model.go b/go/chao-sdk-core/wasm/indexdb/friend_request_model.go
new file mode 100644
index 0000000..d358af7
--- /dev/null
+++ b/go/chao-sdk-core/wasm/indexdb/friend_request_model.go
@@ -0,0 +1,149 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build js && wasm
+// +build js,wasm
+
+package indexdb
+
+import (
+ "context"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/wasm/exec"
+ "github.com/openimsdk/openim-sdk-core/v3/wasm/indexdb/temp_struct"
+)
+
+type FriendRequest struct {
+ loginUserID string
+}
+
+func NewFriendRequest(loginUserID string) *FriendRequest {
+ return &FriendRequest{loginUserID: loginUserID}
+}
+
+func (i FriendRequest) InsertFriendRequest(ctx context.Context, friendRequest *model_struct.LocalFriendRequest) error {
+ _, err := exec.Exec(utils.StructToJsonString(friendRequest))
+ return err
+}
+
+func (i FriendRequest) DeleteFriendRequestBothUserID(ctx context.Context, fromUserID, toUserID string) error {
+ _, err := exec.Exec(fromUserID, toUserID)
+ return err
+}
+
+func (i FriendRequest) UpdateFriendRequest(ctx context.Context, friendRequest *model_struct.LocalFriendRequest) error {
+ tempLocalFriendRequest := temp_struct.LocalFriendRequest{
+ FromUserID: friendRequest.FromUserID,
+ FromNickname: friendRequest.FromNickname,
+ FromFaceURL: friendRequest.FromFaceURL,
+ ToUserID: friendRequest.ToUserID,
+ ToNickname: friendRequest.ToNickname,
+ ToFaceURL: friendRequest.ToFaceURL,
+ HandleResult: friendRequest.HandleResult,
+ ReqMsg: friendRequest.ReqMsg,
+ CreateTime: friendRequest.CreateTime,
+ HandlerUserID: friendRequest.HandlerUserID,
+ HandleMsg: friendRequest.HandleMsg,
+ HandleTime: friendRequest.HandleTime,
+ Ex: friendRequest.Ex,
+ AttachedInfo: friendRequest.AttachedInfo,
+ }
+ _, err := exec.Exec(utils.StructToJsonString(tempLocalFriendRequest))
+ return err
+}
+
+func (i FriendRequest) GetRecvFriendApplication(ctx context.Context) (result []*model_struct.LocalFriendRequest, err error) {
+ gList, err := exec.Exec(i.loginUserID)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := gList.(string); ok {
+ var temp []model_struct.LocalFriendRequest
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ for _, v := range temp {
+ v1 := v
+ result = append(result, &v1)
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+func (i FriendRequest) GetSendFriendApplication(ctx context.Context) (result []*model_struct.LocalFriendRequest, err error) {
+ gList, err := exec.Exec(i.loginUserID)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := gList.(string); ok {
+ var temp []model_struct.LocalFriendRequest
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ for _, v := range temp {
+ v1 := v
+ result = append(result, &v1)
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+func (i FriendRequest) GetFriendApplicationByBothID(ctx context.Context, fromUserID, toUserID string) (*model_struct.LocalFriendRequest, error) {
+ c, err := exec.Exec(fromUserID, toUserID)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := c.(string); ok {
+ result := model_struct.LocalFriendRequest{}
+ err := utils.JsonStringToStruct(v, &result)
+ if err != nil {
+ return nil, err
+ }
+ return &result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+func (i FriendRequest) GetBothFriendReq(ctx context.Context, fromUserID, toUserID string) (result []*model_struct.LocalFriendRequest, err error) {
+ gList, err := exec.Exec(fromUserID, toUserID)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := gList.(string); ok {
+ var temp []model_struct.LocalFriendRequest
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ for _, v := range temp {
+ v1 := v
+ result = append(result, &v1)
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
diff --git a/go/chao-sdk-core/wasm/indexdb/group_member_model.go b/go/chao-sdk-core/wasm/indexdb/group_member_model.go
new file mode 100644
index 0000000..4a5e96d
--- /dev/null
+++ b/go/chao-sdk-core/wasm/indexdb/group_member_model.go
@@ -0,0 +1,335 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build js && wasm
+// +build js,wasm
+
+package indexdb
+
+import (
+ "context"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/wasm/exec"
+)
+
+type LocalGroupMember struct {
+}
+
+func NewLocalGroupMember() *LocalGroupMember {
+ return &LocalGroupMember{}
+}
+
+func (i *LocalGroupMember) GetGroupMemberInfoByGroupIDUserID(ctx context.Context, groupID, userID string) (*model_struct.LocalGroupMember, error) {
+ member, err := exec.Exec(groupID, userID)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := member.(string); ok {
+ var temp model_struct.LocalGroupMember
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ return &temp, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+func (i *LocalGroupMember) GetAllGroupMemberList(ctx context.Context) ([]model_struct.LocalGroupMember, error) {
+ member, err := exec.Exec()
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := member.(string); ok {
+ var temp []model_struct.LocalGroupMember
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ return temp, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+func (i *LocalGroupMember) GetAllGroupMemberUserIDList(ctx context.Context) ([]model_struct.LocalGroupMember, error) {
+ member, err := exec.Exec()
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := member.(string); ok {
+ var temp []model_struct.LocalGroupMember
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ return temp, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+func (i *LocalGroupMember) GetGroupMemberCount(ctx context.Context, groupID string) (int32, error) {
+ count, err := exec.Exec(groupID)
+ if err != nil {
+ return 0, err
+ }
+ if v, ok := count.(float64); ok {
+ return int32(v), nil
+ }
+ return 0, exec.ErrType
+}
+
+func (i *LocalGroupMember) GetGroupSomeMemberInfo(ctx context.Context, groupID string, userIDList []string) ([]*model_struct.LocalGroupMember, error) {
+ member, err := exec.Exec(groupID, utils.StructToJsonString(userIDList))
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := member.(string); ok {
+ var temp []*model_struct.LocalGroupMember
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ return temp, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+func (i *LocalGroupMember) GetGroupAdminID(ctx context.Context, groupID string) ([]string, error) {
+ IDList, err := exec.Exec(groupID)
+ if err != nil {
+ return nil, err
+ }
+ if v, ok := IDList.(string); ok {
+ var temp []string
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ return temp, nil
+ }
+ return nil, exec.ErrType
+}
+
+func (i *LocalGroupMember) GetGroupMemberListByGroupID(ctx context.Context, groupID string) ([]*model_struct.LocalGroupMember, error) {
+ member, err := exec.Exec(groupID)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := member.(string); ok {
+ var temp []*model_struct.LocalGroupMember
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ return temp, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+func (i *LocalGroupMember) GetGroupMemberListSplit(ctx context.Context, groupID string, filter int32, offset, count int) ([]*model_struct.LocalGroupMember, error) {
+ member, err := exec.Exec(groupID, filter, offset, count)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := member.(string); ok {
+ var temp []*model_struct.LocalGroupMember
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ return temp, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+func (i *LocalGroupMember) GetGroupMemberOwnerAndAdminDB(ctx context.Context, groupID string) ([]*model_struct.LocalGroupMember, error) {
+ member, err := exec.Exec(groupID)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := member.(string); ok {
+ var temp []*model_struct.LocalGroupMember
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ return temp, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+func (i *LocalGroupMember) GetGroupMemberOwner(ctx context.Context, groupID string) (*model_struct.LocalGroupMember, error) {
+ member, err := exec.Exec(groupID)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := member.(string); ok {
+ var temp model_struct.LocalGroupMember
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ return &temp, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+func (i *LocalGroupMember) GetGroupMemberListSplitByJoinTimeFilter(ctx context.Context, groupID string, offset, count int, joinTimeBegin, joinTimeEnd int64, userIDList []string) ([]*model_struct.LocalGroupMember, error) {
+ member, err := exec.Exec(groupID, offset, count, joinTimeBegin, joinTimeEnd, utils.StructToJsonString(userIDList))
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := member.(string); ok {
+ var temp []*model_struct.LocalGroupMember
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ return temp, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+func (i *LocalGroupMember) GetGroupOwnerAndAdminByGroupID(ctx context.Context, groupID string) ([]*model_struct.LocalGroupMember, error) {
+ member, err := exec.Exec(groupID)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := member.(string); ok {
+ var temp []*model_struct.LocalGroupMember
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ return temp, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+func (i *LocalGroupMember) GetGroupMemberUIDListByGroupID(ctx context.Context, groupID string) (result []string, err error) {
+ IDList, err := exec.Exec(groupID)
+ if err != nil {
+ return nil, err
+ }
+ if v, ok := IDList.(string); ok {
+ err := utils.JsonStringToStruct(v, &result)
+ if err != nil {
+ return nil, err
+ }
+ return result, nil
+ }
+ return nil, exec.ErrType
+}
+
+func (i *LocalGroupMember) InsertGroupMember(ctx context.Context, groupMember *model_struct.LocalGroupMember) error {
+ _, err := exec.Exec(utils.StructToJsonString(groupMember))
+ return err
+}
+
+func (i *LocalGroupMember) BatchInsertGroupMember(ctx context.Context, groupMemberList []*model_struct.LocalGroupMember) error {
+ _, err := exec.Exec(utils.StructToJsonString(groupMemberList))
+ return err
+}
+
+func (i *LocalGroupMember) DeleteGroupMember(ctx context.Context, groupID, userID string) error {
+ _, err := exec.Exec(groupID, userID)
+ return err
+}
+
+func (i *LocalGroupMember) DeleteGroupAllMembers(ctx context.Context, groupID string) error {
+ _, err := exec.Exec(groupID)
+ return err
+}
+
+func (i *LocalGroupMember) UpdateGroupMember(ctx context.Context, groupMember *model_struct.LocalGroupMember) error {
+ _, err := exec.Exec(utils.StructToJsonString(groupMember))
+ return err
+}
+
+func (i *LocalGroupMember) UpdateGroupMemberField(ctx context.Context, groupID, userID string, args map[string]interface{}) error {
+ _, err := exec.Exec(groupID, userID, utils.StructToJsonString(args))
+ return err
+}
+
+func (i *LocalGroupMember) GetGroupMemberInfoIfOwnerOrAdmin(ctx context.Context) ([]*model_struct.LocalGroupMember, error) {
+ member, err := exec.Exec()
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := member.(string); ok {
+ var temp []*model_struct.LocalGroupMember
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ return temp, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+func (i *LocalGroupMember) SearchGroupMembersDB(ctx context.Context, keyword string, groupID string, isSearchMemberNickname, isSearchUserID bool, offset, count int) (result []*model_struct.LocalGroupMember, err error) {
+ member, err := exec.Exec(keyword, groupID, isSearchMemberNickname, isSearchUserID, offset, count)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := member.(string); ok {
+ var temp []*model_struct.LocalGroupMember
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ return temp, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+func (i *LocalGroupMember) GetUserJoinedGroupIDs(ctx context.Context, userID string) (result []string, err error) {
+ IDList, err := exec.Exec(userID)
+ if err != nil {
+ return nil, err
+ }
+ if v, ok := IDList.(string); ok {
+ err := utils.JsonStringToStruct(v, &result)
+ if err != nil {
+ return nil, err
+ }
+ return result, nil
+ }
+ return nil, exec.ErrType
+}
diff --git a/go/chao-sdk-core/wasm/indexdb/group_model.go b/go/chao-sdk-core/wasm/indexdb/group_model.go
new file mode 100644
index 0000000..6fb0298
--- /dev/null
+++ b/go/chao-sdk-core/wasm/indexdb/group_model.go
@@ -0,0 +1,157 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build js && wasm
+// +build js,wasm
+
+package indexdb
+
+import (
+ "context"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/wasm/exec"
+)
+
+type LocalGroups struct{}
+
+func NewLocalGroups() *LocalGroups {
+ return &LocalGroups{}
+}
+
+func (i *LocalGroups) InsertGroup(ctx context.Context, groupInfo *model_struct.LocalGroup) error {
+ _, err := exec.Exec(utils.StructToJsonString(groupInfo))
+ return err
+}
+
+func (i *LocalGroups) DeleteGroup(ctx context.Context, groupID string) error {
+ _, err := exec.Exec(groupID)
+ return err
+}
+
+// č¯ĨåŊæ°éčĻå
¨æ´æ°
+func (i *LocalGroups) UpdateGroup(ctx context.Context, groupInfo *model_struct.LocalGroup) error {
+ _, err := exec.Exec(groupInfo.GroupID, utils.StructToJsonString(groupInfo))
+ return err
+}
+
+func (i *LocalGroups) GetJoinedGroupListDB(ctx context.Context) (result []*model_struct.LocalGroup, err error) {
+ gList, err := exec.Exec()
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := gList.(string); ok {
+ var temp []model_struct.LocalGroup
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ for _, v := range temp {
+ v1 := v
+ result = append(result, &v1)
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+func (i *LocalGroups) GetGroups(ctx context.Context, groupIDs []string) (result []*model_struct.LocalGroup, err error) {
+ gList, err := exec.Exec(utils.StructToJsonString(groupIDs))
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := gList.(string); ok {
+ var temp []model_struct.LocalGroup
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ for _, v := range temp {
+ v1 := v
+ result = append(result, &v1)
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+func (i *LocalGroups) GetGroupInfoByGroupID(ctx context.Context, groupID string) (*model_struct.LocalGroup, error) {
+ c, err := exec.Exec(groupID)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := c.(string); ok {
+ result := model_struct.LocalGroup{}
+ err := utils.JsonStringToStruct(v, &result)
+ if err != nil {
+ return nil, err
+ }
+ return &result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+func (i *LocalGroups) GetAllGroupInfoByGroupIDOrGroupName(ctx context.Context, keyword string, isSearchGroupID bool, isSearchGroupName bool) (result []*model_struct.LocalGroup, err error) {
+ gList, err := exec.Exec(keyword, isSearchGroupID, isSearchGroupName)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := gList.(string); ok {
+ var temp []model_struct.LocalGroup
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ for _, v := range temp {
+ v1 := v
+ result = append(result, &v1)
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+func (i *LocalGroups) AddMemberCount(ctx context.Context, groupID string) error {
+ _, err := exec.Exec(groupID)
+ return err
+}
+
+func (i *LocalGroups) SubtractMemberCount(ctx context.Context, groupID string) error {
+ _, err := exec.Exec(groupID)
+ return err
+}
+func (i *LocalGroups) GetGroupMemberAllGroupIDs(ctx context.Context) (result []string, err error) {
+ groupIDList, err := exec.Exec()
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := groupIDList.(string); ok {
+ err := utils.JsonStringToStruct(v, &result)
+ if err != nil {
+ return nil, err
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
diff --git a/go/chao-sdk-core/wasm/indexdb/group_request.model.go b/go/chao-sdk-core/wasm/indexdb/group_request.model.go
new file mode 100644
index 0000000..f9bb4e4
--- /dev/null
+++ b/go/chao-sdk-core/wasm/indexdb/group_request.model.go
@@ -0,0 +1,97 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build js && wasm
+// +build js,wasm
+
+package indexdb
+
+import (
+ "context"
+ "github.com/openimsdk/openim-sdk-core/v3/wasm/exec"
+)
+
+import (
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+)
+
+type LocalGroupRequest struct {
+}
+
+func NewLocalGroupRequest() *LocalGroupRequest {
+ return &LocalGroupRequest{}
+}
+
+func (i *LocalGroupRequest) InsertGroupRequest(ctx context.Context, groupRequest *model_struct.LocalGroupRequest) error {
+ _, err := exec.Exec(utils.StructToJsonString(groupRequest))
+ return err
+}
+
+func (i *LocalGroupRequest) DeleteGroupRequest(ctx context.Context, groupID, userID string) error {
+ _, err := exec.Exec(groupID, userID)
+ return err
+}
+
+func (i *LocalGroupRequest) UpdateGroupRequest(ctx context.Context, groupRequest *model_struct.LocalGroupRequest) error {
+ _, err := exec.Exec(utils.StructToJsonString(groupRequest))
+ return err
+}
+
+func (i *LocalGroupRequest) GetSendGroupApplication(ctx context.Context) ([]*model_struct.LocalGroupRequest, error) {
+ result, err := exec.Exec()
+ if err != nil {
+ return nil, err
+ }
+ if v, ok := result.(string); ok {
+ var request []*model_struct.LocalGroupRequest
+ if err := utils.JsonStringToStruct(v, &request); err != nil {
+ return nil, err
+ }
+ return request, nil
+ } else {
+ return nil, exec.ErrType
+ }
+}
+
+func (i *LocalGroupRequest) InsertAdminGroupRequest(ctx context.Context, groupRequest *model_struct.LocalAdminGroupRequest) error {
+ _, err := exec.Exec(utils.StructToJsonString(groupRequest))
+ return err
+}
+
+func (i *LocalGroupRequest) DeleteAdminGroupRequest(ctx context.Context, groupID, userID string) error {
+ _, err := exec.Exec(groupID, userID)
+ return err
+}
+
+func (i *LocalGroupRequest) UpdateAdminGroupRequest(ctx context.Context, groupRequest *model_struct.LocalAdminGroupRequest) error {
+ _, err := exec.Exec(utils.StructToJsonString(groupRequest))
+ return err
+}
+
+func (i *LocalGroupRequest) GetAdminGroupApplication(ctx context.Context) ([]*model_struct.LocalAdminGroupRequest, error) {
+ result, err := exec.Exec()
+ if err != nil {
+ return nil, err
+ }
+ if v, ok := result.(string); ok {
+ var request []*model_struct.LocalAdminGroupRequest
+ if err := utils.JsonStringToStruct(v, &request); err != nil {
+ return nil, err
+ }
+ return request, nil
+ } else {
+ return nil, exec.ErrType
+ }
+}
diff --git a/go/chao-sdk-core/wasm/indexdb/init.go b/go/chao-sdk-core/wasm/indexdb/init.go
new file mode 100644
index 0000000..20ef452
--- /dev/null
+++ b/go/chao-sdk-core/wasm/indexdb/init.go
@@ -0,0 +1,101 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build js && wasm
+// +build js,wasm
+
+package indexdb
+
+import (
+ "context"
+ "github.com/openimsdk/openim-sdk-core/v3/wasm/exec"
+)
+
+//1,äŊŋį¨wasmåįįæšåŧīŧtinygoåēį¨äēgoįåĩå
Ĩåŧéĸåīŧæ¯æįåčŊæéīŧæ¯ægoč¯č¨įåé,įčŗjsonåēååéŊæ æŗæ¯æ
+//2.åŊæ°åŊåéĩäģéŠŧåŗ°åŊå
+//3.æäžįsqlįæč¯åĨä¸īŧå
ŗäēboolåŧéčĻįšæŽå¤įīŧcreateč¯åĨį莞莥įå°boolåŧįéčĻå¨ååģēč¯åĨä¸åįŦ蝴æīŧčŋæ¯å ä¸ēå¨åæįsqliteä¸åšļ䏿¯æboolīŧ፿´æ°1æč
0æŋäģŖīŧgorm寚å
ļåäēčŊŦæĸã
+//4.æäžįsqlįæč¯åĨä¸īŧåæŽĩ忝ä¸åįēŋæšåŧ äžåĻīŧrecv_idīŧäŊæ¯æĨåŖčŊŦæĸįæ°æŽjson tagåæŽĩįéŖæ ŧæ¯recvIDīŧįąģäŧŧįææįåæŽĩéčĻåä¸Ēmapæ å°
+//5.äģģäŊæļåå°gormčˇå῝åĻéčĻčŋåé蝝īŧæ¯åĻtakeåfindéŊéčĻå¨ææĄŖä¸č¯´æ
+//6.äģģäŊæļåå°updateįæäŊīŧä¸åŽčĻįgormååä¸åŽį°īŧåĻææselect(*)åä¸éčĻį¨temp_structä¸įįģæäŊ
+//7.äģģäŊåæĨåŖéåįæļåīŧdbæĨåŖįģä¸å ä¸åįŧDB
+//8.äģģäŊmapįąģåįģä¸äŊŋį¨jsonåįŦĻ串čŊŦæĸīŧææĄŖč¯´æ
+
+type IndexDB struct {
+ LocalUsers
+ LocalConversations
+ *LocalChatLogs
+ LocalSuperGroupChatLogs
+ LocalSuperGroup
+ LocalConversationUnreadMessages
+ LocalGroups
+ LocalGroupMember
+ LocalGroupRequest
+ LocalCacheMessage
+ LocalStrangers
+ LocalUserCommand
+ *FriendRequest
+ *Black
+ *Friend
+ LocalChatLogReactionExtensions
+ loginUserID string
+}
+
+func (i IndexDB) Close(ctx context.Context) error {
+ _, err := exec.Exec()
+ return err
+}
+
+func (i IndexDB) InitDB(ctx context.Context, userID string, dataDir string) error {
+ _, err := exec.Exec(userID, dataDir)
+ return err
+}
+
+func (i IndexDB) SetChatLogFailedStatus(ctx context.Context) {
+ //msgList, err := i.GetSendingMessageList()
+ //if err != nil {
+ // log.Error("", "GetSendingMessageList failed ", err.Error())
+ // return
+ //}
+ //for _, v := range msgList {
+ // v.Status = constant.MsgStatusSendFailed
+ // err := i.UpdateMessage(v)
+ // if err != nil {
+ // log.Error("", "UpdateMessage failed ", err.Error(), v)
+ // continue
+ // }
+ //}
+ //groupIDList, err := i.GetReadDiffusionGroupIDList()
+ //if err != nil {
+ // log.Error("", "GetReadDiffusionGroupIDList failed ", err.Error())
+ // return
+ //}
+ //for _, v := range groupIDList {
+ // msgList, err := i.SuperGroupGetSendingMessageList(v)
+ // if err != nil {
+ // log.Error("", "GetSendingMessageList failed ", err.Error())
+ // return
+ // }
+ // if len(msgList) > 0 {
+ // for _, v := range msgList {
+ // v.Status = constant.MsgStatusSendFailed
+ // err := i.SuperGroupUpdateMessage(v)
+ // if err != nil {
+ // log.Error("", "UpdateMessage failed ", err.Error(), v)
+ // continue
+ // }
+ // }
+ // }
+ //
+ //}
+}
diff --git a/go/chao-sdk-core/wasm/indexdb/notification_model.go b/go/chao-sdk-core/wasm/indexdb/notification_model.go
new file mode 100644
index 0000000..e1d283d
--- /dev/null
+++ b/go/chao-sdk-core/wasm/indexdb/notification_model.go
@@ -0,0 +1,54 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build js && wasm
+// +build js,wasm
+
+package indexdb
+
+import (
+ "context"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/wasm/exec"
+)
+
+type NotificationSeqs struct {
+}
+
+func NewNotificationSeqs() *NotificationSeqs {
+ return &NotificationSeqs{}
+}
+
+func (i *NotificationSeqs) SetNotificationSeq(ctx context.Context, conversationID string, seq int64) error {
+ _, err := exec.Exec(conversationID, seq)
+ return err
+}
+
+func (i *NotificationSeqs) GetNotificationAllSeqs(ctx context.Context) (result []*model_struct.NotificationSeqs, err error) {
+ gList, err := exec.Exec()
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := gList.(string); ok {
+ err := utils.JsonStringToStruct(v, &result)
+ if err != nil {
+ return nil, err
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
diff --git a/go/chao-sdk-core/wasm/indexdb/sending_messages_model.go b/go/chao-sdk-core/wasm/indexdb/sending_messages_model.go
new file mode 100644
index 0000000..9b1d97e
--- /dev/null
+++ b/go/chao-sdk-core/wasm/indexdb/sending_messages_model.go
@@ -0,0 +1,62 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build js && wasm
+// +build js,wasm
+
+package indexdb
+
+import (
+ "context"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/wasm/exec"
+)
+
+type LocalSendingMessages struct {
+}
+
+func NewLocalSendingMessages() *LocalSendingMessages {
+ return &LocalSendingMessages{}
+}
+func (i *LocalSendingMessages) InsertSendingMessage(ctx context.Context, message *model_struct.LocalSendingMessages) error {
+ _, err := exec.Exec(utils.StructToJsonString(message))
+ return err
+}
+
+func (i *LocalSendingMessages) DeleteSendingMessage(ctx context.Context, conversationID, clientMsgID string) error {
+ _, err := exec.Exec(conversationID, clientMsgID)
+ return err
+}
+func (i *LocalSendingMessages) GetAllSendingMessages(ctx context.Context) (result []*model_struct.LocalSendingMessages, err error) {
+ gList, err := exec.Exec()
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := gList.(string); ok {
+ var temp []model_struct.LocalSendingMessages
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ for _, v := range temp {
+ v1 := v
+ result = append(result, &v1)
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
diff --git a/go/chao-sdk-core/wasm/indexdb/stranger_model.go b/go/chao-sdk-core/wasm/indexdb/stranger_model.go
new file mode 100644
index 0000000..049a434
--- /dev/null
+++ b/go/chao-sdk-core/wasm/indexdb/stranger_model.go
@@ -0,0 +1,62 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build js && wasm
+// +build js,wasm
+
+package indexdb
+
+import (
+ "context"
+ "github.com/openimsdk/openim-sdk-core/v3/wasm/exec"
+)
+
+import (
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+)
+
+type LocalStrangers struct {
+}
+
+func NewLocalStrangers() *LocalStrangers {
+ return &LocalStrangers{}
+}
+
+func (l *LocalStrangers) GetStrangerInfo(ctx context.Context, userIDs []string) (result []*model_struct.LocalStranger, err error) {
+ gList, err := exec.Exec(utils.StructToJsonString(userIDs))
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := gList.(string); ok {
+ var temp []model_struct.LocalStranger
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ for _, v := range temp {
+ v1 := v
+ result = append(result, &v1)
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+func (l *LocalStrangers) SetStrangerInfo(ctx context.Context, strangerList []*model_struct.LocalStranger) error {
+ _, err := exec.Exec(utils.StructToJsonString(strangerList))
+ return err
+}
diff --git a/go/chao-sdk-core/wasm/indexdb/super_group_chat_log_model.go b/go/chao-sdk-core/wasm/indexdb/super_group_chat_log_model.go
new file mode 100644
index 0000000..438e1b0
--- /dev/null
+++ b/go/chao-sdk-core/wasm/indexdb/super_group_chat_log_model.go
@@ -0,0 +1,461 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build js && wasm
+// +build js,wasm
+
+package indexdb
+
+import (
+ "context"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/sdk_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/wasm/exec"
+ "github.com/openimsdk/openim-sdk-core/v3/wasm/indexdb/temp_struct"
+)
+
+type LocalSuperGroupChatLogs struct{}
+
+func NewLocalSuperGroupChatLogs() *LocalSuperGroupChatLogs {
+ return &LocalSuperGroupChatLogs{}
+}
+
+func (i *LocalSuperGroupChatLogs) SuperGroupGetNormalMinSeq(ctx context.Context, groupID string) (uint32, error) {
+ seq, err := exec.Exec(groupID)
+ if err != nil {
+ return 0, err
+ } else {
+ if v, ok := seq.(float64); ok {
+ var result uint32
+ result = uint32(v)
+ return result, err
+ } else {
+ return 0, exec.ErrType
+ }
+ }
+}
+
+func (i *LocalSuperGroupChatLogs) SuperGroupGetMessage(ctx context.Context, message *sdk_struct.MsgStruct) (*model_struct.LocalChatLog, error) {
+ msg, err := exec.Exec(message.GroupID, message.ClientMsgID)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := msg.(string); ok {
+ result := model_struct.LocalChatLog{}
+ err := utils.JsonStringToStruct(v, &result)
+ if err != nil {
+ return nil, err
+ }
+ return &result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+func (i *LocalSuperGroupChatLogs) SuperGroupUpdateMessage(ctx context.Context, c *model_struct.LocalChatLog) error {
+ if c.ClientMsgID == "" {
+ return exec.PrimaryKeyNull
+ }
+ tempLocalChatLog := temp_struct.LocalChatLog{
+ ServerMsgID: c.ServerMsgID,
+ SendID: c.SendID,
+ RecvID: c.RecvID,
+ SenderPlatformID: c.SenderPlatformID,
+ SenderNickname: c.SenderNickname,
+ SenderFaceURL: c.SenderFaceURL,
+ SessionType: c.SessionType,
+ MsgFrom: c.MsgFrom,
+ ContentType: c.ContentType,
+ Content: c.Content,
+ IsRead: c.IsRead,
+ Status: c.Status,
+ Seq: c.Seq,
+ SendTime: c.SendTime,
+ CreateTime: c.CreateTime,
+ AttachedInfo: c.AttachedInfo,
+ Ex: c.Ex,
+ IsReact: c.IsReact,
+ IsExternalExtensions: c.IsExternalExtensions,
+ MsgFirstModifyTime: c.MsgFirstModifyTime,
+ }
+ _, err := exec.Exec(c.RecvID, c.ClientMsgID, utils.StructToJsonString(tempLocalChatLog))
+ return err
+
+}
+func (i *LocalSuperGroupChatLogs) SuperGroupBatchInsertMessageList(ctx context.Context, messageList []*model_struct.LocalChatLog, groupID string) error {
+ _, err := exec.Exec(utils.StructToJsonString(messageList), groupID)
+ return err
+}
+func (i *LocalSuperGroupChatLogs) SuperGroupInsertMessage(ctx context.Context, message *model_struct.LocalChatLog, groupID string) error {
+ _, err := exec.Exec(utils.StructToJsonString(message), groupID)
+ return err
+}
+func (i *LocalSuperGroupChatLogs) SuperGroupGetMultipleMessage(ctx context.Context, msgIDList []string, groupID string) (result []*model_struct.LocalChatLog, err error) {
+ msgList, err := exec.Exec(utils.StructToJsonString(msgIDList), groupID)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := msgList.(string); ok {
+ var temp []model_struct.LocalChatLog
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ for _, v := range temp {
+ v1 := v
+ result = append(result, &v1)
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+func (i *LocalSuperGroupChatLogs) SuperGroupUpdateMessageTimeAndStatus(ctx context.Context, msg *sdk_struct.MsgStruct) error {
+ _, err := exec.Exec(msg.GroupID, msg.ClientMsgID, msg.ServerMsgID, msg.SendTime, msg.Status)
+ return err
+}
+func (i *LocalSuperGroupChatLogs) SuperGroupGetMessageListNoTime(ctx context.Context, sourceID string, sessionType, count int, isReverse bool) (result []*model_struct.LocalChatLog, err error) {
+ msgList, err := exec.Exec(sourceID, sessionType, count, isReverse)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := msgList.(string); ok {
+ var temp []model_struct.LocalChatLog
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ for _, v := range temp {
+ v1 := v
+ result = append(result, &v1)
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+func (i *LocalSuperGroupChatLogs) SuperGroupGetMessageList(ctx context.Context, sourceID string, sessionType, count int, startTime int64, isReverse bool) (result []*model_struct.LocalChatLog, err error) {
+ msgList, err := exec.Exec(sourceID, sessionType, count, startTime, isReverse)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := msgList.(string); ok {
+ var temp []model_struct.LocalChatLog
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ for _, v := range temp {
+ v1 := v
+ result = append(result, &v1)
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+func (i *LocalSuperGroupChatLogs) SuperGroupSearchMessageByKeyword(ctx context.Context, contentType []int, keywordList []string, keywordListMatchType int, sourceID string, startTime, endTime int64, sessionType, offset, count int) (result []*model_struct.LocalChatLog, err error) {
+ msgList, err := exec.Exec(utils.StructToJsonString(contentType), utils.StructToJsonString(keywordList), keywordListMatchType, sourceID, startTime, endTime, sessionType, offset, count)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := msgList.(string); ok {
+ var temp []model_struct.LocalChatLog
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ for _, v := range temp {
+ v1 := v
+ result = append(result, &v1)
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+func (i *LocalSuperGroupChatLogs) SuperGroupSearchAllMessageByContentType(ctx context.Context, superGroupID string, contentType int32) (result []*model_struct.LocalChatLog, err error) {
+ msgList, err := exec.Exec(superGroupID, contentType)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := msgList.(string); ok {
+ var temp []*model_struct.LocalChatLog
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ for _, v := range temp {
+ v1 := v
+ result = append(result, v1)
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+func (i *LocalSuperGroupChatLogs) InitSuperLocalErrChatLog(ctx context.Context, groupID string) {
+ _, _ = exec.Exec(groupID)
+}
+func (i *LocalSuperGroupChatLogs) SuperBatchInsertExceptionMsg(ctx context.Context, MessageList []*model_struct.LocalErrChatLog, groupID string) error {
+ _, err := exec.Exec(utils.StructToJsonString(MessageList), groupID)
+ return err
+}
+
+func (i *LocalSuperGroupChatLogs) InitSuperLocalChatLog(ctx context.Context, groupID string) {
+ _, _ = exec.Exec(groupID)
+}
+
+func (i *LocalSuperGroupChatLogs) SuperGroupDeleteAllMessage(ctx context.Context, groupID string) error {
+ _, err := exec.Exec(groupID)
+ return err
+}
+
+func (i *LocalSuperGroupChatLogs) SuperGroupSearchMessageByContentTypeAndKeyword(ctx context.Context, contentType []int, keywordList []string, keywordListMatchType int, startTime, endTime int64, groupID string) (result []*model_struct.LocalChatLog, err error) {
+ gList, err := exec.Exec(utils.StructToJsonString(contentType), utils.StructToJsonString(keywordList), keywordListMatchType, startTime, endTime, groupID)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := gList.(string); ok {
+ var temp []model_struct.LocalChatLog
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ for _, v := range temp {
+ v1 := v
+ result = append(result, &v1)
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+func (i *LocalSuperGroupChatLogs) SuperGroupBatchUpdateMessageList(ctx context.Context, MessageList []*model_struct.LocalChatLog) error {
+ _, err := exec.Exec(utils.StructToJsonString(MessageList))
+ return err
+}
+
+func (i *LocalSuperGroupChatLogs) SuperGroupMessageIfExists(ctx context.Context, ClientMsgID string) (bool, error) {
+ isExist, err := exec.Exec(ClientMsgID)
+ if err != nil {
+ return false, err
+ } else {
+ if v, ok := isExist.(bool); ok {
+ return v, nil
+ } else {
+ return false, exec.ErrType
+ }
+ }
+}
+
+func (i *LocalSuperGroupChatLogs) SuperGroupIsExistsInErrChatLogBySeq(ctx context.Context, seq int64) bool {
+ isExist, err := exec.Exec(seq)
+ if err != nil {
+ return false
+ } else {
+ if v, ok := isExist.(bool); ok {
+ return v
+ } else {
+ return false
+ }
+ }
+}
+
+func (i *LocalSuperGroupChatLogs) SuperGroupMessageIfExistsBySeq(ctx context.Context, seq int64) (bool, error) {
+ isExist, err := exec.Exec(seq)
+ if err != nil {
+ return false, err
+ } else {
+ if v, ok := isExist.(bool); ok {
+ return v, nil
+ } else {
+ return false, exec.ErrType
+ }
+ }
+}
+
+func (i *LocalSuperGroupChatLogs) SuperGroupGetAllUnDeleteMessageSeqList(ctx context.Context) ([]uint32, error) {
+ gList, err := exec.Exec()
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := gList.(string); ok {
+ var result []uint32
+ err := utils.JsonStringToStruct(v, &result)
+ if err != nil {
+ return nil, err
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+func (i *LocalSuperGroupChatLogs) SuperGroupUpdateColumnsMessage(ctx context.Context, clientMsgID, groupID string, args map[string]interface{}) error {
+ _, err := exec.Exec(clientMsgID, groupID, utils.StructToJsonString(args))
+ return err
+}
+
+func (i *LocalSuperGroupChatLogs) SuperGroupUpdateMessageStatusBySourceID(ctx context.Context, sourceID string, status, sessionType int32) error {
+ _, err := exec.Exec(sourceID, status, sessionType)
+ return err
+}
+
+func (i *LocalSuperGroupChatLogs) SuperGroupGetSendingMessageList(ctx context.Context, groupID string) (result []*model_struct.LocalChatLog, err error) {
+ gList, err := exec.Exec(groupID)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := gList.(string); ok {
+ err := utils.JsonStringToStruct(v, &result)
+ if err != nil {
+ return nil, err
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+func (i *LocalSuperGroupChatLogs) SuperGroupUpdateGroupMessageHasRead(ctx context.Context, msgIDList []string, groupID string) error {
+ _, err := exec.Exec(utils.StructToJsonString(msgIDList), groupID)
+ return err
+}
+
+func (i *LocalSuperGroupChatLogs) SuperGroupGetNormalMsgSeq(ctx context.Context) (uint32, error) {
+ seq, err := exec.Exec()
+ if err != nil {
+ return 0, err
+ } else {
+ if v, ok := seq.(float64); ok {
+ return uint32(v), nil
+ } else {
+ return 0, exec.ErrType
+ }
+ }
+}
+
+func (i *LocalSuperGroupChatLogs) SuperGroupGetTestMessage(ctx context.Context, seq uint32) (*model_struct.LocalChatLog, error) {
+ c, err := exec.Exec(seq)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := c.(string); ok {
+ result := model_struct.LocalChatLog{}
+ err := utils.JsonStringToStruct(v, &result)
+ if err != nil {
+ return nil, err
+ }
+ return &result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+func (i *LocalSuperGroupChatLogs) SuperGroupUpdateMsgSenderNickname(ctx context.Context, sendID, nickname string, sType int) error {
+ _, err := exec.Exec(sendID, nickname, sType)
+ return err
+}
+
+func (i *LocalSuperGroupChatLogs) SuperGroupUpdateMsgSenderFaceURL(ctx context.Context, sendID, faceURL string, sType int) error {
+ _, err := exec.Exec(sendID, faceURL, sType)
+ return err
+}
+
+func (i *LocalSuperGroupChatLogs) SuperGroupUpdateMsgSenderFaceURLAndSenderNickname(ctx context.Context, sendID, faceURL, nickname string, sessionType int, groupID string) error {
+ _, err := exec.Exec(sendID, faceURL, nickname, sessionType, groupID)
+ return err
+}
+
+func (i *LocalSuperGroupChatLogs) SuperGroupGetMsgSeqByClientMsgID(ctx context.Context, clientMsgID string, groupID string) (uint32, error) {
+ seq, err := exec.Exec(clientMsgID, groupID)
+ if err != nil {
+ return 0, err
+ } else {
+ if v, ok := seq.(float64); ok {
+ return uint32(v), nil
+ } else {
+ return 0, exec.ErrType
+ }
+ }
+}
+
+func (i *LocalSuperGroupChatLogs) SuperGroupGetMsgSeqListByGroupID(ctx context.Context, groupID string) ([]uint32, error) {
+ gList, err := exec.Exec(groupID)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := gList.(string); ok {
+ var result []uint32
+ err := utils.JsonStringToStruct(v, &result)
+ if err != nil {
+ return nil, err
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+func (i *LocalSuperGroupChatLogs) SuperGroupGetMsgSeqListByPeerUserID(ctx context.Context, userID string) ([]uint32, error) {
+ gList, err := exec.Exec(userID)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := gList.(string); ok {
+ var result []uint32
+ err := utils.JsonStringToStruct(v, &result)
+ if err != nil {
+ return nil, err
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+func (i *LocalSuperGroupChatLogs) SuperGroupGetMsgSeqListBySelfUserID(ctx context.Context, userID string) ([]uint32, error) {
+ gList, err := exec.Exec(userID)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := gList.(string); ok {
+ var result []uint32
+ err := utils.JsonStringToStruct(v, &result)
+ if err != nil {
+ return nil, err
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
diff --git a/go/chao-sdk-core/wasm/indexdb/super_group_model.go b/go/chao-sdk-core/wasm/indexdb/super_group_model.go
new file mode 100644
index 0000000..34384fc
--- /dev/null
+++ b/go/chao-sdk-core/wasm/indexdb/super_group_model.go
@@ -0,0 +1,128 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build js && wasm
+// +build js,wasm
+
+package indexdb
+
+import (
+ "context"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/wasm/exec"
+)
+
+type LocalSuperGroup struct{}
+
+func NewLocalSuperGroup() *LocalSuperGroup {
+ return &LocalSuperGroup{}
+}
+
+func (i *LocalSuperGroup) GetJoinedSuperGroupList(ctx context.Context) (result []*model_struct.LocalGroup, err error) {
+ groupList, err := exec.Exec()
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := groupList.(string); ok {
+ var temp []model_struct.LocalGroup
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ for _, v := range temp {
+ v1 := v
+ result = append(result, &v1)
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+func (i *LocalSuperGroup) InsertSuperGroup(ctx context.Context, groupInfo *model_struct.LocalGroup) error {
+ _, err := exec.Exec(utils.StructToJsonString(groupInfo))
+ return err
+}
+func (i *LocalSuperGroup) UpdateSuperGroup(ctx context.Context, g *model_struct.LocalGroup) error {
+ _, err := exec.Exec(g.GroupID, utils.StructToJsonString(g))
+ return err
+}
+
+func (i *LocalSuperGroup) DeleteSuperGroup(ctx context.Context, groupID string) error {
+ _, err := exec.Exec(groupID)
+ return err
+}
+
+func (i *LocalSuperGroup) DeleteAllSuperGroup(ctx context.Context) error {
+ _, err := exec.Exec()
+ return err
+}
+
+func (i *LocalSuperGroup) GetSuperGroupInfoByGroupID(ctx context.Context, groupID string) (*model_struct.LocalGroup, error) {
+ groupInfo, err := exec.Exec(groupID)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := groupInfo.(string); ok {
+ result := model_struct.LocalGroup{}
+ err := utils.JsonStringToStruct(v, &result)
+ if err != nil {
+ return nil, err
+ }
+ return &result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+func (i *LocalSuperGroup) GetJoinedWorkingGroupIDList(ctx context.Context) ([]string, error) {
+ IDList, err := exec.Exec()
+ if err != nil {
+ return nil, err
+ }
+ if v, ok := IDList.(string); ok {
+ var temp []string
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ return temp, nil
+ }
+ return nil, exec.ErrType
+}
+
+func (i *LocalSuperGroup) GetJoinedWorkingGroupList(ctx context.Context) (result []*model_struct.LocalGroup, err error) {
+ groupList, err := exec.Exec()
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := groupList.(string); ok {
+ var temp []model_struct.LocalGroup
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ for _, v := range temp {
+ v1 := v
+ result = append(result, &v1)
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
diff --git a/go/chao-sdk-core/wasm/indexdb/temp_struct/struct.go b/go/chao-sdk-core/wasm/indexdb/temp_struct/struct.go
new file mode 100644
index 0000000..8b9bc9a
--- /dev/null
+++ b/go/chao-sdk-core/wasm/indexdb/temp_struct/struct.go
@@ -0,0 +1,178 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build js && wasm
+// +build js,wasm
+
+package temp_struct
+
+type LocalChatLog struct {
+ ServerMsgID string ` json:"serverMsgID,omitempty"`
+ SendID string ` json:"sendID,omitempty"`
+ RecvID string ` json:"recvID,omitempty"`
+ SenderPlatformID int32 ` json:"senderPlatformID,omitempty"`
+ SenderNickname string ` json:"senderNickname,omitempty"`
+ SenderFaceURL string ` json:"senderFaceURL,omitempty"`
+ SessionType int32 ` json:"sessionType,omitempty"`
+ MsgFrom int32 ` json:"msgFrom,omitempty"`
+ ContentType int32 ` json:"contentType,omitempty"`
+ Content string ` json:"content,omitempty"`
+ IsRead bool ` json:"isRead,omitempty"`
+ Status int32 ` json:"status,omitempty"`
+ Seq int64 ` json:"seq,omitempty"`
+ SendTime int64 ` json:"sendTime,omitempty"`
+ CreateTime int64 ` json:"createTime,omitempty"`
+ AttachedInfo string ` json:"attachedInfo,omitempty"`
+ Ex string ` json:"ex,omitempty"`
+ IsReact bool ` json:"isReact,omitempty"`
+ IsExternalExtensions bool ` json:"isExternalExtensions,omitempty"`
+ MsgFirstModifyTime int64 ` json:"msgFirstModifyTime,omitempty"`
+}
+type LocalConversation struct {
+ ConversationID string ` json:"conversationID,omitempty"`
+ ConversationType int32 ` json:"conversationType,omitempty"`
+ UserID string ` json:"userID,omitempty"`
+ GroupID string ` json:"groupID,omitempty"`
+ ShowName string ` json:"showName,omitempty"`
+ FaceURL string ` json:"faceURL,omitempty"`
+ RecvMsgOpt int32 ` json:"recvMsgOpt,omitempty"`
+ UnreadCount int32 ` json:"unreadCount,omitempty"`
+ GroupAtType int32 ` json:"groupAtType,omitempty"`
+ LatestMsg string ` json:"latestMsg,omitempty"`
+ LatestMsgSendTime int64 ` json:"latestMsgSendTime,omitempty"`
+ DraftText string ` json:"draftText,omitempty"`
+ DraftTextTime int64 ` json:"draftTextTime,omitempty"`
+ IsPinned bool ` json:"isPinned,omitempty"`
+ IsPrivateChat bool ` json:"isPrivateChat,omitempty"`
+ BurnDuration int32 ` json:"burnDuration,omitempty"`
+ IsNotInGroup bool ` json:"isNotInGroup,omitempty"`
+ UpdateUnreadCountTime int64 ` json:"updateUnreadCountTime,omitempty"`
+ AttachedInfo string ` json:"attachedInfo,omitempty"`
+ Ex string ` json:"ex,omitempty"`
+}
+type LocalPartConversation struct {
+ RecvMsgOpt int32 ` json:"recvMsgOpt"`
+ GroupAtType int32 ` json:"groupAtType"`
+ IsPinned bool ` json:"isPinned,"`
+ IsPrivateChat bool ` json:"isPrivateChat"`
+ IsNotInGroup bool ` json:"isNotInGroup"`
+ UpdateUnreadCountTime int64 ` json:"updateUnreadCountTime"`
+ BurnDuration int32 ` json:"burnDuration,omitempty"`
+ AttachedInfo string ` json:"attachedInfo"`
+ Ex string ` json:"ex"`
+}
+
+type LocalSuperGroup struct {
+ GroupID string `json:"groupID,omitempty"`
+ GroupName string `json:"groupName,omitempty"`
+ Notification string `json:"notification,omitempty"`
+ Introduction string `json:"introduction,omitempty"`
+ FaceURL string `json:"faceURL,omitempty"`
+ CreateTime uint32 `json:"createTime,omitempty"`
+ Status int32 `json:"status,omitempty"`
+ CreatorUserID string `json:"creatorUserID,omitempty"`
+ GroupType int32 `json:"groupType,omitempty"`
+ OwnerUserID string `json:"ownerUserID,omitempty"`
+ MemberCount int32 `json:"memberCount,omitempty"`
+ Ex string `json:"ex,omitempty"`
+ AttachedInfo string `json:"attachedInfo,omitempty"`
+ NeedVerification int32 `json:"needVerification,omitempty"`
+ LookMemberInfo int32 `json:"lookMemberInfo,omitempty"`
+ ApplyMemberFriend int32 `json:"applyMemberFriend,omitempty"`
+ NotificationUpdateTime uint32 `json:"notificationUpdateTime,omitempty"`
+ NotificationUserID string `json:"notificationUserID,omitempty"`
+}
+
+type LocalGroup struct {
+ GroupID string `json:"groupID,omitempty"`
+ GroupName string `json:"groupName,omitempty"`
+ Notification string `json:"notification,omitempty"`
+ Introduction string `json:"introduction,omitempty"`
+ FaceURL string `json:"faceURL,omitempty"`
+ CreateTime uint32 `json:"createTime,omitempty"`
+ Status int32 `json:"status,omitempty"`
+ CreatorUserID string `json:"creatorUserID,omitempty"`
+ GroupType int32 `json:"groupType,omitempty"`
+ OwnerUserID string `json:"ownerUserID,omitempty"`
+ MemberCount int32 `json:"memberCount,omitempty"`
+ Ex string `json:"ex,omitempty"`
+ AttachedInfo string `json:"attachedInfo,omitempty"`
+ NeedVerification int32 `json:"needVerification,omitempty"`
+ LookMemberInfo int32 `json:"lookMemberInfo,omitempty"`
+ ApplyMemberFriend int32 `json:"applyMemberFriend,omitempty"`
+ NotificationUpdateTime uint32 `json:"notificationUpdateTime,omitempty"`
+ NotificationUserID string `json:"notificationUserID,omitempty"`
+}
+
+type LocalFriendRequest struct {
+ FromUserID string `json:"fromUserID,omitempty"`
+ FromNickname string `json:"fromNickname,omitempty"`
+ FromFaceURL string `json:"fromFaceURL,omitempty"`
+ ToUserID string `json:"toUserID,omitempty"`
+ ToNickname string `json:"toNickname,omitempty"`
+ ToFaceURL string `json:"toFaceURL,omitempty"`
+ HandleResult int32 `json:"handleResult,omitempty"`
+ ReqMsg string `json:"reqMsg,omitempty"`
+ CreateTime int64 `json:"createTime,omitempty"`
+ HandlerUserID string `json:"handlerUserID,omitempty"`
+ HandleMsg string `json:"handleMsg,omitempty"`
+ HandleTime int64 `json:"handleTime,omitempty"`
+ Ex string `json:"ex,omitempty"`
+ AttachedInfo string `json:"attachedInfo,omitempty"`
+}
+
+type LocalBlack struct {
+ OwnerUserID string `json:"ownerUserID,omitempty"`
+ BlockUserID string `json:"blockUserID,omitempty"`
+ Nickname string `json:"nickname,omitempty"`
+ FaceURL string `json:"faceURL,omitempty"`
+ CreateTime int64 `json:"createTime,omitempty"`
+ AddSource int32 `json:"addSource,omitempty"`
+ OperatorUserID string `json:"operatorUserID,omitempty"`
+ Ex string `json:"ex,omitempty"`
+ AttachedInfo string `json:"attachedInfo,omitempty"`
+}
+
+type LocalFriend struct {
+ OwnerUserID string `json:"ownerUserID,omitempty"`
+ FriendUserID string `json:"friendUserID,omitempty"`
+ Remark string `json:"remark,omitempty"`
+ CreateTime int64 `json:"createTime,omitempty"`
+ AddSource int32 `json:"addSource,omitempty"`
+ OperatorUserID string `json:"operatorUserID,omitempty"`
+ Nickname string `json:"nickname,omitempty"`
+ FaceURL string `json:"faceURL,omitempty"`
+ Ex string `json:"ex,omitempty"`
+ AttachedInfo string `json:"attachedInfo,omitempty"`
+ IsPinned bool `json:"isPinned,omitempty"`
+}
+
+type LocalUser struct {
+ UserID string `json:"userID,omitempty"`
+ Nickname string `json:"nickname,omitempty"`
+ FaceURL string `json:"faceURL,omitempty"`
+ CreateTime int64 `json:"createTime,omitempty"`
+ AppMangerLevel int32 `json:"-"`
+ Ex string `json:"ex,omitempty"`
+ AttachedInfo string `json:"attachedInfo,omitempty"`
+ GlobalRecvMsgOpt int32 `json:"globalRecvMsgOpt,omitempty"`
+}
+
+type LocalUserCommand struct {
+ UserID string `json:"userID,omitempty"`
+ Type int32 `json:"type,omitempty"`
+ CreateTime int64 `json:"createTime,omitempty"`
+ Uuid string `json:"uuid,omitempty"`
+ Value string `json:"value,omitempty"`
+}
diff --git a/go/chao-sdk-core/wasm/indexdb/upload_model.go b/go/chao-sdk-core/wasm/indexdb/upload_model.go
new file mode 100644
index 0000000..992dbe1
--- /dev/null
+++ b/go/chao-sdk-core/wasm/indexdb/upload_model.go
@@ -0,0 +1,68 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build js && wasm
+// +build js,wasm
+
+package indexdb
+
+import (
+ "context"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/wasm/exec"
+)
+
+type LocalUpload struct{}
+
+func NewLocalUpload() *LocalUpload {
+ return &LocalUpload{}
+}
+
+func (i *LocalUpload) GetUpload(ctx context.Context, partHash string) (*model_struct.LocalUpload, error) {
+ c, err := exec.Exec(partHash)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := c.(string); ok {
+ result := model_struct.LocalUpload{}
+ err := utils.JsonStringToStruct(v, &result)
+ if err != nil {
+ return nil, err
+ }
+ return &result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+func (i *LocalUpload) InsertUpload(ctx context.Context, upload *model_struct.LocalUpload) error {
+ _, err := exec.Exec(utils.StructToJsonString(upload))
+ return err
+}
+
+func (i *LocalUpload) DeleteUpload(ctx context.Context, partHash string) error {
+ _, err := exec.Exec(partHash)
+ return err
+}
+func (i *LocalUpload) UpdateUpload(ctx context.Context, upload *model_struct.LocalUpload) error {
+ _, err := exec.Exec(utils.StructToJsonString(upload))
+ return err
+}
+
+func (i *LocalUpload) DeleteExpireUpload(ctx context.Context) error {
+ //TODO implement me
+ panic("implement me")
+}
diff --git a/go/chao-sdk-core/wasm/indexdb/user_command.go b/go/chao-sdk-core/wasm/indexdb/user_command.go
new file mode 100644
index 0000000..c9fdc61
--- /dev/null
+++ b/go/chao-sdk-core/wasm/indexdb/user_command.go
@@ -0,0 +1,63 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build js && wasm
+// +build js,wasm
+
+package indexdb
+
+import (
+ "context"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/wasm/exec"
+)
+
+type LocalUserCommand struct{}
+
+func NewLocalUserCommand() *LocalUserCommand {
+ return &LocalUserCommand{}
+}
+
+func (i *LocalUserCommand) ProcessUserCommandGetAll(ctx context.Context) ([]*model_struct.LocalUserCommand, error) {
+ c, err := exec.Exec()
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := c.(string); ok {
+ result := []*model_struct.LocalUserCommand{}
+ err := utils.JsonStringToStruct(v, &result)
+ if err != nil {
+ return nil, err
+ }
+ return result, err
+ } else {
+ return nil, exec.ErrType
+ }
+ }
+}
+
+func (i *LocalUserCommand) ProcessUserCommandAdd(ctx context.Context, command *model_struct.LocalUserCommand) error {
+ _, err := exec.Exec(utils.StructToJsonString(command))
+ return err
+}
+
+func (i *LocalUserCommand) ProcessUserCommandUpdate(ctx context.Context, command *model_struct.LocalUserCommand) error {
+ _, err := exec.Exec(utils.StructToJsonString(command))
+ return err
+}
+func (i *LocalUserCommand) ProcessUserCommandDelete(ctx context.Context, command *model_struct.LocalUserCommand) error {
+ _, err := exec.Exec(utils.StructToJsonString(command))
+ return err
+}
diff --git a/go/chao-sdk-core/wasm/indexdb/user_model.go b/go/chao-sdk-core/wasm/indexdb/user_model.go
new file mode 100644
index 0000000..8850ea5
--- /dev/null
+++ b/go/chao-sdk-core/wasm/indexdb/user_model.go
@@ -0,0 +1,96 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build js && wasm
+// +build js,wasm
+
+package indexdb
+
+import (
+ "context"
+ "github.com/openimsdk/openim-sdk-core/v3/wasm/exec"
+)
+
+import (
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/db/model_struct"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/wasm/indexdb/temp_struct"
+ "time"
+)
+
+type LocalUsers struct {
+}
+
+func NewLocalUsers() *LocalUsers {
+ return &LocalUsers{}
+}
+
+func (l *LocalUsers) GetLoginUser(ctx context.Context, userID string) (*model_struct.LocalUser, error) {
+ user, err := exec.Exec(userID)
+ if err != nil {
+ return nil, err
+ } else {
+ if v, ok := user.(string); ok {
+ result := model_struct.LocalUser{}
+ temp := temp_struct.LocalUser{}
+ err := utils.JsonStringToStruct(v, &temp)
+ if err != nil {
+ return nil, err
+ }
+ result.UserID = temp.UserID
+ result.Nickname = temp.Nickname
+ result.FaceURL = temp.FaceURL
+ result.CreateTime = temp.CreateTime
+ result.AppMangerLevel = temp.AppMangerLevel
+ result.Ex = temp.Ex
+ result.AttachedInfo = temp.Ex
+ result.GlobalRecvMsgOpt = temp.GlobalRecvMsgOpt
+ return &result, err
+ } else {
+ return nil, exec.ErrType
+ }
+
+ }
+}
+
+func (l *LocalUsers) UpdateLoginUser(ctx context.Context, user *model_struct.LocalUser) error {
+ _, err := exec.Exec(utils.StructToJsonString(user))
+ return err
+
+}
+func (l *LocalUsers) UpdateLoginUserByMap(ctx context.Context, user *model_struct.LocalUser, args map[string]interface{}) error {
+ if v, ok := args["birth_time"]; ok {
+ if t, ok := v.(time.Time); ok {
+ args["birth_time"] = utils.TimeToString(t)
+ } else {
+ return exec.ErrType
+ }
+ }
+ _, err := exec.Exec(user.UserID, args)
+ return err
+}
+
+func (l *LocalUsers) InsertLoginUser(ctx context.Context, user *model_struct.LocalUser) error {
+ temp := temp_struct.LocalUser{}
+ temp.UserID = user.UserID
+ temp.Nickname = user.Nickname
+ temp.FaceURL = user.FaceURL
+ temp.CreateTime = user.CreateTime
+ temp.AppMangerLevel = user.AppMangerLevel
+ temp.Ex = user.Ex
+ temp.AttachedInfo = user.Ex
+ temp.GlobalRecvMsgOpt = user.GlobalRecvMsgOpt
+ _, err := exec.Exec(utils.StructToJsonString(temp))
+ return err
+}
diff --git a/go/chao-sdk-core/wasm/wasm_wrapper/wasm_conversation_msg.go b/go/chao-sdk-core/wasm/wasm_wrapper/wasm_conversation_msg.go
new file mode 100644
index 0000000..1da0bd0
--- /dev/null
+++ b/go/chao-sdk-core/wasm/wasm_wrapper/wasm_conversation_msg.go
@@ -0,0 +1,325 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build js && wasm
+// +build js,wasm
+
+package wasm_wrapper
+
+import (
+ "github.com/openimsdk/openim-sdk-core/v3/open_im_sdk"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/wasm/event_listener"
+ "syscall/js"
+)
+
+// ------------------------------------message---------------------------
+type WrapperConMsg struct {
+ *WrapperCommon
+}
+
+func NewWrapperConMsg(wrapperCommon *WrapperCommon) *WrapperConMsg {
+ return &WrapperConMsg{WrapperCommon: wrapperCommon}
+}
+
+func (w *WrapperConMsg) CreateTextMessage(_ js.Value, args []js.Value) interface{} {
+ return event_listener.NewCaller(open_im_sdk.CreateTextMessage, nil, &args).AsyncCallWithOutCallback()
+}
+func (w *WrapperConMsg) CreateImageMessage(_ js.Value, args []js.Value) interface{} {
+ return event_listener.NewCaller(open_im_sdk.CreateImageMessage, nil, &args).AsyncCallWithOutCallback()
+}
+func (w *WrapperConMsg) CreateImageMessageByURL(_ js.Value, args []js.Value) interface{} {
+ return event_listener.NewCaller(open_im_sdk.CreateImageMessageByURL, nil, &args).AsyncCallWithOutCallback()
+}
+func (w *WrapperConMsg) CreateSoundMessageByURL(_ js.Value, args []js.Value) interface{} {
+ return event_listener.NewCaller(open_im_sdk.CreateSoundMessageByURL, nil, &args).AsyncCallWithOutCallback()
+}
+func (w *WrapperConMsg) CreateVideoMessageByURL(_ js.Value, args []js.Value) interface{} {
+ return event_listener.NewCaller(open_im_sdk.CreateVideoMessageByURL, nil, &args).AsyncCallWithOutCallback()
+}
+func (w *WrapperConMsg) CreateFileMessageByURL(_ js.Value, args []js.Value) interface{} {
+ return event_listener.NewCaller(open_im_sdk.CreateFileMessageByURL, nil, &args).AsyncCallWithOutCallback()
+}
+func (w *WrapperConMsg) CreateCustomMessage(_ js.Value, args []js.Value) interface{} {
+ return event_listener.NewCaller(open_im_sdk.CreateCustomMessage, nil, &args).AsyncCallWithOutCallback()
+}
+func (w *WrapperConMsg) CreateQuoteMessage(_ js.Value, args []js.Value) interface{} {
+ return event_listener.NewCaller(open_im_sdk.CreateQuoteMessage, nil, &args).AsyncCallWithOutCallback()
+}
+func (w *WrapperConMsg) CreateAdvancedQuoteMessage(_ js.Value, args []js.Value) interface{} {
+ return event_listener.NewCaller(open_im_sdk.CreateAdvancedQuoteMessage, nil, &args).AsyncCallWithOutCallback()
+}
+func (w *WrapperConMsg) CreateAdvancedTextMessage(_ js.Value, args []js.Value) interface{} {
+ return event_listener.NewCaller(open_im_sdk.CreateAdvancedTextMessage, nil, &args).AsyncCallWithOutCallback()
+}
+func (w *WrapperConMsg) CreateCardMessage(_ js.Value, args []js.Value) interface{} {
+ return event_listener.NewCaller(open_im_sdk.CreateCardMessage, nil, &args).AsyncCallWithOutCallback()
+}
+func (w *WrapperConMsg) CreateTextAtMessage(_ js.Value, args []js.Value) interface{} {
+ return event_listener.NewCaller(open_im_sdk.CreateTextAtMessage, nil, &args).AsyncCallWithOutCallback()
+}
+
+func (w *WrapperConMsg) CreateVideoMessage(_ js.Value, args []js.Value) interface{} {
+ return event_listener.NewCaller(open_im_sdk.CreateVideoMessage, nil, &args).AsyncCallWithOutCallback()
+}
+
+func (w *WrapperConMsg) CreateFileMessage(_ js.Value, args []js.Value) interface{} {
+ return event_listener.NewCaller(open_im_sdk.CreateFileMessage, nil, &args).AsyncCallWithOutCallback()
+}
+
+func (w *WrapperConMsg) CreateMergerMessage(_ js.Value, args []js.Value) interface{} {
+ return event_listener.NewCaller(open_im_sdk.CreateMergerMessage, nil, &args).AsyncCallWithOutCallback()
+}
+
+func (w *WrapperConMsg) CreateFaceMessage(_ js.Value, args []js.Value) interface{} {
+ return event_listener.NewCaller(open_im_sdk.CreateFaceMessage, nil, &args).AsyncCallWithOutCallback()
+}
+
+func (w *WrapperConMsg) CreateForwardMessage(_ js.Value, args []js.Value) interface{} {
+ return event_listener.NewCaller(open_im_sdk.CreateForwardMessage, nil, &args).AsyncCallWithOutCallback()
+}
+
+func (w *WrapperConMsg) CreateLocationMessage(_ js.Value, args []js.Value) interface{} {
+ return event_listener.NewCaller(open_im_sdk.CreateLocationMessage, nil, &args).AsyncCallWithOutCallback()
+}
+
+func (w *WrapperConMsg) CreateVideoMessageFromFullPath(_ js.Value, args []js.Value) interface{} {
+ return event_listener.NewCaller(open_im_sdk.CreateVideoMessageFromFullPath, nil, &args).AsyncCallWithOutCallback()
+}
+
+func (w *WrapperConMsg) CreateImageMessageFromFullPath(_ js.Value, args []js.Value) interface{} {
+ return event_listener.NewCaller(open_im_sdk.CreateImageMessageFromFullPath, nil, &args).AsyncCallWithOutCallback()
+}
+func (w *WrapperConMsg) CreateSoundMessageFromFullPath(_ js.Value, args []js.Value) interface{} {
+ return event_listener.NewCaller(open_im_sdk.CreateSoundMessageFromFullPath, nil, &args).AsyncCallWithOutCallback()
+}
+
+func (w *WrapperConMsg) CreateFileMessageFromFullPath(_ js.Value, args []js.Value) interface{} {
+ return event_listener.NewCaller(open_im_sdk.CreateFileMessageFromFullPath, nil, &args).AsyncCallWithOutCallback()
+}
+
+func (w *WrapperConMsg) CreateSoundMessage(_ js.Value, args []js.Value) interface{} {
+ return event_listener.NewCaller(open_im_sdk.CreateSoundMessage, nil, &args).AsyncCallWithOutCallback()
+}
+
+func (w *WrapperConMsg) GetAtAllTag(_ js.Value, args []js.Value) interface{} {
+ return event_listener.NewCaller(open_im_sdk.GetAtAllTag, nil, &args).AsyncCallWithOutCallback()
+}
+
+func (w *WrapperConMsg) MarkConversationMessageAsRead(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.MarkConversationMessageAsRead, callback, &args).AsyncCallWithCallback()
+}
+func (w *WrapperConMsg) MarkMessagesAsReadByMsgID(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.MarkMessagesAsReadByMsgID, callback, &args).AsyncCallWithCallback()
+}
+func (w *WrapperConMsg) SendMessage(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewSendMessageCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc).SetClientMsgID(&args)
+ return event_listener.NewCaller(open_im_sdk.SendMessage, callback, &args).AsyncCallWithCallback()
+}
+func (w *WrapperConMsg) SendMessageNotOss(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewSendMessageCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc).SetClientMsgID(&args)
+ return event_listener.NewCaller(open_im_sdk.SendMessageNotOss, callback, &args).AsyncCallWithCallback()
+}
+
+//funcation (w *WrapperConMsg) SetMessageReactionExtensions(_ js.Value, args []js.Value) interface{} {
+// callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+// return event_listener.NewCaller(open_im_sdk.SetMessageReactionExtensions, callback, &args).AsyncCallWithCallback()
+//}
+//funcation (w *WrapperConMsg) AddMessageReactionExtensions(_ js.Value, args []js.Value) interface{} {
+// callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+// return event_listener.NewCaller(open_im_sdk.AddMessageReactionExtensions, callback, &args).AsyncCallWithCallback()
+//}
+//
+//funcation (w *WrapperConMsg) DeleteMessageReactionExtensions(_ js.Value, args []js.Value) interface{} {
+// callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+// return event_listener.NewCaller(open_im_sdk.DeleteMessageReactionExtensions, callback, &args).AsyncCallWithCallback()
+//}
+//funcation (w *WrapperConMsg) GetMessageListReactionExtensions(_ js.Value, args []js.Value) interface{} {
+// callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+// return event_listener.NewCaller(open_im_sdk.GetMessageListReactionExtensions, callback, &args).AsyncCallWithCallback()
+//}
+//funcation (w *WrapperConMsg) GetMessageListSomeReactionExtensions(_ js.Value, args []js.Value) interface{} {
+// callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+// return event_listener.NewCaller(open_im_sdk.GetMessageListSomeReactionExtensions, callback, &args).AsyncCallWithCallback()
+//}
+
+//------------------------------------conversation---------------------------
+
+func (w *WrapperConMsg) GetAllConversationList(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.GetAllConversationList, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperConMsg) GetConversationListSplit(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.GetConversationListSplit, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperConMsg) GetOneConversation(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.GetOneConversation, callback, &args).AsyncCallWithCallback()
+
+}
+
+func (w *WrapperConMsg) GetAdvancedHistoryMessageList(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.GetAdvancedHistoryMessageList, callback, &args).AsyncCallWithCallback()
+}
+func (w *WrapperConMsg) GetAdvancedHistoryMessageListReverse(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.GetAdvancedHistoryMessageListReverse, callback, &args).AsyncCallWithCallback()
+}
+
+//funcation (w *WrapperConMsg) GetHistoryMessageList(_ js.Value, args []js.Value) interface{} {
+// callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+// return event_listener.NewCaller(open_im_sdk.GetHistoryMessageList, callback, &args).AsyncCallWithCallback()
+//}
+
+func (w *WrapperConMsg) GetMultipleConversation(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.GetMultipleConversation, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperConMsg) SetConversationPrivateChat(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.SetConversationPrivateChat, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperConMsg) SetConversationRecvMessageOpt(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.SetConversationRecvMessageOpt, callback, &args).AsyncCallWithCallback()
+}
+func (w *WrapperConMsg) SearchConversation(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.SearchConversation, callback, &args).AsyncCallWithCallback()
+}
+func (w *WrapperConMsg) SetGlobalRecvMessageOpt(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.SetGlobalRecvMessageOpt, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperConMsg) FindMessageList(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.FindMessageList, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperConMsg) RevokeMessage(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.RevokeMessage, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperConMsg) TypingStatusUpdate(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.TypingStatusUpdate, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperConMsg) DeleteMessageFromLocalStorage(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.DeleteMessageFromLocalStorage, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperConMsg) DeleteMessage(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.DeleteMessage, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperConMsg) HideAllConversations(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.HideAllConversations, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperConMsg) DeleteAllMsgFromLocalAndSvr(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.DeleteAllMsgFromLocalAndSvr, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperConMsg) DeleteAllMsgFromLocal(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.DeleteAllMsgFromLocal, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperConMsg) ClearConversationAndDeleteAllMsg(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.ClearConversationAndDeleteAllMsg, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperConMsg) InsertSingleMessageToLocalStorage(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.InsertSingleMessageToLocalStorage, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperConMsg) InsertGroupMessageToLocalStorage(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.InsertGroupMessageToLocalStorage, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperConMsg) SearchLocalMessages(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.SearchLocalMessages, callback, &args).AsyncCallWithCallback()
+}
+func (w *WrapperConMsg) SetMessageLocalEx(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.SetMessageLocalEx, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperConMsg) DeleteConversationAndDeleteAllMsg(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.DeleteConversationAndDeleteAllMsg, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperConMsg) HideConversation(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.HideConversation, callback, &args).AsyncCallWithCallback()
+}
+func (w *WrapperConMsg) SetConversationEx(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.SetConversationEx, callback, &args).AsyncCallWithCallback()
+}
+func (w *WrapperConMsg) SetConversationDraft(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.SetConversationDraft, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperConMsg) ResetConversationGroupAtType(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.ResetConversationGroupAtType, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperConMsg) PinConversation(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+
+ return event_listener.NewCaller(open_im_sdk.PinConversation, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperConMsg) GetTotalUnreadMsgCount(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.GetTotalUnreadMsgCount, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperConMsg) SetConversationBurnDuration(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.SetConversationBurnDuration, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperConMsg) ChangeInputStates(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.ChangeInputStates, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperConMsg) GetInputStates(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.GetInputStates, callback, &args).AsyncCallWithCallback()
+}
diff --git a/go/chao-sdk-core/wasm/wasm_wrapper/wasm_friend.go b/go/chao-sdk-core/wasm/wasm_wrapper/wasm_friend.go
new file mode 100644
index 0000000..9580550
--- /dev/null
+++ b/go/chao-sdk-core/wasm/wasm_wrapper/wasm_friend.go
@@ -0,0 +1,111 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build js && wasm
+// +build js,wasm
+
+package wasm_wrapper
+
+import (
+ "github.com/openimsdk/openim-sdk-core/v3/open_im_sdk"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/wasm/event_listener"
+ "syscall/js"
+)
+
+// ------------------------------------group---------------------------
+type WrapperFriend struct {
+ *WrapperCommon
+}
+
+func NewWrapperFriend(wrapperCommon *WrapperCommon) *WrapperFriend {
+ return &WrapperFriend{WrapperCommon: wrapperCommon}
+}
+
+func (w *WrapperFriend) GetSpecifiedFriendsInfo(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.GetSpecifiedFriendsInfo, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperFriend) GetFriendList(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.GetFriendList, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperFriend) SearchFriends(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.SearchFriends, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperFriend) CheckFriend(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.CheckFriend, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperFriend) AddFriend(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.AddFriend, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperFriend) SetFriendRemark(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.SetFriendRemark, callback, &args).AsyncCallWithCallback()
+}
+func (w *WrapperFriend) PinFriends(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.PinFriends, callback, &args).AsyncCallWithCallback()
+}
+func (w *WrapperFriend) DeleteFriend(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.DeleteFriend, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperFriend) GetFriendApplicationListAsRecipient(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.GetFriendApplicationListAsRecipient, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperFriend) GetFriendApplicationListAsApplicant(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.GetFriendApplicationListAsApplicant, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperFriend) AcceptFriendApplication(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.AcceptFriendApplication, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperFriend) RefuseFriendApplication(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.RefuseFriendApplication, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperFriend) GetBlackList(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.GetBlackList, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperFriend) RemoveBlack(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.RemoveBlack, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperFriend) AddBlack(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.AddBlack, callback, &args).AsyncCallWithCallback()
+}
+func (w *WrapperFriend) SetFriendsEx(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.SetFriendsEx, callback, &args).AsyncCallWithCallback()
+}
diff --git a/go/chao-sdk-core/wasm/wasm_wrapper/wasm_group.go b/go/chao-sdk-core/wasm/wasm_wrapper/wasm_group.go
new file mode 100644
index 0000000..8d5fb08
--- /dev/null
+++ b/go/chao-sdk-core/wasm/wasm_wrapper/wasm_group.go
@@ -0,0 +1,179 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build js && wasm
+// +build js,wasm
+
+package wasm_wrapper
+
+import (
+ "github.com/openimsdk/openim-sdk-core/v3/open_im_sdk"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/wasm/event_listener"
+ "syscall/js"
+)
+
+// ------------------------------------group---------------------------
+type WrapperGroup struct {
+ *WrapperCommon
+}
+
+func NewWrapperGroup(wrapperCommon *WrapperCommon) *WrapperGroup {
+ return &WrapperGroup{WrapperCommon: wrapperCommon}
+}
+
+func (w *WrapperGroup) CreateGroup(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.CreateGroup, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperGroup) JoinGroup(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.JoinGroup, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperGroup) QuitGroup(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.QuitGroup, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperGroup) DismissGroup(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.DismissGroup, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperGroup) ChangeGroupMute(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.ChangeGroupMute, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperGroup) ChangeGroupMemberMute(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.ChangeGroupMemberMute, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperGroup) SetGroupMemberRoleLevel(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.SetGroupMemberRoleLevel, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperGroup) SetGroupMemberInfo(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.SetGroupMemberInfo, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperGroup) GetJoinedGroupList(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.GetJoinedGroupList, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperGroup) SearchGroups(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.SearchGroups, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperGroup) SetGroupInfo(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.SetGroupInfo, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperGroup) SetGroupVerification(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.SetGroupVerification, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperGroup) SetGroupLookMemberInfo(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.SetGroupLookMemberInfo, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperGroup) SetGroupApplyMemberFriend(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.SetGroupApplyMemberFriend, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperGroup) GetGroupMemberList(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.GetGroupMemberList, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperGroup) GetGroupMemberOwnerAndAdmin(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.GetGroupMemberOwnerAndAdmin, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperGroup) GetGroupMemberListByJoinTimeFilter(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.GetGroupMemberListByJoinTimeFilter, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperGroup) GetSpecifiedGroupMembersInfo(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.GetSpecifiedGroupMembersInfo, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperGroup) KickGroupMember(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.KickGroupMember, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperGroup) TransferGroupOwner(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.TransferGroupOwner, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperGroup) InviteUserToGroup(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.InviteUserToGroup, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperGroup) GetGroupApplicationListAsRecipient(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.GetGroupApplicationListAsRecipient, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperGroup) GetGroupApplicationListAsApplicant(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.GetGroupApplicationListAsApplicant, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperGroup) AcceptGroupApplication(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.AcceptGroupApplication, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperGroup) RefuseGroupApplication(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.RefuseGroupApplication, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperGroup) SetGroupMemberNickname(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.SetGroupMemberNickname, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperGroup) SearchGroupMembers(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.SearchGroupMembers, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperGroup) IsJoinGroup(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.IsJoinGroup, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperGroup) GetSpecifiedGroupsInfo(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.GetSpecifiedGroupsInfo, callback, &args).AsyncCallWithCallback()
+}
diff --git a/go/chao-sdk-core/wasm/wasm_wrapper/wasm_init_login.go b/go/chao-sdk-core/wasm/wasm_wrapper/wasm_init_login.go
new file mode 100644
index 0000000..9e2ee3a
--- /dev/null
+++ b/go/chao-sdk-core/wasm/wasm_wrapper/wasm_init_login.go
@@ -0,0 +1,138 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build js && wasm
+// +build js,wasm
+
+package wasm_wrapper
+
+import (
+ "errors"
+ "github.com/openimsdk/openim-sdk-core/v3/open_im_sdk"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/wasm/event_listener"
+ "syscall/js"
+)
+
+const COMMONEVENTFUNC = "commonEventFunc"
+
+var ErrArgsLength = errors.New("from javascript args length err")
+var ErrFunNameNotSet = errors.New("reflect funcation not to set")
+
+type SetListener struct {
+ *WrapperCommon
+}
+
+func NewSetListener(wrapperCommon *WrapperCommon) *SetListener {
+ return &SetListener{WrapperCommon: wrapperCommon}
+}
+
+func (s *SetListener) setConversationListener() {
+ callback := event_listener.NewConversationCallback(s.commonFunc)
+ open_im_sdk.SetConversationListener(callback)
+}
+func (s *SetListener) setAdvancedMsgListener() {
+ callback := event_listener.NewAdvancedMsgCallback(s.commonFunc)
+ open_im_sdk.SetAdvancedMsgListener(callback)
+}
+
+func (s *SetListener) setBatchMessageListener() {
+ callback := event_listener.NewBatchMessageCallback(s.commonFunc)
+ open_im_sdk.SetBatchMsgListener(callback)
+}
+
+func (s *SetListener) setFriendListener() {
+ callback := event_listener.NewFriendCallback(s.commonFunc)
+ open_im_sdk.SetFriendListener(callback)
+}
+
+func (s *SetListener) setGroupListener() {
+ callback := event_listener.NewGroupCallback(s.commonFunc)
+ open_im_sdk.SetGroupListener(callback)
+}
+
+func (s *SetListener) setUserListener() {
+ callback := event_listener.NewUserCallback(s.commonFunc)
+ open_im_sdk.SetUserListener(callback)
+}
+
+func (s *SetListener) setSignalingListener() {
+ //callback := event_listener.NewSignalingCallback(s.commonFunc)
+ //open_im_sdk.SetSignalingListener(callback)
+}
+func (s *SetListener) setCustomBusinessListener() {
+ callback := event_listener.NewCustomBusinessCallback(s.commonFunc)
+ open_im_sdk.SetCustomBusinessListener(callback)
+}
+
+func (s *SetListener) SetAllListener() {
+ s.setConversationListener()
+ s.setAdvancedMsgListener()
+ s.setBatchMessageListener()
+ s.setFriendListener()
+ s.setGroupListener()
+ s.setUserListener()
+ s.setSignalingListener()
+ s.setCustomBusinessListener()
+}
+
+type WrapperCommon struct {
+ commonFunc *js.Value
+}
+
+func NewWrapperCommon() *WrapperCommon {
+ return &WrapperCommon{}
+}
+func (w *WrapperCommon) CommonEventFunc(_ js.Value, args []js.Value) interface{} {
+ if len(args) >= 1 {
+ w.commonFunc = &args[len(args)-1]
+ return js.ValueOf(true)
+ } else {
+ return js.ValueOf(false)
+ }
+}
+
+type WrapperInitLogin struct {
+ *WrapperCommon
+}
+
+func NewWrapperInitLogin(wrapperCommon *WrapperCommon) *WrapperInitLogin {
+ return &WrapperInitLogin{WrapperCommon: wrapperCommon}
+}
+func (w *WrapperInitLogin) InitSDK(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewConnCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return js.ValueOf(event_listener.NewCaller(open_im_sdk.InitSDK, callback, &args).SyncCall())
+}
+func (w *WrapperInitLogin) Login(_ js.Value, args []js.Value) interface{} {
+ listener := NewSetListener(w.WrapperCommon)
+ listener.SetAllListener()
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.Login, callback, &args).AsyncCallWithCallback()
+}
+func (w *WrapperInitLogin) Logout(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.Logout, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperInitLogin) NetworkStatusChanged(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.NetworkStatusChanged, callback, &args).AsyncCallWithCallback()
+}
+func (w *WrapperInitLogin) GetLoginStatus(_ js.Value, args []js.Value) interface{} {
+ return event_listener.NewCaller(open_im_sdk.GetLoginStatus, nil, &args).AsyncCallWithOutCallback()
+}
+func (w *WrapperInitLogin) SetAppBackgroundStatus(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.SetAppBackgroundStatus, callback, &args).AsyncCallWithCallback()
+}
diff --git a/go/chao-sdk-core/wasm/wasm_wrapper/wasm_signaling.go b/go/chao-sdk-core/wasm/wasm_wrapper/wasm_signaling.go
new file mode 100644
index 0000000..5462126
--- /dev/null
+++ b/go/chao-sdk-core/wasm/wasm_wrapper/wasm_signaling.go
@@ -0,0 +1,67 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build js && wasm
+// +build js,wasm
+
+package wasm_wrapper
+
+// ------------------------------------group---------------------------
+type WrapperSignaling struct {
+ *WrapperCommon
+}
+
+func NewWrapperSignaling(wrapperCommon *WrapperCommon) *WrapperSignaling {
+ return &WrapperSignaling{WrapperCommon: wrapperCommon}
+}
+
+//func (w *WrapperSignaling) SignalingInviteInGroup(_ js.Value, args []js.Value) interface{} {
+// callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+// return event_listener.NewCaller(open_im_sdk.SignalingInviteInGroup, callback, &args).AsyncCallWithCallback()
+//}
+//
+//func (w *WrapperSignaling) SignalingInvite(_ js.Value, args []js.Value) interface{} {
+// callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+// return event_listener.NewCaller(open_im_sdk.SignalingInvite, callback, &args).AsyncCallWithCallback()
+//}
+//
+//func (w *WrapperSignaling) SignalingAccept(_ js.Value, args []js.Value) interface{} {
+// callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+// return event_listener.NewCaller(open_im_sdk.SignalingAccept, callback, &args).AsyncCallWithCallback()
+//}
+//
+//func (w *WrapperSignaling) SignalingReject(_ js.Value, args []js.Value) interface{} {
+// callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+// return event_listener.NewCaller(open_im_sdk.SignalingReject, callback, &args).AsyncCallWithCallback()
+//}
+//
+//func (w *WrapperSignaling) SignalingCancel(_ js.Value, args []js.Value) interface{} {
+// callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+// return event_listener.NewCaller(open_im_sdk.SignalingCancel, callback, &args).AsyncCallWithCallback()
+//}
+//
+//func (w *WrapperSignaling) SignalingHungUp(_ js.Value, args []js.Value) interface{} {
+// callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+// return event_listener.NewCaller(open_im_sdk.SignalingHungUp, callback, &args).AsyncCallWithCallback()
+//}
+//
+//func (w *WrapperSignaling) SignalingGetRoomByGroupID(_ js.Value, args []js.Value) interface{} {
+// callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+// return event_listener.NewCaller(open_im_sdk.SignalingGetRoomByGroupID, callback, &args).AsyncCallWithCallback()
+//}
+//
+//func (w *WrapperSignaling) SignalingGetTokenByRoomID(_ js.Value, args []js.Value) interface{} {
+// callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+// return event_listener.NewCaller(open_im_sdk.SignalingGetTokenByRoomID, callback, &args).AsyncCallWithCallback()
+//}
diff --git a/go/chao-sdk-core/wasm/wasm_wrapper/wasm_third.go b/go/chao-sdk-core/wasm/wasm_wrapper/wasm_third.go
new file mode 100644
index 0000000..99d84ee
--- /dev/null
+++ b/go/chao-sdk-core/wasm/wasm_wrapper/wasm_third.go
@@ -0,0 +1,109 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build js && wasm
+// +build js,wasm
+
+package wasm_wrapper
+
+import (
+ "github.com/openimsdk/openim-sdk-core/v3/open_im_sdk"
+ "github.com/openimsdk/openim-sdk-core/v3/open_im_sdk_callback"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/wasm/event_listener"
+ "syscall/js"
+)
+
+// ------------------------------------third---------------------------
+type WrapperThird struct {
+ *WrapperCommon
+}
+
+func NewWrapperThird(wrapperCommon *WrapperCommon) *WrapperThird {
+ return &WrapperThird{WrapperCommon: wrapperCommon}
+}
+func (w *WrapperThird) UpdateFcmToken(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.UpdateFcmToken, callback, &args).AsyncCallWithCallback()
+}
+func (w *WrapperThird) UploadFile(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewUploadFileCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc).SetUuid(&args)
+ return event_listener.NewCaller(UploadFile, callback, &args).AsyncCallWithCallback()
+}
+
+var _ open_im_sdk_callback.Base = (*TempBase)(nil)
+
+type TempBase struct {
+ u event_listener.UploadInterface
+}
+
+func NewTempBase(u event_listener.UploadInterface) *TempBase {
+ return &TempBase{u: u}
+}
+
+func (t TempBase) OnError(errCode int32, errMsg string) {
+ t.u.OnError(errCode, errMsg)
+}
+
+func (t TempBase) OnSuccess(data string) {
+ t.u.OnSuccess(data)
+}
+
+var _ open_im_sdk_callback.UploadFileCallback = (*TempUploadFile)(nil)
+
+type TempUploadFile struct {
+ u event_listener.UploadInterface
+}
+
+func NewTempUploadFile(u event_listener.UploadInterface) *TempUploadFile {
+ return &TempUploadFile{u: u}
+}
+
+func (t TempUploadFile) Open(size int64) {
+ t.u.Open(size)
+}
+
+func (t TempUploadFile) PartSize(partSize int64, num int) {
+ t.u.PartSize(partSize, num)
+}
+
+func (t TempUploadFile) HashPartProgress(index int, size int64, partHash string) {
+ t.u.HashPartProgress(index, size, partHash)
+}
+
+func (t TempUploadFile) HashPartComplete(partsHash string, fileHash string) {
+ t.u.HashPartComplete(partsHash, fileHash)
+}
+
+func (t TempUploadFile) UploadID(uploadID string) {
+ t.u.UploadID(uploadID)
+}
+
+func (t TempUploadFile) UploadPartComplete(index int, partSize int64, partHash string) {
+ t.u.UploadPartComplete(index, partSize, partHash)
+}
+
+func (t TempUploadFile) UploadComplete(fileSize int64, streamSize int64, storageSize int64) {
+ t.u.UploadComplete(fileSize, streamSize, storageSize)
+}
+
+func (t TempUploadFile) Complete(size int64, url string, typ int) {
+ t.u.Complete(size, url, typ)
+}
+
+func UploadFile(callback event_listener.UploadInterface, operationID string, req string) {
+ b := NewTempBase(callback)
+ t := NewTempUploadFile(callback)
+ open_im_sdk.UploadFile(b, operationID, req, t)
+}
diff --git a/go/chao-sdk-core/wasm/wasm_wrapper/wasm_user.go b/go/chao-sdk-core/wasm/wasm_wrapper/wasm_user.go
new file mode 100644
index 0000000..a7aec45
--- /dev/null
+++ b/go/chao-sdk-core/wasm/wasm_wrapper/wasm_user.go
@@ -0,0 +1,89 @@
+// Copyright Š 2023 OpenIM SDK. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//go:build js && wasm
+// +build js,wasm
+
+package wasm_wrapper
+
+import (
+ "github.com/openimsdk/openim-sdk-core/v3/open_im_sdk"
+ "github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
+ "github.com/openimsdk/openim-sdk-core/v3/wasm/event_listener"
+ "syscall/js"
+)
+
+// ------------------------------------group---------------------------
+type WrapperUser struct {
+ *WrapperCommon
+}
+
+func NewWrapperUser(wrapperCommon *WrapperCommon) *WrapperUser {
+ return &WrapperUser{WrapperCommon: wrapperCommon}
+}
+
+func (w *WrapperUser) GetSelfUserInfo(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.GetSelfUserInfo, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperUser) SetSelfInfo(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.SetSelfInfo, callback, &args).AsyncCallWithCallback()
+}
+func (w *WrapperUser) SetSelfInfoEx(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.SetSelfInfoEx, callback, &args).AsyncCallWithCallback()
+}
+func (w *WrapperUser) GetUsersInfo(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.GetUsersInfo, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperUser) GetUsersInfoWithCache(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.GetUsersInfoWithCache, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperUser) SubscribeUsersStatus(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.SubscribeUsersStatus, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperUser) UnsubscribeUsersStatus(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.UnsubscribeUsersStatus, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperUser) GetSubscribeUsersStatus(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.GetSubscribeUsersStatus, callback, &args).AsyncCallWithCallback()
+}
+
+func (w *WrapperUser) GetUserStatus(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.GetUserStatus, callback, &args).AsyncCallWithCallback()
+}
+func (w *WrapperUser) AddUserCommand(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.AddUserCommand, callback, &args).AsyncCallWithCallback()
+}
+func (w *WrapperUser) DeleteUserCommand(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.DeleteUserCommand, callback, &args).AsyncCallWithCallback()
+}
+func (w *WrapperUser) GetAllUserCommands(_ js.Value, args []js.Value) interface{} {
+ callback := event_listener.NewBaseCallback(utils.FirstLower(utils.GetSelfFuncName()), w.commonFunc)
+ return event_listener.NewCaller(open_im_sdk.GetAllUserCommands, callback, &args).AsyncCallWithCallback()
+}
diff --git a/go/constant.go b/go/constant.go
index 1adaef3..7e0bbb2 100644
--- a/go/constant.go
+++ b/go/constant.go
@@ -75,4 +75,6 @@ const (
COMPLETE
CONVERSATION_USER_INPUT_STATUS_CHANGED
RECV_ONLINE_ONLY_MESSAGE
+
+ USER_TOKEN_INVALID
)
diff --git a/go/export.go b/go/export.go
index 0f88f20..b381541 100644
--- a/go/export.go
+++ b/go/export.go
@@ -65,6 +65,10 @@ func (c ConnCallback) OnUserTokenExpired() {
C.Call_CB_I_S(c.cCallback, USER_TOKEN_EXPIRED, NO_DATA)
}
+func (c ConnCallback) OnUserTokenInvalid(errMsg string) {
+ C.Call_CB_I_S(c.cCallback, USER_TOKEN_INVALID, C.CString(errMsg))
+}
+
type ConversationCallback struct {
cCallback C.CB_I_S
}
@@ -298,6 +302,10 @@ func (u UserCallback) OnUserStatusChanged(statusMap string) {
C.Call_CB_I_S(u.cCallback, USER_STATUS_CHANGED, C.CString(statusMap))
}
+func (u UserCallback) OnUserCommandAdd(userCommand string) {}
+func (u UserCallback) OnUserCommandDelete(userCommand string) {}
+func (u UserCallback) OnUserCommandUpdate(userCommand string) {}
+
type SendMessageCallback struct {
cCallback C.CB_S_I_S_S_I
operationID string
diff --git a/go/go.mod b/go/go.mod
index fa89f2a..862e47b 100644
--- a/go/go.mod
+++ b/go/go.mod
@@ -1,36 +1,39 @@
module github.com/openimsdk/openim-sdk-cpp
-go 1.20
+go 1.21
+
require github.com/openimsdk/openim-sdk-core/v3 v3.5.1
+replace github.com/openimsdk/openim-sdk-core/v3 => ./chao-sdk-core
+
require (
- github.com/OpenIMSDK/protocol v0.0.40 // indirect
- github.com/OpenIMSDK/tools v0.0.24 // indirect
- github.com/bwmarrin/snowflake v0.3.0 // indirect
- github.com/golang/protobuf v1.5.3 // indirect
- github.com/google/go-cmp v0.5.9 // indirect
+ github.com/coreos/go-semver v0.3.0 // indirect
+ github.com/golang/protobuf v1.5.4 // indirect
+ github.com/google/go-cmp v0.6.0 // indirect
github.com/gorilla/websocket v1.4.2 // indirect
- github.com/jinzhu/copier v0.3.5 // indirect
+ github.com/jinzhu/copier v0.4.0 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/lestrrat-go/file-rotatelogs v2.4.0+incompatible // indirect
github.com/lestrrat-go/strftime v1.0.6 // indirect
- github.com/mattn/go-sqlite3 v1.14.12 // indirect
- github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646 // indirect
+ github.com/mattn/go-sqlite3 v1.14.22 // indirect
+ github.com/openimsdk/protocol v0.0.69-alpha.16 // indirect
+ github.com/openimsdk/tools v0.0.49-alpha.12 // indirect
github.com/patrickmn/go-cache v2.1.0+incompatible // indirect
github.com/pkg/errors v0.9.1 // indirect
+ go.etcd.io/etcd/api/v3 v3.5.13 // indirect
go.uber.org/atomic v1.7.0 // indirect
go.uber.org/multierr v1.6.0 // indirect
go.uber.org/zap v1.24.0 // indirect
- golang.org/x/image v0.14.0 // indirect
- golang.org/x/net v0.19.0 // indirect
- golang.org/x/sys v0.15.0 // indirect
+ golang.org/x/image v0.15.0 // indirect
+ golang.org/x/net v0.22.0 // indirect
+ golang.org/x/sys v0.18.0 // indirect
golang.org/x/text v0.14.0 // indirect
- google.golang.org/genproto/googleapis/rpc v0.0.0-20230717213848-3f92550aa753 // indirect
- google.golang.org/grpc v1.56.2 // indirect
- google.golang.org/protobuf v1.31.0 // indirect
- gorm.io/driver/sqlite v1.3.6 // indirect
- gorm.io/gorm v1.23.8 // indirect
+ google.golang.org/genproto/googleapis/rpc v0.0.0-20240318140521-94a12d6c2237 // indirect
+ google.golang.org/grpc v1.62.1 // indirect
+ google.golang.org/protobuf v1.33.0 // indirect
+ gorm.io/driver/sqlite v1.5.5 // indirect
+ gorm.io/gorm v1.25.10 // indirect
nhooyr.io/websocket v1.8.10 // indirect
)
diff --git a/go/go.sum b/go/go.sum
index eea57e4..d0c5e2f 100644
--- a/go/go.sum
+++ b/go/go.sum
@@ -1,41 +1,36 @@
-github.com/OpenIMSDK/protocol v0.0.40 h1:1/Oij6RSAaePCPrWGwp9Cyz976/8Uxr94hM5M5FXzlg=
-github.com/OpenIMSDK/protocol v0.0.40/go.mod h1:F25dFrwrIx3lkNoiuf6FkCfxuwf8L4Z8UIsdTHP/r0Y=
-github.com/OpenIMSDK/tools v0.0.24 h1:P8n7ZtsZEbm4W3dQAem29O+bigzy6YPXxFzd/D8Vh3U=
-github.com/OpenIMSDK/tools v0.0.24/go.mod h1:eg+q4A34Qmu73xkY0mt37FHGMCMfC6CtmOnm0kFEGFI=
github.com/benbjohnson/clock v1.1.0 h1:Q92kusRqC1XV2MjkWETPvjJVqKetz1OzxZB7mHJLju8=
-github.com/bwmarrin/snowflake v0.3.0 h1:xm67bEhkKh6ij1790JB83OujPR5CzNe8QuQqAgISZN0=
-github.com/bwmarrin/snowflake v0.3.0/go.mod h1:NdZxfVWX+oR6y2K0o6qAYv6gIOP9rjG0/E9WsDpxqwE=
+github.com/benbjohnson/clock v1.1.0/go.mod h1:J11/hYXuz8f4ySSvYwY0FKfm+ezbsZBKZxNJlLklBHA=
+github.com/coreos/go-semver v0.3.0 h1:wkHLiw0WNATZnSG7epLsujiMCgPAc9xhjJ4tgnAxmfM=
+github.com/coreos/go-semver v0.3.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk=
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
-github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk=
-github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg=
-github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY=
-github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
-github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38=
-github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
+github.com/golang/protobuf v1.5.4 h1:i7eJL8qZTpSEXOPTxNKhASYpMn+8e5Q6AdndVa1dWek=
+github.com/golang/protobuf v1.5.4/go.mod h1:lnTiLA8Wa4RWRcIUkrtSVa5nRhsEGBg48fD6rSs7xps=
+github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
+github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
github.com/gorilla/websocket v1.4.2 h1:+/TMaTYc4QFitKJxsQ7Yye35DkWvkdLcvGKqM+x0Ufc=
github.com/gorilla/websocket v1.4.2/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE=
-github.com/jinzhu/copier v0.3.5 h1:GlvfUwHk62RokgqVNvYsku0TATCF7bAHVwEXoBh3iJg=
-github.com/jinzhu/copier v0.3.5/go.mod h1:DfbEm0FYsaqBcKcFuvmOZb218JkPGtvSHsKg8S8hyyg=
+github.com/jinzhu/copier v0.4.0 h1:w3ciUoD19shMCRargcpm0cm91ytaBhDvuRpz1ODO/U8=
+github.com/jinzhu/copier v0.4.0/go.mod h1:DfbEm0FYsaqBcKcFuvmOZb218JkPGtvSHsKg8S8hyyg=
github.com/jinzhu/inflection v1.0.0 h1:K317FqzuhWc8YvSVlFMCCUb36O/S9MCKRDI7QkRKD/E=
github.com/jinzhu/inflection v1.0.0/go.mod h1:h+uFLlag+Qp1Va5pdKtLDYj+kHp5pxUVkryuEj+Srlc=
-github.com/jinzhu/now v1.1.4/go.mod h1:d3SSVoowX0Lcu0IBviAWJpolVfI5UJVZZ7cO71lE/z8=
github.com/jinzhu/now v1.1.5 h1:/o9tlHleP7gOFmsnYNz3RGnqzefHA47wQpKrrdTIwXQ=
github.com/jinzhu/now v1.1.5/go.mod h1:d3SSVoowX0Lcu0IBviAWJpolVfI5UJVZZ7cO71lE/z8=
github.com/jonboulle/clockwork v0.4.0 h1:p4Cf1aMWXnXAUh8lVfewRBx1zaTSYKrKMF2g3ST4RZ4=
+github.com/jonboulle/clockwork v0.4.0/go.mod h1:xgRqUGwRcjKCO1vbZUEtSLrqKoPSsUpK7fnezOII0kc=
github.com/lestrrat-go/envload v0.0.0-20180220234015-a3eb8ddeffcc h1:RKf14vYWi2ttpEmkA4aQ3j4u9dStX2t4M8UM6qqNsG8=
github.com/lestrrat-go/envload v0.0.0-20180220234015-a3eb8ddeffcc/go.mod h1:kopuH9ugFRkIXf3YoqHKyrJ9YfUFsckUU9S7B+XP+is=
github.com/lestrrat-go/file-rotatelogs v2.4.0+incompatible h1:Y6sqxHMyB1D2YSzWkLibYKgg+SwmyFU9dF2hn6MdTj4=
github.com/lestrrat-go/file-rotatelogs v2.4.0+incompatible/go.mod h1:ZQnN8lSECaebrkQytbHj4xNgtg8CR7RYXnPok8e0EHA=
github.com/lestrrat-go/strftime v1.0.6 h1:CFGsDEt1pOpFNU+TJB0nhz9jl+K0hZSLE205AhTIGQQ=
github.com/lestrrat-go/strftime v1.0.6/go.mod h1:f7jQKgV5nnJpYgdEasS+/y7EsTb8ykN2z68n3TtcTaw=
-github.com/mattn/go-sqlite3 v1.14.12 h1:TJ1bhYJPV44phC+IMu1u2K/i5RriLTPe+yc68XDJ1Z0=
-github.com/mattn/go-sqlite3 v1.14.12/go.mod h1:NyWgC/yNuGj7Q9rpYnZvas74GogHl5/Z4A/KQRfk6bU=
-github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646 h1:zYyBkD/k9seD2A7fsi6Oo2LfFZAehjjQMERAvZLEDnQ=
-github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646/go.mod h1:jpp1/29i3P1S/RLdc7JQKbRpFeM1dOBd8T9ki5s+AY8=
-github.com/openimsdk/openim-sdk-core/v3 v3.5.1 h1:lvC8TlouT9zFxjoBeH/S4YCkwbQ5IgSnNRO9NJ9H5v8=
-github.com/openimsdk/openim-sdk-core/v3 v3.5.1/go.mod h1:d2aVHT6pSYthQQd+/4JaruHPTLsQV2D+eQisRQkoP3I=
+github.com/mattn/go-sqlite3 v1.14.22 h1:2gZY6PC6kBnID23Tichd1K+Z0oS6nE/XwU+Vz/5o4kU=
+github.com/mattn/go-sqlite3 v1.14.22/go.mod h1:Uh1q+B4BYcTPb+yiD3kU8Ct7aC0hY9fxUwlHK0RXw+Y=
+github.com/openimsdk/protocol v0.0.69-alpha.16 h1:ciSqm2rjBdpScpkQm3wPjAFv0YbIRp8MITRkDZWVv6c=
+github.com/openimsdk/protocol v0.0.69-alpha.16/go.mod h1:OZQA9FR55lseYoN2Ql1XAHYKHJGu7OMNkUbuekrKCM8=
+github.com/openimsdk/tools v0.0.49-alpha.12 h1:vsr63W1kHW1dEw9yelMhmr72WmsrjKfs2vXww3upfWI=
+github.com/openimsdk/tools v0.0.49-alpha.12/go.mod h1:g7mkHXYUPi0/8aAX8VPMHpnb3hqdV69Jph+bXOGvvNM=
github.com/patrickmn/go-cache v2.1.0+incompatible h1:HRMgzkcYKYpi3C8ajMPV8OFXaaRUnok+kx1WdO15EQc=
github.com/patrickmn/go-cache v2.1.0+incompatible/go.mod h1:3Qf8kWWT7OJRJbdiICTKqZju1ZixQ/KpMGzzAfe6+WQ=
github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
@@ -44,36 +39,39 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
-github.com/stretchr/testify v1.8.3 h1:RP3t2pwF7cMEbC1dqtB6poj3niw/9gnV4Cjg5oW5gtY=
+github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk=
+github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo=
+go.etcd.io/etcd/api/v3 v3.5.13 h1:8WXU2/NBge6AUF1K1gOexB6e07NgsN1hXK0rSTtgSp4=
+go.etcd.io/etcd/api/v3 v3.5.13/go.mod h1:gBqlqkcMMZMVTMm4NDZloEVJzxQOQIls8splbqBDa0c=
go.uber.org/atomic v1.7.0 h1:ADUqmZGgLDDfbSL9ZmPxKTybcoEYHgpYfELNoN+7hsw=
go.uber.org/atomic v1.7.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc=
go.uber.org/goleak v1.1.11 h1:wy28qYRKZgnJTxGxvye5/wgWr1EKjmUDGYox5mGlRlI=
+go.uber.org/goleak v1.1.11/go.mod h1:cwTWslyiVhfpKIDGSZEM2HlOvcqm+tG4zioyIeLoqMQ=
go.uber.org/multierr v1.6.0 h1:y6IPFStTAIT5Ytl7/XYmHvzXQ7S3g/IeZW9hyZ5thw4=
go.uber.org/multierr v1.6.0/go.mod h1:cdWPpRnG4AhwMwsgIHip0KRBQjJy5kYEpYjJxpXp9iU=
go.uber.org/zap v1.24.0 h1:FiJd5l1UOLj0wCgbSE0rwwXHzEdAZS6hiiSnxJN/D60=
go.uber.org/zap v1.24.0/go.mod h1:2kMP+WWQ8aoFoedH3T2sq6iJ2yDWpHbP0f6MQbS9Gkg=
-golang.org/x/image v0.14.0 h1:tNgSxAFe3jC4uYqvZdTr84SZoM1KfwdC9SKIFrLjFn4=
-golang.org/x/image v0.14.0/go.mod h1:HUYqC05R2ZcZ3ejNQsIHQDQiwWM4JBqmm6MKANTp4LE=
-golang.org/x/net v0.19.0 h1:zTwKpTd2XuCqf8huc7Fo2iSy+4RHPd10s4KzeTnVr1c=
-golang.org/x/net v0.19.0/go.mod h1:CfAk/cbD4CthTvqiEl8NpboMuiuOYsAr/7NOjZJtv1U=
-golang.org/x/sys v0.15.0 h1:h48lPFYpsTvQJZF4EKyI4aLHaev3CxivZmv7yZig9pc=
-golang.org/x/sys v0.15.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
+golang.org/x/image v0.15.0 h1:kOELfmgrmJlw4Cdb7g/QGuB3CvDrXbqEIww/pNtNBm8=
+golang.org/x/image v0.15.0/go.mod h1:HUYqC05R2ZcZ3ejNQsIHQDQiwWM4JBqmm6MKANTp4LE=
+golang.org/x/net v0.22.0 h1:9sGLhx7iRIHEiX0oAJ3MRZMUCElJgy7Br1nO+AMN3Tc=
+golang.org/x/net v0.22.0/go.mod h1:JKghWKKOSdJwpW2GEx0Ja7fmaKnMsbu+MWVZTokSYmg=
+golang.org/x/sys v0.18.0 h1:DBdB3niSjOA/O0blCZBqDefyWNYveAYMNF1Wum0DYQ4=
+golang.org/x/sys v0.18.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ=
golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU=
-golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
-google.golang.org/genproto/googleapis/rpc v0.0.0-20230717213848-3f92550aa753 h1:XUODHrpzJEUeWmVo/jfNTLj0YyVveOo28oE6vkFbkO4=
-google.golang.org/genproto/googleapis/rpc v0.0.0-20230717213848-3f92550aa753/go.mod h1:TUfxEVdsvPg18p6AslUXFoLdpED4oBnGwyqk3dV1XzM=
-google.golang.org/grpc v1.56.2 h1:fVRFRnXvU+x6C4IlHZewvJOVHoOv1TUuQyoRsYnB4bI=
-google.golang.org/grpc v1.56.2/go.mod h1:I9bI3vqKfayGqPUAwGdOSu7kt6oIJLixfffKrpXqQ9s=
-google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw=
-google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc=
-google.golang.org/protobuf v1.31.0 h1:g0LDEJHgrBl9N9r17Ru3sqWhkIx2NB67okBHPwC7hs8=
-google.golang.org/protobuf v1.31.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I=
+google.golang.org/genproto/googleapis/rpc v0.0.0-20240318140521-94a12d6c2237 h1:NnYq6UN9ReLM9/Y01KWNOWyI5xQ9kbIms5GGJVwS/Yc=
+google.golang.org/genproto/googleapis/rpc v0.0.0-20240318140521-94a12d6c2237/go.mod h1:WtryC6hu0hhx87FDGxWCDptyssuo68sk10vYjF+T9fY=
+google.golang.org/grpc v1.62.1 h1:B4n+nfKzOICUXMgyrNd19h/I9oH0L1pizfk1d4zSgTk=
+google.golang.org/grpc v1.62.1/go.mod h1:IWTG0VlJLCh1SkC58F7np9ka9mx/WNkjl4PGJaiq+QE=
+google.golang.org/protobuf v1.33.0 h1:uNO2rsAINq/JlFpSdYEKIZ0uKD/R9cpdv0T+yoGwGmI=
+google.golang.org/protobuf v1.33.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos=
+gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY=
+gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ=
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
-gorm.io/driver/sqlite v1.3.6 h1:Fi8xNYCUplOqWiPa3/GuCeowRNBRGTf62DEmhMDHeQQ=
-gorm.io/driver/sqlite v1.3.6/go.mod h1:Sg1/pvnKtbQ7jLXxfZa+jSHvoX8hoZA8cn4xllOMTgE=
-gorm.io/gorm v1.23.4/go.mod h1:l2lP/RyAtc1ynaTjFksBde/O8v9oOGIApu2/xRitmZk=
-gorm.io/gorm v1.23.8 h1:h8sGJ+biDgBA1AD1Ha9gFCx7h8npU7AsLdlkX0n2TpE=
-gorm.io/gorm v1.23.8/go.mod h1:l2lP/RyAtc1ynaTjFksBde/O8v9oOGIApu2/xRitmZk=
+gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
+gorm.io/driver/sqlite v1.5.5 h1:7MDMtUZhV065SilG62E0MquljeArQZNfJnjd9i9gx3E=
+gorm.io/driver/sqlite v1.5.5/go.mod h1:6NgQ7sQWAIFsPrJJl1lSNSu2TABh0ZZ/zm5fosATavE=
+gorm.io/gorm v1.25.10 h1:dQpO+33KalOA+aFYGlK+EfxcI5MbO7EP2yYygwh9h+s=
+gorm.io/gorm v1.25.10/go.mod h1:hbnx/Oo0ChWMn1BIhpy1oYozzpM15i4YPuHDmfYtwg8=
nhooyr.io/websocket v1.8.10 h1:mv4p+MnGrLDcPlBoWsvPP7XCzTYMXP9F9eIGoKbgx7Q=
nhooyr.io/websocket v1.8.10/go.mod h1:rN9OFWIUwuxg4fR5tELlYC04bXYowCP9GX47ivo2l+c=